-
Notifications
You must be signed in to change notification settings - Fork 5
/
Appraisals
42 lines (37 loc) · 1.08 KB
/
Appraisals
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
appraise 'rails-4.0' do
gem 'rails', '~> 4.0'
gem 'rspec-rails', '>= 3.2.0'
gem 'sqlite3'
gem 'nokogiri'
end
appraise 'rails-4.1' do
gem 'rails', '~> 4.1'
gem 'rspec-rails', '>= 3.2.0'
gem 'sqlite3'
gem 'nokogiri'
end
appraise 'rails-4.2' do
gem 'rails', '~> 4.2'
gem 'rspec-rails', '>= 3.2.0'
gem 'sqlite3'
end
appraise 'rails-5.0' do
gem 'rails', '~> 5.0'
gem 'rspec-rails', '>= 3.5.0'
gem 'rspec', '>= 3.5.0'
gem 'rails-controller-testing'
gem 'sqlite3'
end
appraise 'rails-edge' do
gem 'rails', git: 'https://github.com/rails/rails'
gem 'arel', git: 'https://github.com/rails/arel'
gem 'rack', git: 'https://github.com/rack/rack'
gem 'rspec-rails', git: 'https://github.com/rspec/rspec-rails'
gem 'rspec-core', git: 'https://github.com/rspec/rspec-core'
gem 'rspec-expectations', git: 'https://github.com/rspec/rspec-expectations'
gem 'rspec-mocks', git: 'https://github.com/rspec/rspec-mocks'
gem 'rspec-support', git: 'https://github.com/rspec/rspec-support'
gem 'rspec', git: 'https://github.com/rspec/rspec'
gem 'sqlite3'
end
# vim: set ft=ruby: