forked from ElamT/jasper-rails
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
46 lines (30 loc) · 863 Bytes
/
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
source "http://rubygems.org"
gemspec
rails_version = ENV['RAILS_VERSION'] || 'default'
rails = case rails_version
when 'default'
'4.2.1'
when '4.0'
{ github: 'rails/rails', branch: '4-0-stable' }
when '4.1'
{ github: 'rails/rails', branch: '4-1-stable' }
when '4.2'
{ github: 'rails/rails', branch: '4-2-stable' }
else
"~> #{rails_version}"
end
gem 'rails', rails
group :development, :test do
gem 'byebug'
gem 'combustion', '~> 0.3.2'
gem 'responders'
gem 'jasper-rails-rspec', github: 'ElamT/jasper-rails-rspec'
gem 'ffaker'
gem 'rspec-rails'
gem 'factory_girl_rails', require: false
gem 'shoulda-matchers', require: false
gem 'codeclimate-test-reporter', require: false
gem 'rubocop'
gem 'spring'
gem 'generator_spec'
end