Skip to content

Commit

Permalink
Upgrade Rails & Ruby
Browse files Browse the repository at this point in the history
  • Loading branch information
BorisBresciani committed Jan 9, 2022
1 parent 52ec7b4 commit 22c6f0c
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
2 changes: 2 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,11 @@ rvm:
- 2.5.5
- 2.6.3
- 2.7.0
- 3.0.3
gemfile:
- gemfiles/Gemfile-5-2
- gemfiles/Gemfile-6-0
- gemfiles/Gemfile-7-0
before_install: gem install bundler -v 2.1.0
before_script: bundle install
script: RAILS_ENV=test bundle exec rspec
6 changes: 3 additions & 3 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
PATH
remote: .
specs:
redis_web_manager (0.4.0)
redis_web_manager (0.5.0)
pagy (~> 3.8)
rails (>= 5.2, < 7)
rails (>= 5.2, < 8)
redis (>= 4.1.0, < 5)

GEM
Expand Down Expand Up @@ -131,7 +131,7 @@ GEM
rake (>= 0.13)
thor (~> 1.0)
rake (13.0.6)
redis (4.4.0)
redis (4.5.1)
rspec-core (3.10.1)
rspec-support (~> 3.10.0)
rspec-expectations (3.10.1)
Expand Down
2 changes: 1 addition & 1 deletion lib/redis_web_manager/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module RedisWebManager
VERSION = '0.4.0'
VERSION = '0.5.0'
end
2 changes: 1 addition & 1 deletion redis_web_manager.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,6 @@ Gem::Specification.new do |spec|
spec.add_development_dependency 'simplecov', '~> 0.16'

spec.add_dependency 'pagy', '~> 3.8'
spec.add_dependency 'rails', '>= 5.2', '< 7.0.1'
spec.add_dependency 'rails', '>= 5.2', '< 8'
spec.add_dependency 'redis', '>= 4.1.0', '< 5'
end

0 comments on commit 22c6f0c

Please sign in to comment.