Skip to content

Commit

Permalink
Merge pull request #513 from spree/fix/test-ruby-3-0
Browse files Browse the repository at this point in the history
Test against Ruby 3.0
  • Loading branch information
damianlegawiec authored Jan 14, 2021
2 parents 43347be + 989dbca commit 0b77e2c
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 6 deletions.
9 changes: 6 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ services:
language: ruby

rvm:
- 2.5
- 2.6
- 2.7
- 3.0

env:
- DB=mysql
Expand All @@ -27,8 +27,11 @@ gemfile:
- gemfiles/spree_master.gemfile

jobs:
exclude:
- rvm: 3.0
gemfile: gemfiles/spree_4_1.gemfile
allow_failures:
- gemfile: gemfiles/spree_master.gemfile
- gemfile: gemfiles/spree_master.gemfile

before_install:
- mysql -u root -e "GRANT ALL ON *.* TO 'travis'@'%';"
Expand Down
13 changes: 10 additions & 3 deletions spree_auth_devise.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,24 @@
Gem::Specification.new do |s|
s.platform = Gem::Platform::RUBY
s.name = 'spree_auth_devise'
s.version = '4.2.0'
s.version = '4.3.0'
s.summary = 'Provides authentication and authorization services for use with Spree by using Devise and CanCan.'
s.description = s.summary

s.required_ruby_version = '>= 2.5.0'

s.author = 'Sean Schofield'
s.email = 'sean@spreecommerce.com'
s.authors = ['Sean Schofield', 'Spark Solutions']
s.email = 'hello@spreecommerce.org'
s.homepage = 'https://spreecommerce.org'
s.license = 'BSD-3-Clause'

s.metadata = {
"bug_tracker_uri" => "https://github.com/spree/spree_auth_devise/issues",
"changelog_uri" => "https://github.com/spree/spree_auth_devise/releases/tag/v#{s.version}",
"documentation_uri" => "https://guides.spreecommerce.org/",
"source_code_uri" => "https://github.com/spree/spree_auth_devise/tree/v#{s.version}",
}

s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- spec/*`.split("\n")
s.require_path = 'lib'
Expand Down

0 comments on commit 0b77e2c

Please sign in to comment.