Skip to content

Commit

Permalink
update Rails dependency to 8 and version to 0.2.8
Browse files Browse the repository at this point in the history
  • Loading branch information
raykin committed Feb 4, 2025
1 parent ede99dc commit 06c6dae
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ ruby '> 3.3'
gemspec

group :development,:test do
gem 'rails', '< 8.0'
gem "rspec-rails", '< 8'
gem 'rails', '< 9.0'
gem "rspec-rails", '< 9'
gem 'sqlite3'
end
8 changes: 4 additions & 4 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
PATH
remote: .
specs:
rails_dictionary (0.2.6)
rails (< 8)
rails_dictionary (0.2.8)
rails (< 9)

GEM
remote: https://rubygems.org/
Expand Down Expand Up @@ -231,9 +231,9 @@ PLATFORMS
x86_64-linux-musl

DEPENDENCIES
rails (< 8.0)
rails (< 9.0)
rails_dictionary!
rspec-rails (< 8)
rspec-rails (< 9)
sqlite3

RUBY VERSION
Expand Down
2 changes: 1 addition & 1 deletion lib/rails_dictionary/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module RailsDictionary
VERSION = "0.2.7"
VERSION = "0.2.8"
end
Binary file removed rails_dictionary-0.2.7.gem
Binary file not shown.
2 changes: 1 addition & 1 deletion rails_dictionary.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Gem::Specification.new do |s|
s.description = %q{Rails plugin for mapping static data of web application to Dictionary class}


s.add_runtime_dependency 'rails', '< 8'
s.add_runtime_dependency 'rails', '< 9'

s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
Expand Down

0 comments on commit 06c6dae

Please sign in to comment.