forked from HaughtCodeworks/cfp-app
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Gemfile
74 lines (65 loc) · 1.5 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
68
69
70
71
72
73
74
source 'https://rubygems.org'
ruby '~> 2.7.2'
gem 'rails', '5.0.5'
gem 'puma', '~> 4.0'
gem 'pg'
gem 'jquery-rails'
gem 'jquery-ui-rails'
gem 'jquery-datatables-rails'
gem 'terser'
gem 'sass-rails', '~> 5.0.4'
gem 'haml', '~> 4.0.4'
gem 'bootstrap-sass', '~> 3.3.6'
gem 'rails-assets-momentjs', source: 'https://rails-assets.org'
gem 'selectize-rails'
gem 'devise', '~> 4.1'
gem 'omniauth-github', '~> 1.4.0'
gem 'omniauth-twitter'
gem 'chartkick'
gem 'groupdate'
gem 'country_select', '~> 1.3.1'
gem 'redcarpet', '~> 3.5.1'
gem 'coderay', '~> 1.1'
gem 'bootstrap-multiselect-rails', '~> 0.9.9'
gem 'active_model_serializers', '~> 0.10.0'
gem 'draper', '3.0.0.pre1'
gem 'simple_form', '~> 5.0.3'
gem 'zeroclipboard-rails'
gem 'responders', '~> 2.0'
gem 'pundit'
gem 'faker'
gem 'actionview-encoded_mail_to'
group :production do
gem 'rails_12factor'
gem 'rack-timeout', '~> 0.2.4'
end
group :development do
gem 'annotate'
gem 'better_errors'
gem 'binding_of_caller'
gem 'foreman'
gem 'launchy'
gem 'rack-mini-profiler'
gem 'haml-rails'
gem 'spring-commands-rspec', require: false
gem 'web-console', '~> 3.7'
end
group :development, :test do
gem 'capybara'
gem 'webdrivers', require: false
gem 'database_cleaner'
gem 'dotenv-rails'
gem 'factory_girl_rails'
gem 'growl'
gem 'guard'
gem 'guard-rspec'
gem 'guard-livereload', '~> 2.1.1'
gem 'rspec'
gem 'rspec-rails'
gem 'rails-controller-testing'
gem 'timecop'
gem 'spring'
gem 'pry-rails'
gem 'pry-rescue'
gem 'pry-remote'
end