-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathGemfile
49 lines (39 loc) · 1.14 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
source 'https://rubygems.org'
ruby '2.2.2'
gem 'rails', '5.0.0.beta1'
gem 'haml-rails'
gem 'rails-settings-cached'
gem 'bcrypt', '~> 3.1.7'
gem 'active_model_serializers', '0.10.0.rc3'
gem 'puma'
# contains rails5 fixes not yet merged to rails repository!
gem 'activerecord-session_store', github: 'gregmolnar/activerecord-session_store', branch: 'rails5'
gem 'uglifier', '>= 1.3.0'
gem 'coffee-rails'
gem 'therubyracer', platforms: :ruby
gem 'jquery-rails'
gem 'jquery-turbolinks'
gem 'turbolinks'
gem 'bootstrap-sass', '~> 3.3.6'
gem 'bootswatch-rails'
gem 'kaminari', github: 'amatsuda/kaminari'
gem 'httparty'
gem 'pry-rails'
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
group :production do
gem 'pg'
gem 'rails_stdout_logging'
end
group :development, :test do
gem 'byebug'
gem 'sqlite3'
end
group :development do
gem 'spring'
gem 'listen', '~> 3.0.5'
gem 'annotate', github: 'ctran/annotate_models', branch: 'develop'
end
group :test do
gem 'minitest-rails', github: 'blowmage/minitest-rails', branch: 'rails5'
gem 'simplecov', require: false
end