Skip to content

Commit

Permalink
Less restrictive Rails requirement
Browse files Browse the repository at this point in the history
  • Loading branch information
DimitriosLisenko committed Dec 5, 2023
1 parent 7209f93 commit 59529d9
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
10 changes: 5 additions & 5 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
PATH
remote: .
specs:
noticent (0.0.5)
actionpack (~> 7.0)
activerecord (~> 7.0)
activesupport (~> 7.0)
noticent (0.0.6)
actionpack (>= 6.0, < 8.0)
activerecord (>= 6.0, < 8.0)
activesupport (>= 6.0, < 8.0)

GEM
remote: https://rubygems.org/
Expand Down Expand Up @@ -249,7 +249,7 @@ DEPENDENCIES
factory_bot (~> 6.1)
generator_spec (~> 0.9)
noticent!
rails (~> 7.0)
rails (>= 6.0, < 8.0)
rake (~> 13.0)
rspec (~> 3.10)
rubocop (~> 1.4)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ The primary design goal for Noticent is developer friendliness. Using Noticent,
## Installation

### Notice on Rails version
Noticent 0.0.6 has been upgraded to work with Rails 7.0. If you would like to use it with an older version of Rails, please use Noticent 0.0.5
Noticent 0.0.6 has been upgraded to work with Rails 7.0. If you would like to use it with an older version of Rails <= 5, please use Noticent 0.0.4

Add this line to your application's Gemfile:

Expand Down
8 changes: 4 additions & 4 deletions noticent.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -23,15 +23,15 @@ Gem::Specification.new do |spec|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]

spec.add_dependency "activerecord", "~> 7.0"
spec.add_dependency "activesupport", "~> 7.0"
spec.add_dependency "actionpack", "~> 7.0"
spec.add_dependency "activerecord", ">= 6.0", "< 8.0"
spec.add_dependency "activesupport", ">= 6.0", "< 8.0"
spec.add_dependency "actionpack", ">= 6.0", "< 8.0"

spec.add_development_dependency "combustion", "~> 1.3"
spec.add_development_dependency "bundler", "~> 2.0"
spec.add_development_dependency "factory_bot", "~> 6.1"
spec.add_development_dependency "generator_spec", "~> 0.9"
spec.add_development_dependency "rails", "~> 7.0"
spec.add_development_dependency "rails", ">= 6.0", "< 8.0"
spec.add_development_dependency "rake", "~> 13.0"
spec.add_development_dependency "rspec", "~> 3.10"
spec.add_development_dependency "rubocop", "~> 1.4"
Expand Down

0 comments on commit 59529d9

Please sign in to comment.