Skip to content

Commit

Permalink
Add Ruby 2.0.0 to Travis build matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
ifarkas committed Mar 21, 2013
1 parent d133226 commit 41441d6
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 3 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Expand Up @@ -2,3 +2,4 @@ rvm:
- ree
- 1.9.2
- 1.9.3
- 2.0.0
14 changes: 11 additions & 3 deletions Appraisals
@@ -1,5 +1,13 @@
['2.3', '3.0', '3.1', '3.2'].each do |version|
appraise "rails.#{version}" do
gem "rails", "~>#{version}.0"
if RUBY_VERSION =~ /^2\.0/
['3.0', '3.1', '3.2'].each do |version|
appraise "rails.#{version}" do
gem "rails", "~>#{version}.0"
end
end
else
['2.3', '3.0', '3.1', '3.2'].each do |version|
appraise "rails.#{version}" do
gem "rails", "~>#{version}.0"
end
end
end

0 comments on commit 41441d6

Please sign in to comment.