-
Notifications
You must be signed in to change notification settings - Fork 403
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Add class parameter to Uniqueness validator as per rails/rails#53598 - Test new edge methods textarea and checkbox - Allow new Rails 8 helper names like `textarea` (close #941)
- Loading branch information
Showing
15 changed files
with
228 additions
and
30 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
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 |
---|---|---|
|
@@ -49,7 +49,7 @@ Metrics/MethodLength: | |
- 'test/**/*' | ||
|
||
Metrics/ModuleLength: | ||
Max: 101 | ||
Max: 109 | ||
Exclude: | ||
- 'test/**/*' | ||
|
||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,7 +11,7 @@ Gem::Specification.new do |spec| | |
spec.email = ['[email protected]', '[email protected]'] | ||
|
||
spec.summary = 'Client Side Validations' | ||
spec.description = 'Client Side Validations made easy for your Rails 6.1 and 7.x applications' | ||
spec.description = 'Client Side Validations made easy for your Rails 6.1, 7.x, and 8.0 applications' | ||
spec.homepage = 'https://github.com/DavyJonesLocker/client_side_validations' | ||
spec.license = 'MIT' | ||
|
||
|
@@ -28,5 +28,5 @@ Gem::Specification.new do |spec| | |
spec.required_ruby_version = '>= 2.7' | ||
|
||
spec.add_dependency 'js_regex', '~> 3.7' | ||
spec.add_dependency 'rails', '>= 6.1', '< 8.0' | ||
spec.add_dependency 'rails', '>= 6.1' | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# This file was generated by Appraisal | ||
|
||
source "https://rubygems.org" | ||
|
||
gem "appraisal" | ||
gem "byebug" | ||
gem "m" | ||
gem "minitest" | ||
gem "mocha" | ||
gem "rake" | ||
gem "rubocop" | ||
gem "rubocop-minitest" | ||
gem "rubocop-packaging" | ||
gem "rubocop-performance" | ||
gem "rubocop-rails" | ||
gem "rubocop-rake" | ||
gem "shotgun" | ||
gem "simplecov" | ||
gem "simplecov-lcov" | ||
gem "sinatra" | ||
gem "sqlite3" | ||
gem "webrick" | ||
gem "rails", "~> 8.0.0" | ||
|
||
gemspec path: "../" |
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
Oops, something went wrong.