Skip to content

Commit 0b77e2c

Browse files
Merge pull request #513 from spree/fix/test-ruby-3-0
Test against Ruby 3.0
2 parents 43347be + 989dbca commit 0b77e2c

File tree

2 files changed

+16
-6
lines changed

2 files changed

+16
-6
lines changed

.travis.yml

+6-3
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ services:
1515
language: ruby
1616

1717
rvm:
18-
- 2.5
19-
- 2.6
18+
- 2.7
19+
- 3.0
2020

2121
env:
2222
- DB=mysql
@@ -27,8 +27,11 @@ gemfile:
2727
- gemfiles/spree_master.gemfile
2828

2929
jobs:
30+
exclude:
31+
- rvm: 3.0
32+
gemfile: gemfiles/spree_4_1.gemfile
3033
allow_failures:
31-
- gemfile: gemfiles/spree_master.gemfile
34+
- gemfile: gemfiles/spree_master.gemfile
3235

3336
before_install:
3437
- mysql -u root -e "GRANT ALL ON *.* TO 'travis'@'%';"

spree_auth_devise.gemspec

+10-3
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,24 @@
33
Gem::Specification.new do |s|
44
s.platform = Gem::Platform::RUBY
55
s.name = 'spree_auth_devise'
6-
s.version = '4.2.0'
6+
s.version = '4.3.0'
77
s.summary = 'Provides authentication and authorization services for use with Spree by using Devise and CanCan.'
88
s.description = s.summary
99

1010
s.required_ruby_version = '>= 2.5.0'
1111

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

17+
s.metadata = {
18+
"bug_tracker_uri" => "https://github.com/spree/spree_auth_devise/issues",
19+
"changelog_uri" => "https://github.com/spree/spree_auth_devise/releases/tag/v#{s.version}",
20+
"documentation_uri" => "https://guides.spreecommerce.org/",
21+
"source_code_uri" => "https://github.com/spree/spree_auth_devise/tree/v#{s.version}",
22+
}
23+
1724
s.files = `git ls-files`.split("\n")
1825
s.test_files = `git ls-files -- spec/*`.split("\n")
1926
s.require_path = 'lib'

0 commit comments

Comments
 (0)