forked from openbudgets/participatory-budgeting
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
43 lines (38 loc) · 1.06 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
source 'https://rubygems.org'
ruby '2.4.1'
gem 'rails', '5.0.2'
gem 'pg', '0.20.0'
gem 'puma', '3.8.2'
gem 'haml-rails', '1.0.0'
gem 'sass-rails', '5.0.6'
gem 'rails-assets-tether', '1.3.3', source: 'https://rails-assets.org'
gem 'bootstrap', '4.0.0.alpha6'
gem 'uglifier', '3.2.0'
gem 'coffee-rails', '4.2.1'
gem 'jquery-rails', '4.3.1'
gem 'date_validator', '0.9.0'
gem 'shrine', '2.6.1'
gem 'translation', '1.9'
gem 'rake', '12.0.0'
group :development, :test do
gem 'byebug', '9.0.6', platform: :mri
end
group :development do
gem 'pry-rails', '0.3.6'
gem 'web-console', '3.5.0'
gem 'listen', '3.1.5'
gem 'spring', '2.0.1'
gem 'spring-watcher-listen', '2.0.1'
gem 'capistrano', '3.8.1'
gem 'capistrano-npm', '1.0.2'
gem 'capistrano-nvm', '0.0.7'
gem 'capistrano-rvm', '0.1.2'
gem 'capistrano-rails', '1.2.3'
end
group :test do
gem 'guard', '2.14.1'
gem 'guard-minitest', '2.4.6'
gem 'minitest', '5.10.1'
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]