-
-
Notifications
You must be signed in to change notification settings - Fork 328
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update hacking notes and tidy up gem restrictions * Shoe-horn in psych restrictions * Remove duplicate psych reference * Remove old note references as most are incorrect * Use appraisals to rebuild gemfiles * Remove temporary rdoc restriction * Add in deprecative versions of rhs * Fix rubocop
- Loading branch information
Showing
10 changed files
with
43 additions
and
38 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 |
---|---|---|
@@ -1,44 +1,54 @@ | ||
# frozen_string_literal: true | ||
|
||
appraise 'rails_5_0' do | ||
gem 'activerecord' | ||
gem 'capybara', '< 3' | ||
gem 'cucumber', '< 4' | ||
gem 'psych', '< 4' | ||
gem 'rails-html-sanitizer', '< 1.4' | ||
gem 'railties', '~> 5.0.7' | ||
gem 'activerecord' | ||
gem 'sqlite3', '~> 1.3.13' | ||
end | ||
|
||
appraise 'rails_5_1' do | ||
gem 'activerecord' | ||
gem 'capybara', '< 3.15' | ||
gem 'cucumber', '< 5' | ||
gem 'psych', '< 4' | ||
gem 'rails-html-sanitizer', '< 1.4' | ||
gem 'railties', '~> 5.1.7' | ||
gem 'activerecord' | ||
gem 'sqlite3', '~> 1.3.13' | ||
end | ||
|
||
appraise 'rails_5_2' do | ||
gem 'activerecord' | ||
gem 'capybara', '< 3.33' | ||
gem 'cucumber', '< 6' | ||
gem 'psych', '< 4' | ||
gem 'rails-html-sanitizer', '< 1.4.3' | ||
gem 'railties', '~> 5.2.4' | ||
gem 'activerecord' | ||
gem 'sqlite3', '~> 1.3.13' | ||
end | ||
|
||
appraise 'rails_6_0' do | ||
gem 'cucumber', '< 6' | ||
gem 'railties', '~> 6.0.3' | ||
gem 'activerecord' | ||
gem 'cucumber', '< 6' | ||
gem 'psych', '< 4' | ||
gem 'rails-html-sanitizer', '< 1.4.3' | ||
gem 'railties', '~> 6.0.3' | ||
gem 'sqlite3', '~> 1.4' | ||
end | ||
|
||
appraise 'rails_6_1' do | ||
gem 'railties', '~> 6.1.3' | ||
gem 'activerecord' | ||
gem 'cucumber', '< 9' | ||
gem 'psych', '< 4' | ||
gem 'railties', '~> 6.1.3' | ||
gem 'sqlite3', '~> 1.4' | ||
end | ||
|
||
appraise 'rails_7_0' do | ||
gem 'railties', '~> 7.0.0' | ||
gem 'activerecord' | ||
gem 'railties', '~> 7.0.0' | ||
gem 'sqlite3', '~> 1.4' | ||
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 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