-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
66 lines (56 loc) · 1.79 KB
/
Gemfile
File metadata and controls
66 lines (56 loc) · 1.79 KB
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
source 'https://rubygems.org'
# gem 'rails', '4.2.2'
# gem 'rails', '4.2.11'
gem 'rails', '6.1'
# gem 'figaro', '1.1.1'
gem 'figaro', '1.2'
# gem 'bcrypt', '3.1.7'
gem 'bcrypt', '3.1.15'
# gem 'bootstrap-sass','3.3.5'
gem 'bootstrap-sass','3.4.1'
# gem 'sass-rails', '5.0.2'
gem 'sass-rails', '6.0'
# gem 'uglifier', '2.5.3'
gem 'uglifier', '4.2'
# gem 'coffee-rails', '4.1.0'
gem 'coffee-rails', '5.0'
# gem 'jquery-rails', '4.0.5'
gem 'jquery-rails', '4.4'
# gem 'jquery-ui-rails', '5.0.5'
gem 'jquery-ui-rails', '6.0'
# gem 'turbolinks', '2.3.0'
gem 'turbolinks', '5.2'
# gem 'jbuilder', '2.2.3'
gem 'jbuilder', '2.10'
# gem 'sdoc', '0.4.0', group: :doc
gem 'sdoc', '1.1', group: :doc
gem 'active_model_serializers', '0.8.3'
# gem 'active_model_serializers', '0.10'
# gem 'faker', '1.4.2'
gem 'faker', '2.13'
# gem 'charlock_holmes', '0.7.3'
gem 'charlock_holmes', '0.7.7'
# gem 'rubyzip', '1.1.7', require: 'zip'
gem 'rubyzip', '2.3', require: 'zip'
gem 'rails-controller-testing'
gem 'web-console', '4.0', group: :development
group :development, :test do
# Use sqlite3 as the database for Active Record
# gem 'sqlite3', '1.3.9'
gem 'sqlite3', '1.4.2'
# Call 'byebug' anywhere in the code to stop execution and get a debugger
# console
# gem 'byebug', '3.4.0'
gem 'byebug', '11.1'
# Access an IRB console on exception pages or by using <%= console %> in views
# gem 'web-console', '2.0.0.beta3'
# Spring speeds up development by keeping your application running in the
# background. Read more: https://github.com/rails/spring
#gem 'spring', '1.1.3'
end
group :production do
# gem 'pg', '0.18.3'
gem 'pg', '1.2.3'
# gem 'unicorn', '5.0.0'
gem 'unicorn', '5.6'
end