Commit f46893ea6071738fd58ed6e609dbdc1a0d214389

Authored by Tao Huang
1 parent 527bc563
Exists in master

feat: update ruby and rails version

Showing 2 changed files with 3 additions and 3 deletions   Show diff stats
Gemfile
... ... @@ -10,6 +10,6 @@ gemspec
10 10 # Git. Remember to move these dependencies to your gemspec before releasing
11 11 # your gem to rubygems.org.
12 12  
13   -ruby '~> 2.6.2'
  13 +ruby '>= 3.0'
14 14  
15 15 gem 'pry', group: [:development, :test]
... ...
scim_rails.gemspec
... ... @@ -16,8 +16,8 @@ Gem::Specification.new do |s|
16 16  
17 17 s.files = Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.md"]
18 18  
19   - s.required_ruby_version = "~> 2.4"
20   - s.add_dependency "rails", ">= 5.0", "< 6.1"
  19 + s.required_ruby_version = ">= 3.0"
  20 + s.add_dependency "rails", ">= 5.0"
21 21 s.add_runtime_dependency "jwt", ">= 1.5.1"
22 22 s.test_files = Dir["spec/**/*"]
23 23  
... ...