omniauth-matique 0.1.9 → 0.1.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ee4300f0314b4477302a48d487530ce1dad27752103a39cff0c881d1e1ff66eb
4
- data.tar.gz: 8d29362a20a9a3b6b17fca715f717a60e560c298ba2c911303dc7a40f18d6fb3
3
+ metadata.gz: 2ff258eb557b6d4a6eceb44d2073efdcdd3ffc9997675990fe803aaaed187bd4
4
+ data.tar.gz: f20fb629c55f2fb7b0d2b304cbb772a2c74336de8cee11c76ced561606ee88f5
5
5
  SHA512:
6
- metadata.gz: 7d968317c00c514c6835d711228152dd93e3e4727ce94a376c27811b0ea99ea46982a2d86f0eca1fdccd504eee8b8e5187747339c66c29fef0c8d8d48c81d780
7
- data.tar.gz: 90e392e2191727806cc79af4bdee0de91a77e1f3be102d5d12662930718df383688963ef95a345793c87533ac8bcedd683ca61b9c3c1ab53cca8e041d1712cbc
6
+ metadata.gz: 609e59d9bb6e58475faaaaf6f62e7e5c897b622b21e96e0925e51d3e67d2cf9d6ff7507f7bdcca669c130bea8c574001f9a9484630c6cefa7be2aee9a9f3da17
7
+ data.tar.gz: fa921839b9bbeaf6ccd0943784b5ecaab280c19c34c76ab34391bef88d145010f7733ceb3e249b207a8eebfc7bba4d047c9c5a36cf4043e2f6b7606299e502f2
@@ -8,19 +8,23 @@ jobs:
8
8
  strategy:
9
9
  fail-fast: false
10
10
  matrix:
11
- os: [ubuntu-latest]
12
- ruby: ["2.7", "3.0", "3.2", head]
13
- test_command: ["bundle exec rake test"]
14
- runs-on: ${{ matrix.os }}
11
+ ruby_version: [head, "3.4", "3.2"]
12
+ gemfile:
13
+ - Gemfile
14
+ runs-on: ubuntu-latest
15
15
 
16
16
  steps:
17
- - uses: actions/checkout@v3
18
- - uses: ruby/setup-ruby@v1
19
- with:
20
- ruby-version: ${{ matrix.ruby }}
21
- - name: Bundle install
22
- run: |
23
- bundle config path /home/runner/bundle
24
- bundle install
25
- bundle update
26
- - run: ${{ matrix.test_command }}
17
+ - uses: actions/checkout@v4
18
+ - name: Set up Ruby
19
+ uses: ruby/setup-ruby@v1
20
+ with:
21
+ ruby-version: ${{ matrix.ruby_version }}
22
+ bundler-cache: true
23
+ - name: Bundle install
24
+ run: |
25
+ bundle config set frozen false
26
+ bundle config path /home/runner/bundle
27
+ bundle install
28
+ bundle update
29
+ - name: Build and test with Rake
30
+ run: bundle exec rake
data/.gitignore CHANGED
@@ -2,6 +2,6 @@
2
2
  coverage/
3
3
  .watchr
4
4
 
5
- *.gem
6
- *.log
7
- *.lock
5
+ **/*.gem
6
+ **/*.log
7
+ **/*.lock
data/.ruby-gemset CHANGED
@@ -1 +1 @@
1
- rails-7.0
1
+ rails-8.0
data/.ruby-version CHANGED
@@ -1 +1 @@
1
- ruby-3.2.2
1
+ ruby-3.4.4
data/Gemfile CHANGED
@@ -4,7 +4,10 @@ gemspec
4
4
  gem "rails"
5
5
 
6
6
  group :test do
7
- gem "observr"
7
+ gem "cuco"
8
8
  gem "rubocop", require: false
9
9
  gem "simplecov", require: false
10
+ gem "spring"
11
+ gem "sqlite3"
12
+ gem "mocha", require: false # for a sub-gem
10
13
  end
data/MIT-LICENSE CHANGED
@@ -1,6 +1,4 @@
1
- The MIT License (MIT)
2
-
3
- Copyright (c) 2016-2023 Dittmar Krall (www.matiq.com)
1
+ Copyright (c) 2016-2025 Dittmar Krall (www.matiq.com)
4
2
 
5
3
  Permission is hereby granted, free of charge, to any person obtaining
6
4
  a copy of this software and associated documentation files (the
data/README.md CHANGED
@@ -1,6 +1,10 @@
1
1
  # Omniauth-Matique
2
2
 
3
- [![Gem Version](https://badge.fury.io/rb/omniauth-matique.svg)](https://badge.fury.io/rb/omniauth-matique)
3
+ [![Gem Version](https://img.shields.io/gem/v/omniauth-matique?color=168AFE&logo=rubygems&logoColor=FE1616)](https://rubygems.org/gems/omniauth-matique)
4
+ [![Downloads](https://img.shields.io/gem/dt/omniauth-matique?color=168AFE&logo=rubygems&logoColor=FE1616)](https://rubygems.org/gems/omniauth-matique)
5
+ [![GitHub Build](https://img.shields.io/github/actions/workflow/status/matique/omniauth-matique/rake.yml?logo=github)](https://github.com/matique/omniauth-matique/actions/workflows/rake.yml)
6
+ [![Ruby Style Guide](https://img.shields.io/badge/code_style-standard-brightgreen.svg)](https://github.com/standardrb/standard)
7
+ [![MIT License](https://img.shields.io/badge/license-MIT-blue.svg)](http://choosealicense.com/licenses/mit/)
4
8
 
5
9
  # OmniAuth Matique Strategy
6
10
 
@@ -57,7 +61,5 @@ See also:
57
61
 
58
62
  ## Miscellaneous
59
63
 
60
- Copyright (c) 2016-2023 Dittmar Krall (www.matiq.com),
61
- released under the MIT license:
62
-
63
- * https://opensource.org/licenses/MIT
64
+ Copyright (c) 2016-2025 Dittmar Krall (www.matiq.com),
65
+ released under the [MIT license](https://opensource.org/licenses/MIT).
@@ -1,6 +1,7 @@
1
1
  module OmniAuth
2
2
  module Matique
3
- VERSION = "0.1.9" # 2023-04-25
3
+ VERSION = "0.1.10" # 2025-06-20
4
+ # VERSION = "0.1.9" # 2023-04-25
4
5
  # VERSION = "0.1.8" # 2021-06-23
5
6
  # VERSION = "0.1.7" # 2020-07-17
6
7
  # VERSION = "0.1.6" # 2020-04-27
@@ -21,10 +21,10 @@ Gem::Specification.new do |s|
21
21
 
22
22
  s.files = `git ls-files -z`.split("\x0")
23
23
  s.require_paths = ["lib"]
24
+ s.required_ruby_version = "~> 3"
24
25
 
25
26
  s.add_development_dependency "rake", "~> 13"
26
27
  s.add_dependency "omniauth-oauth2", "~> 1"
27
28
 
28
29
  s.add_development_dependency "minitest", "~> 5"
29
- s.add_development_dependency "mocha", "~> 1"
30
30
  end
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: omniauth-matique
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.9
4
+ version: 0.1.10
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dittmar Krall
8
- autorequire:
9
8
  bindir: bin
10
9
  cert_chain: []
11
- date: 2023-04-25 00:00:00.000000000 Z
10
+ date: 1980-01-02 00:00:00.000000000 Z
12
11
  dependencies:
13
12
  - !ruby/object:Gem::Dependency
14
13
  name: rake
@@ -52,20 +51,6 @@ dependencies:
52
51
  - - "~>"
53
52
  - !ruby/object:Gem::Version
54
53
  version: '5'
55
- - !ruby/object:Gem::Dependency
56
- name: mocha
57
- requirement: !ruby/object:Gem::Requirement
58
- requirements:
59
- - - "~>"
60
- - !ruby/object:Gem::Version
61
- version: '1'
62
- type: :development
63
- prerelease: false
64
- version_requirements: !ruby/object:Gem::Requirement
65
- requirements:
66
- - - "~>"
67
- - !ruby/object:Gem::Version
68
- version: '1'
69
54
  description: |2
70
55
  Strategy to authenticate with matiq UG (haftungsbeschränkt)
71
56
  via OAuth2 in OmniAuth.
@@ -96,23 +81,21 @@ licenses:
96
81
  - MIT
97
82
  metadata:
98
83
  source_code_uri: https://github.com/matique/omniauth-matique
99
- post_install_message:
100
84
  rdoc_options: []
101
85
  require_paths:
102
86
  - lib
103
87
  required_ruby_version: !ruby/object:Gem::Requirement
104
88
  requirements:
105
- - - ">="
89
+ - - "~>"
106
90
  - !ruby/object:Gem::Version
107
- version: '0'
91
+ version: '3'
108
92
  required_rubygems_version: !ruby/object:Gem::Requirement
109
93
  requirements:
110
94
  - - ">="
111
95
  - !ruby/object:Gem::Version
112
96
  version: '0'
113
97
  requirements: []
114
- rubygems_version: 3.4.10
115
- signing_key:
98
+ rubygems_version: 3.6.7
116
99
  specification_version: 4
117
100
  summary: OmniAuth strategy for matiq
118
101
  test_files: []