-
-
Notifications
You must be signed in to change notification settings - Fork 467
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Simplify testing with different versions on Rails
* remove Appraisal's gemfiles directory * don't specify gemfiles for Travis * use pessimistic operator in Appraisal * upgrade development gems, use pessimistic operator
- Loading branch information
Greg Lazarev
committed
Jun 28, 2013
1 parent
7e1053d
commit e075bf0
Showing
17 changed files
with
111 additions
and
683 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,9 +4,9 @@ | |
*.swp | ||
*~ | ||
.bundle | ||
Gemfile.lock | ||
bin/ | ||
db/*.sqlite3 | ||
gemfiles/ | ||
log/*.log | ||
pkg | ||
tmp/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
if RUBY_VERSION >= '2.0' | ||
rails_versions = ['3.2.13.rc2'] | ||
rails_versions = ['~> 3.2.13'] | ||
else | ||
rails_versions = ['3.0.20', '3.1.11', '3.2.12'] | ||
rails_versions = ['~> 3.0.20', '~> 3.1.12', '~> 3.2.13'] | ||
end | ||
|
||
rails_versions.each do |rails_version| | ||
appraise "#{rails_version}" do | ||
appraise "rails#{rails_version.slice(/\d+\.\d+/)}" do | ||
gem 'rails', rails_version | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.