-
Notifications
You must be signed in to change notification settings - Fork 3
Support Rails 7.2 #142
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support Rails 7.2 #142
Changes from 5 commits
a321ffd
44b5509
54e2f3d
d771147
e5d7c69
e78e942
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
AllCops: | ||
NewCops: enable | ||
TargetRubyVersion: 2.6 | ||
TargetRubyVersion: 3.0 | ||
|
||
Style/ClassAndModuleChildren: | ||
Exclude: | ||
|
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -11,4 +11,4 @@ end | |||||
task default: :test | ||||||
|
||||||
path = File.expand_path(__dir__) | ||||||
Dir.glob("#{path}/lib/diffcrypt/tasks/**/*.rake").sort.each { |f| load f } | ||||||
Dir.glob("#{path}/lib/diffcrypt/tasks/**/*.rake").each { |f| load f } | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -12,7 +12,7 @@ Gem::Specification.new do |spec| | |||||
spec.description = 'Diffable encrypted configuration files that can be safely committed into a git repository' | ||||||
spec.homepage = 'https://github.com/diffcrypt/diffcrypt-ruby' | ||||||
spec.license = 'MIT' | ||||||
spec.required_ruby_version = Gem::Requirement.new('>= 2.6.0') | ||||||
spec.required_ruby_version = Gem::Requirement.new('>= 3.0.0') | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
|
||||||
# spec.metadata["allowed_push_host"] = "TODO: Set to 'http://mygemserver.com'" | ||||||
|
||||||
|
@@ -29,7 +29,7 @@ Gem::Specification.new do |spec| | |||||
spec.executables = %w[diffcrypt] | ||||||
spec.require_paths = ['lib'] | ||||||
|
||||||
spec.add_runtime_dependency 'activesupport', '>= 6.0', '< 7.2' | ||||||
spec.add_runtime_dependency 'activesupport', '>= 6.0', '< 7.3' | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The next version will be 8.0 tho. |
||||||
spec.add_runtime_dependency 'thor', '>= 0.20', '< 2' | ||||||
spec.metadata['rubygems_mfa_required'] = 'true' | ||||||
end |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.