forked from collectiveidea/audited
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Appraisals
32 lines (27 loc) · 1.02 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
appraise 'rails40' do
gem 'rails', '~> 4.0.0'
gem 'rails-observers'
gem 'protected_attributes'
gem 'test-unit'
end
appraise 'rails41' do
gem 'rails', '~> 4.1.0'
gem 'rails-observers'
gem 'protected_attributes'
end
appraise 'rails42' do
gem 'rails', '~> 4.2.0'
gem 'rails-observers'
gem 'protected_attributes'
end
appraise 'rails50' do
gem 'rails', '>= 5.0.0.alpha', '< 5.1'
# The following needs to point to Github until the release of 0.1.3
gem 'rails-observers', :github => 'rails/rails-observers', :branch => 'master'
# The following need to point to Github until the release of version 3.5.0 to resolve deprecation warnings
gem 'rspec-core', :github => 'rspec/rspec-core', :branch => 'master'
gem 'rspec-rails', :github => 'rspec/rspec-rails', :branch => 'master'
gem 'rspec-mocks', :github => 'rspec/rspec-mocks', :branch => 'master'
gem 'rspec-support', :github => 'rspec/rspec-support', :branch => 'master'
gem 'rspec-expectations', :github => 'rspec/rspec-expectations', :branch => 'master'
end