-
Notifications
You must be signed in to change notification settings - Fork 15
/
Gemfile
67 lines (56 loc) · 1.42 KB
/
Gemfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
# frozen_string_literal: true
source 'https://rubygems.org'
ruby '2.5.7'
git_source(:github) do |repo_name|
repo_name = "#{repo_name}/#{repo_name}" unless repo_name.include?("/")
"https://github.com/#{repo_name}.git"
end
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '~> 5.0'
gem 'puma', '~> 3.0'
# Use postgresql as the database for Active Record
gem 'pg', '~> 0.15'
gem 'bootsnap', require: false
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails_admin', '~> 2.0'
gem 'sass-rails'
gem 'uglifier', '>= 1.3.0'
gem 'coffee-rails'
gem 'jquery-rails'
gem 'active_model_serializers'
gem 'acts_as_votable', '~> 0.10.0'
gem 'bootstrap'
# bootstrap requires tether
# source 'https://rails-assets.org' do
# gem 'rails-assets-tether', '>= 1.1.0'
# end
gem 'google-analytics-rails'
gem 'omniauth-auth0', '~> 2.2'
gem 'omniauth-rails_csrf_protection', '~> 0.1'
# gem 'quiet_assets'
gem 'rack-cors'
gem 'simple_form'
gem 'turbolinks'
gem 'tzinfo-data'
gem 'validates_formatting_of'
gem 'webpacker', '~> 4.x'
group :production do
gem 'rails_12factor'
end
group :development do
gem 'listen'
gem 'spring'
gem 'binding_of_caller'
gem 'pry-rails'
gem 'better_errors'
end
group :development, :test do
gem 'dotenv-rails'
gem 'rspec-rails'
# gem 'factory_girl_rails'
end
group :test do
gem 'shoulda-matchers'
gem 'cucumber-rails', require: false
gem 'database_cleaner'
end