Skip to content

Commit

Permalink
Fix Appraisals usage
Browse files Browse the repository at this point in the history
  • Loading branch information
mcmire authored and travisjeffery committed Mar 31, 2014
1 parent c7474c0 commit 2aa0bd4
Show file tree
Hide file tree
Showing 9 changed files with 151 additions and 153 deletions.
14 changes: 7 additions & 7 deletions Appraisals
@@ -1,20 +1,20 @@
appraise '3.0' do
gem 'rails', '3.0.17'
appraise 'rails_3_0' do
gem 'rails', '~> 3.0.0'
end

appraise '3.1' do
gem 'rails', '3.1.8'
appraise 'rails_3_1' do
gem 'rails', '~> 3.1.0'
gem 'jquery-rails'
gem 'sass-rails'
end

appraise '3.2' do
gem 'rails', '3.2.9'
appraise 'rails_3_2' do
gem 'rails', '~> 3.2.0'
gem 'jquery-rails'
gem 'sass-rails'
end

appraise '4.0' do
appraise 'rails_4_0' do
gem 'rails', '4.0.0.rc1'
gem 'jquery-rails'
gem 'sass-rails', '4.0.0.rc1'
Expand Down
2 changes: 1 addition & 1 deletion gemfiles/3.0.gemfile → gemfiles/rails_3_0.gemfile
Expand Up @@ -2,6 +2,6 @@

source "http://rubygems.org"

gem "rails", "3.0.17"
gem "rails", "~> 3.0.0"

gemspec :path=>"../"
68 changes: 34 additions & 34 deletions gemfiles/3.0.gemfile.lock → gemfiles/rails_3_0.gemfile.lock
@@ -1,91 +1,91 @@
PATH
remote: /Users/rmcgeary/work/oss/shoulda-context
remote: ../
specs:
shoulda-context (1.1.1)
shoulda-context (1.1.6)

GEM
remote: http://rubygems.org/
specs:
abstract (1.0.0)
actionmailer (3.0.17)
actionpack (= 3.0.17)
actionmailer (3.0.20)
actionpack (= 3.0.20)
mail (~> 2.2.19)
actionpack (3.0.17)
activemodel (= 3.0.17)
activesupport (= 3.0.17)
actionpack (3.0.20)
activemodel (= 3.0.20)
activesupport (= 3.0.20)
builder (~> 2.1.2)
erubis (~> 2.6.6)
i18n (~> 0.5.0)
rack (~> 1.2.5)
rack-mount (~> 0.6.14)
rack-test (~> 0.5.7)
tzinfo (~> 0.3.23)
activemodel (3.0.17)
activesupport (= 3.0.17)
activemodel (3.0.20)
activesupport (= 3.0.20)
builder (~> 2.1.2)
i18n (~> 0.5.0)
activerecord (3.0.17)
activemodel (= 3.0.17)
activesupport (= 3.0.17)
activerecord (3.0.20)
activemodel (= 3.0.20)
activesupport (= 3.0.20)
arel (~> 2.0.10)
tzinfo (~> 0.3.23)
activeresource (3.0.17)
activemodel (= 3.0.17)
activesupport (= 3.0.17)
activesupport (3.0.17)
activeresource (3.0.20)
activemodel (= 3.0.20)
activesupport (= 3.0.20)
activesupport (3.0.20)
appraisal (0.5.2)
bundler
rake
arel (2.0.10)
builder (2.1.2)
erubis (2.6.6)
abstract (>= 1.0.0)
i18n (0.5.0)
json (1.8.0)
i18n (0.5.3)
json (1.8.1)
mail (2.2.20)
activesupport (>= 2.3.6)
i18n (>= 0.4.0)
mime-types (~> 1.16)
treetop (~> 1.4.8)
mime-types (1.23)
mime-types (1.25.1)
mocha (0.9.12)
polyglot (0.3.3)
polyglot (0.3.4)
rack (1.2.8)
rack-mount (0.6.14)
rack (>= 1.0.0)
rack-test (0.5.7)
rack (>= 1.0)
rails (3.0.17)
actionmailer (= 3.0.17)
actionpack (= 3.0.17)
activerecord (= 3.0.17)
activeresource (= 3.0.17)
activesupport (= 3.0.17)
rails (3.0.20)
actionmailer (= 3.0.20)
actionpack (= 3.0.20)
activerecord (= 3.0.20)
activeresource (= 3.0.20)
activesupport (= 3.0.20)
bundler (~> 1.0)
railties (= 3.0.17)
railties (3.0.17)
actionpack (= 3.0.17)
activesupport (= 3.0.17)
railties (= 3.0.20)
railties (3.0.20)
actionpack (= 3.0.20)
activesupport (= 3.0.20)
rake (>= 0.8.7)
rdoc (~> 3.4)
thor (~> 0.14.4)
rake (10.0.4)
rake (10.2.1)
rdoc (3.12.2)
json (~> 1.4)
test-unit (2.1.2)
thor (0.14.6)
treetop (1.4.12)
treetop (1.4.15)
polyglot
polyglot (>= 0.3.1)
tzinfo (0.3.37)
tzinfo (0.3.38)

PLATFORMS
ruby

DEPENDENCIES
appraisal (~> 0.5)
mocha (~> 0.9.10)
rails (= 3.0.17)
rails (~> 3.0.0)
rake
shoulda-context!
test-unit (~> 2.1.0)
2 changes: 1 addition & 1 deletion gemfiles/3.2.gemfile → gemfiles/rails_3_1.gemfile
Expand Up @@ -2,7 +2,7 @@

source "http://rubygems.org"

gem "rails", "3.2.9"
gem "rails", "~> 3.1.0"
gem "jquery-rails"
gem "sass-rails"

Expand Down
82 changes: 41 additions & 41 deletions gemfiles/3.1.gemfile.lock → gemfiles/rails_3_1.gemfile.lock
@@ -1,17 +1,17 @@
PATH
remote: /Users/rmcgeary/work/oss/shoulda-context
remote: ../
specs:
shoulda-context (1.1.1)
shoulda-context (1.1.6)

GEM
remote: http://rubygems.org/
specs:
actionmailer (3.1.8)
actionpack (= 3.1.8)
mail (~> 2.3.3)
actionpack (3.1.8)
activemodel (= 3.1.8)
activesupport (= 3.1.8)
actionmailer (3.1.12)
actionpack (= 3.1.12)
mail (~> 2.4.4)
actionpack (3.1.12)
activemodel (= 3.1.12)
activesupport (= 3.1.12)
builder (~> 3.0.0)
erubis (~> 2.7.0)
i18n (~> 0.6)
Expand All @@ -20,40 +20,40 @@ GEM
rack-mount (~> 0.8.2)
rack-test (~> 0.6.1)
sprockets (~> 2.0.4)
activemodel (3.1.8)
activesupport (= 3.1.8)
activemodel (3.1.12)
activesupport (= 3.1.12)
builder (~> 3.0.0)
i18n (~> 0.6)
activerecord (3.1.8)
activemodel (= 3.1.8)
activesupport (= 3.1.8)
activerecord (3.1.12)
activemodel (= 3.1.12)
activesupport (= 3.1.12)
arel (~> 2.2.3)
tzinfo (~> 0.3.29)
activeresource (3.1.8)
activemodel (= 3.1.8)
activesupport (= 3.1.8)
activesupport (3.1.8)
multi_json (>= 1.0, < 1.3)
activeresource (3.1.12)
activemodel (= 3.1.12)
activesupport (= 3.1.12)
activesupport (3.1.12)
multi_json (~> 1.0)
appraisal (0.5.2)
bundler
rake
arel (2.2.3)
builder (3.0.4)
erubis (2.7.0)
hike (1.2.2)
i18n (0.6.4)
jquery-rails (2.2.1)
hike (1.2.3)
i18n (0.6.9)
jquery-rails (3.1.0)
railties (>= 3.0, < 5.0)
thor (>= 0.14, < 2.0)
json (1.8.0)
mail (2.3.3)
json (1.8.1)
mail (2.4.4)
i18n (>= 0.4.0)
mime-types (~> 1.16)
treetop (~> 1.4.8)
mime-types (1.23)
mime-types (1.25.1)
mocha (0.9.12)
multi_json (1.2.0)
polyglot (0.3.3)
multi_json (1.9.2)
polyglot (0.3.4)
rack (1.3.10)
rack-cache (1.2)
rack (>= 0.4)
Expand All @@ -63,25 +63,25 @@ GEM
rack
rack-test (0.6.2)
rack (>= 1.0)
rails (3.1.8)
actionmailer (= 3.1.8)
actionpack (= 3.1.8)
activerecord (= 3.1.8)
activeresource (= 3.1.8)
activesupport (= 3.1.8)
rails (3.1.12)
actionmailer (= 3.1.12)
actionpack (= 3.1.12)
activerecord (= 3.1.12)
activeresource (= 3.1.12)
activesupport (= 3.1.12)
bundler (~> 1.0)
railties (= 3.1.8)
railties (3.1.8)
actionpack (= 3.1.8)
activesupport (= 3.1.8)
railties (= 3.1.12)
railties (3.1.12)
actionpack (= 3.1.12)
activesupport (= 3.1.12)
rack-ssl (~> 1.3.2)
rake (>= 0.8.7)
rdoc (~> 3.4)
thor (~> 0.14.6)
rake (10.0.4)
rake (10.2.1)
rdoc (3.12.2)
json (~> 1.4)
sass (3.2.9)
sass (3.3.4)
sass-rails (3.1.0)
actionpack (~> 3.1.0)
railties (~> 3.1.0)
Expand All @@ -93,10 +93,10 @@ GEM
test-unit (2.1.2)
thor (0.14.6)
tilt (1.4.1)
treetop (1.4.12)
treetop (1.4.15)
polyglot
polyglot (>= 0.3.1)
tzinfo (0.3.37)
tzinfo (0.3.38)

PLATFORMS
ruby
Expand All @@ -105,7 +105,7 @@ DEPENDENCIES
appraisal (~> 0.5)
jquery-rails
mocha (~> 0.9.10)
rails (= 3.1.8)
rails (~> 3.1.0)
rake
sass-rails
shoulda-context!
Expand Down
2 changes: 1 addition & 1 deletion gemfiles/3.1.gemfile → gemfiles/rails_3_2.gemfile
Expand Up @@ -2,7 +2,7 @@

source "http://rubygems.org"

gem "rails", "3.1.8"
gem "rails", "~> 3.2.0"
gem "jquery-rails"
gem "sass-rails"

Expand Down

0 comments on commit 2aa0bd4

Please sign in to comment.