omniauth-outseta 1.0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: e615859281b5895e8045a7ee5e96dc0e52dd340cc31f7b150f36f2384c48e9f2
4
+ data.tar.gz: d474ebf6c30bc709d3d2753cae0f036acaf632336fd3d12436b67490eb0c9e88
5
+ SHA512:
6
+ metadata.gz: 3aa546a8d122d208b5876aa17f1d8da9bfa629db0427c2a93ab2ad7a79be319fdc61bfafad577286177316aeb6968fe581b8f6c6e78b85e495383bc5190b1e3c
7
+ data.tar.gz: ad8808755380f803b0fc2c2cf674b17d5f0fb0fa992982cf857c534e10bb5cd5b4d59f1c107511855fa1cc489ae7475f0d8989cba66c53bba7257e9bf4bd858c
data/.ruby-version ADDED
@@ -0,0 +1 @@
1
+ ruby-3.2.2
data/.standard.yml ADDED
@@ -0,0 +1,3 @@
1
+ # For available configuration options, see:
2
+ # https://github.com/testdouble/standard
3
+ ruby_version: 2.6
data/CHANGELOG.md ADDED
@@ -0,0 +1,19 @@
1
+ ## [Unreleased]
2
+
3
+ ## [1.0.1](https://github.com/tiltcamp/omniauth-outseta/compare/v1.0.0...v1.0.1) (2023-05-23)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * map `addon_uids` to the correct JSON attribute ([0474082](https://github.com/tiltcamp/omniauth-outseta/commit/0474082f6ee91554940612c88b51b5a0da68d2ee))
9
+
10
+ ## 1.0.0 (2023-05-23)
11
+
12
+
13
+ ### Features
14
+
15
+ * add Outseta strategy ([4cf016d](https://github.com/tiltcamp/omniauth-outseta/commit/4cf016dcac2053085ab72decb05001006a22d818))
16
+
17
+ ## [0.1.0] - 2023-05-22
18
+
19
+ - Initial release
@@ -0,0 +1,84 @@
1
+ # Contributor Covenant Code of Conduct
2
+
3
+ ## Our Pledge
4
+
5
+ We as members, contributors, and leaders pledge to make participation in our community a harassment-free experience for everyone, regardless of age, body size, visible or invisible disability, ethnicity, sex characteristics, gender identity and expression, level of experience, education, socio-economic status, nationality, personal appearance, race, religion, or sexual identity and orientation.
6
+
7
+ We pledge to act and interact in ways that contribute to an open, welcoming, diverse, inclusive, and healthy community.
8
+
9
+ ## Our Standards
10
+
11
+ Examples of behavior that contributes to a positive environment for our community include:
12
+
13
+ * Demonstrating empathy and kindness toward other people
14
+ * Being respectful of differing opinions, viewpoints, and experiences
15
+ * Giving and gracefully accepting constructive feedback
16
+ * Accepting responsibility and apologizing to those affected by our mistakes, and learning from the experience
17
+ * Focusing on what is best not just for us as individuals, but for the overall community
18
+
19
+ Examples of unacceptable behavior include:
20
+
21
+ * The use of sexualized language or imagery, and sexual attention or
22
+ advances of any kind
23
+ * Trolling, insulting or derogatory comments, and personal or political attacks
24
+ * Public or private harassment
25
+ * Publishing others' private information, such as a physical or email
26
+ address, without their explicit permission
27
+ * Other conduct which could reasonably be considered inappropriate in a
28
+ professional setting
29
+
30
+ ## Enforcement Responsibilities
31
+
32
+ Community leaders are responsible for clarifying and enforcing our standards of acceptable behavior and will take appropriate and fair corrective action in response to any behavior that they deem inappropriate, threatening, offensive, or harmful.
33
+
34
+ Community leaders have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, and will communicate reasons for moderation decisions when appropriate.
35
+
36
+ ## Scope
37
+
38
+ This Code of Conduct applies within all community spaces, and also applies when an individual is officially representing the community in public spaces. Examples of representing our community include using an official e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event.
39
+
40
+ ## Enforcement
41
+
42
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be reported to the community leaders responsible for enforcement at hello@tiltcamp.com. All complaints will be reviewed and investigated promptly and fairly.
43
+
44
+ All community leaders are obligated to respect the privacy and security of the reporter of any incident.
45
+
46
+ ## Enforcement Guidelines
47
+
48
+ Community leaders will follow these Community Impact Guidelines in determining the consequences for any action they deem in violation of this Code of Conduct:
49
+
50
+ ### 1. Correction
51
+
52
+ **Community Impact**: Use of inappropriate language or other behavior deemed unprofessional or unwelcome in the community.
53
+
54
+ **Consequence**: A private, written warning from community leaders, providing clarity around the nature of the violation and an explanation of why the behavior was inappropriate. A public apology may be requested.
55
+
56
+ ### 2. Warning
57
+
58
+ **Community Impact**: A violation through a single incident or series of actions.
59
+
60
+ **Consequence**: A warning with consequences for continued behavior. No interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, for a specified period of time. This includes avoiding interactions in community spaces as well as external channels like social media. Violating these terms may lead to a temporary or permanent ban.
61
+
62
+ ### 3. Temporary Ban
63
+
64
+ **Community Impact**: A serious violation of community standards, including sustained inappropriate behavior.
65
+
66
+ **Consequence**: A temporary ban from any sort of interaction or public communication with the community for a specified period of time. No public or private interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, is allowed during this period. Violating these terms may lead to a permanent ban.
67
+
68
+ ### 4. Permanent Ban
69
+
70
+ **Community Impact**: Demonstrating a pattern of violation of community standards, including sustained inappropriate behavior, harassment of an individual, or aggression toward or disparagement of classes of individuals.
71
+
72
+ **Consequence**: A permanent ban from any sort of public interaction within the community.
73
+
74
+ ## Attribution
75
+
76
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 2.0,
77
+ available at https://www.contributor-covenant.org/version/2/0/code_of_conduct.html.
78
+
79
+ Community Impact Guidelines were inspired by [Mozilla's code of conduct enforcement ladder](https://github.com/mozilla/diversity).
80
+
81
+ [homepage]: https://www.contributor-covenant.org
82
+
83
+ For answers to common questions about this code of conduct, see the FAQ at
84
+ https://www.contributor-covenant.org/faq. Translations are available at https://www.contributor-covenant.org/translations.
data/Gemfile ADDED
@@ -0,0 +1,12 @@
1
+ # frozen_string_literal: true
2
+
3
+ source "https://rubygems.org"
4
+
5
+ # Specify your gem's dependencies in omniauth-outseta.gemspec
6
+ gemspec
7
+
8
+ gem "rake", "~> 13.0"
9
+
10
+ gem "minitest", "~> 5.0"
11
+
12
+ gem "standard", "~> 1.3"
data/Gemfile.lock ADDED
@@ -0,0 +1,71 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ omniauth-outseta (1.0.1)
5
+ jwt (~> 2.7)
6
+ omniauth (~> 1.9.2)
7
+ openssl (~> 3.1.0)
8
+
9
+ GEM
10
+ remote: https://rubygems.org/
11
+ specs:
12
+ ast (2.4.2)
13
+ hashie (5.0.0)
14
+ json (2.6.3)
15
+ jwt (2.7.0)
16
+ language_server-protocol (3.17.0.3)
17
+ lint_roller (1.0.0)
18
+ minitest (5.18.0)
19
+ omniauth (1.9.2)
20
+ hashie (>= 3.4.6)
21
+ rack (>= 1.6.2, < 3)
22
+ openssl (3.1.0)
23
+ parallel (1.23.0)
24
+ parser (3.2.2.1)
25
+ ast (~> 2.4.1)
26
+ rack (2.2.7)
27
+ rainbow (3.1.1)
28
+ rake (13.0.6)
29
+ regexp_parser (2.8.0)
30
+ rexml (3.2.5)
31
+ rubocop (1.50.2)
32
+ json (~> 2.3)
33
+ parallel (~> 1.10)
34
+ parser (>= 3.2.0.0)
35
+ rainbow (>= 2.2.2, < 4.0)
36
+ regexp_parser (>= 1.8, < 3.0)
37
+ rexml (>= 3.2.5, < 4.0)
38
+ rubocop-ast (>= 1.28.0, < 2.0)
39
+ ruby-progressbar (~> 1.7)
40
+ unicode-display_width (>= 2.4.0, < 3.0)
41
+ rubocop-ast (1.28.1)
42
+ parser (>= 3.2.1.0)
43
+ rubocop-performance (1.16.0)
44
+ rubocop (>= 1.7.0, < 2.0)
45
+ rubocop-ast (>= 0.4.0)
46
+ ruby-progressbar (1.13.0)
47
+ standard (1.28.2)
48
+ language_server-protocol (~> 3.17.0.2)
49
+ lint_roller (~> 1.0)
50
+ rubocop (~> 1.50.2)
51
+ standard-custom (~> 1.0.0)
52
+ standard-performance (~> 1.0.1)
53
+ standard-custom (1.0.0)
54
+ lint_roller (~> 1.0)
55
+ standard-performance (1.0.1)
56
+ lint_roller (~> 1.0)
57
+ rubocop-performance (~> 1.16.0)
58
+ unicode-display_width (2.4.2)
59
+
60
+ PLATFORMS
61
+ x86_64-darwin-22
62
+ x86_64-linux
63
+
64
+ DEPENDENCIES
65
+ minitest (~> 5.0)
66
+ omniauth-outseta!
67
+ rake (~> 13.0)
68
+ standard (~> 1.3)
69
+
70
+ BUNDLED WITH
71
+ 2.4.10
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2023 TiltCamp
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,132 @@
1
+ # Omniauth::Outseta
2
+
3
+ This gem enables the use of [Outseta](https://www.outseta.com/) as an authentication provider in combination with the
4
+ [Devise](https://github.com/heartcombo/devise) and [Omniauth](https://github.com/omniauth/omniauth) gems.
5
+
6
+ ## Installation
7
+
8
+ ### Prerequisites
9
+
10
+ Ensure you have [Devise](https://github.com/heartcombo/devise) set up for your Ruby on Rails application. If not, you
11
+ can follow the Devise [Getting Started](https://github.com/heartcombo/devise#getting-started) guide.
12
+
13
+ ### Adding the Gem
14
+
15
+ Add the `omniauth-outseta` gem to your Gemfile:
16
+
17
+ ```ruby
18
+ gem 'omniauth-outseta'
19
+ ```
20
+
21
+ And then execute:
22
+
23
+ ```bash
24
+ $ bundle install
25
+ ```
26
+
27
+ ### Configuration
28
+
29
+ To configure the gem, add the following to your Devise initializer (`config/initializers/devise.rb`):
30
+
31
+ ```ruby
32
+ config.omniauth :outseta, subdomain: 'your_subdomain', jwt_public_key: <<~PEM
33
+ -----BEGIN CERTIFICATE-----
34
+ YourPublicKeyHere
35
+ -----END CERTIFICATE-----
36
+ PEM
37
+ ```
38
+
39
+ Replace `'your_subdomain'` and `'YourPublicKeyHere'` with your actual Outseta subdomain and public key. The public key
40
+ can be retrieved by logging in to your Outseta account and navigating to "Auth" -> "Sign up and Login", and expanding
41
+ the "Show advanced options" panel inside the "Login settings" section. The last section will be the "JWT Key" card,
42
+ containing the public key used to validate the signature on Outseta JWTs.
43
+
44
+ ### User Model
45
+
46
+ #### Adding Necessary Fields
47
+
48
+ Add the necessary fields to your User model by generating a migration:
49
+
50
+ ```bash
51
+ $ rails generate migration AddFieldsToUser email:string outseta_uid:string name:string account_uid:string
52
+ ```
53
+
54
+ And then migrate the database:
55
+
56
+ ```bash
57
+ $ rails db:migrate
58
+ ```
59
+
60
+ #### Updating the User Model
61
+
62
+ Update the User model (`app/models/user.rb`) to include the following static `from_outseta_omniauth` method:
63
+
64
+ ```ruby
65
+ class User < ApplicationRecord
66
+ devise :trackable, :rememberable, :timeoutable, :omniauthable, omniauth_providers: [:outseta]
67
+
68
+ def self.from_outseta_omniauth(auth)
69
+ where(outseta_uid: auth.uid).first_or_create do |user|
70
+ user.email = auth.info.email
71
+ user.name = auth.info.name
72
+ user.account_uid = auth.extra.account_uid
73
+ end
74
+ end
75
+ end
76
+ ```
77
+
78
+ ### Omniauth Callbacks Controller
79
+
80
+ Create or update the Omniauth Callbacks Controller (`app/controllers/users/omniauth_callbacks_controller.rb`) to include
81
+ the following:
82
+
83
+ ```ruby
84
+ module Users
85
+ class OmniauthCallbacksController < Devise::OmniauthCallbacksController
86
+ def outseta
87
+ @user = User.from_outseta_omniauth(request.env["omniauth.auth"])
88
+
89
+ if @user.persisted?
90
+ flash[:notice] = I18n.t "devise.omniauth_callbacks.success", kind: "Outseta"
91
+ sign_in_and_redirect @user, event: :authentication
92
+ else
93
+ session["devise.outseta_data"] = request.env["omniauth.auth"].except(:extra)
94
+ redirect_to new_user_registration_url
95
+ end
96
+ end
97
+ end
98
+ end
99
+ ```
100
+
101
+ ### Routes
102
+
103
+ Ensure your `config/routes.rb` file includes an override for the Omniauth Callbacks Controller. If not, add the following:
104
+
105
+ ```ruby
106
+ Rails.application.routes.draw do
107
+ devise_for :users, controllers: { omniauth_callbacks: "users/omniauth_callbacks" }
108
+ end
109
+ ```
110
+
111
+ ## Development
112
+
113
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake test` to run the tests. You can
114
+ also run `bin/console` for an interactive prompt that will allow you to experiment.
115
+
116
+ To install this gem onto your local machine, run `bundle exec rake install`. Releases are made automatically using
117
+ [GitHub Actions and conventional commits](https://andrewm.codes/blog/automating-ruby-gem-releases-with-github-actions/).
118
+
119
+ ## Contributing
120
+
121
+ Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/omniauth-outseta. This project is
122
+ intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the
123
+ [code of conduct](https://github.com/tiltcamp/omniauth-outseta/blob/master/CODE_OF_CONDUCT.md).
124
+
125
+ ## License
126
+
127
+ The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
128
+
129
+ ## Code of Conduct
130
+
131
+ Everyone interacting in the Omniauth::Outseta project's codebases, issue trackers, chat rooms and mailing lists is
132
+ expected to follow the [code of conduct](https://github.com/tiltcamp/omniauth-outseta/blob/master/CODE_OF_CONDUCT.md).
data/Rakefile ADDED
@@ -0,0 +1,14 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "bundler/gem_tasks"
4
+ require "rake/testtask"
5
+
6
+ Rake::TestTask.new(:test) do |t|
7
+ t.libs << "test"
8
+ t.libs << "lib"
9
+ t.test_files = FileList["test/**/test_*.rb"]
10
+ end
11
+
12
+ require "standard/rake"
13
+
14
+ task default: %i[test standard]
@@ -0,0 +1,7 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Omniauth
4
+ module Outseta
5
+ VERSION = "1.0.1"
6
+ end
7
+ end
@@ -0,0 +1,4 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "outseta/version"
4
+ require_relative "strategies/outseta"
@@ -0,0 +1,63 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "jwt"
4
+ require "omniauth"
5
+ require "openssl"
6
+
7
+ module OmniAuth
8
+ module Strategies
9
+ class Outseta
10
+ include OmniAuth::Strategy
11
+
12
+ args [:subdomain, :jwt_public_key]
13
+
14
+ def request_phase
15
+ redirect "https://#{options.subdomain}.outseta.com/auth?authenticationCallbackUrl=#{CGI.escape(callback_url)}"
16
+ end
17
+
18
+ uid { raw_info[:sub] }
19
+
20
+ info do
21
+ {
22
+ name: raw_info[:name],
23
+ email: raw_info[:email],
24
+ first_name: raw_info[:given_name],
25
+ last_name: raw_info[:family_name]
26
+ }
27
+ end
28
+
29
+ credentials do
30
+ {
31
+ token: access_token,
32
+ expires: true,
33
+ expires_at: raw_info[:exp]
34
+ }
35
+ end
36
+
37
+ extra do
38
+ {
39
+ raw_info: raw_info,
40
+ account_uid: raw_info[:"outseta:accountUid"],
41
+ is_primary: raw_info[:"outseta:isPrimary"] == "1",
42
+ subscription_uid: raw_info[:"outseta:subscriptionUid"],
43
+ plan_uid: raw_info[:"outseta:planUid"],
44
+ addon_uids: raw_info[:"outseta:addOnUids"]
45
+ }
46
+ end
47
+
48
+ private
49
+
50
+ def jwt_public_key
51
+ @jwt_public_key ||= OpenSSL::X509::Certificate.new(options.jwt_public_key).public_key
52
+ end
53
+
54
+ def access_token
55
+ @access_token ||= request.params["access_token"]
56
+ end
57
+
58
+ def raw_info
59
+ @raw_info ||= ::JWT.decode(access_token, jwt_public_key, true, {algorithm: "RS256"})[0].deep_symbolize_keys
60
+ end
61
+ end
62
+ end
63
+ end
@@ -0,0 +1,42 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "lib/omniauth/outseta/version"
4
+
5
+ Gem::Specification.new do |spec|
6
+ spec.name = "omniauth-outseta"
7
+ spec.version = Omniauth::Outseta::VERSION
8
+ spec.authors = ["TiltCamp"]
9
+ spec.email = ["hello@tiltcamp.com"]
10
+
11
+ spec.summary = "Use Outseta with OmniAuth."
12
+ spec.description = "Enables the use of Outseta as an authentication provider in combination with Devise and/or Omniauth."
13
+ spec.homepage = "https://github.com/tiltcamp/omniauth-outseta"
14
+ spec.license = "MIT"
15
+ spec.required_ruby_version = ">= 3.0.6"
16
+
17
+ spec.metadata = {
18
+ "bug_tracker_uri" => "#{spec.homepage}/issues",
19
+ "changelog_uri" => "#{spec.homepage}/blob/main/CHANGELOG.md",
20
+ "documentation_uri" => spec.homepage.to_s,
21
+ "homepage_uri" => spec.homepage.to_s,
22
+ "source_code_uri" => spec.homepage.to_s
23
+ }
24
+
25
+ # Specify which files should be added to the gem when it is released.
26
+ # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
27
+ spec.files = Dir.chdir(__dir__) do
28
+ `git ls-files -z`.split("\x0").reject do |f|
29
+ (File.expand_path(f) == __FILE__) || f.start_with?(*%w[bin/ test/ spec/ features/ .git .circleci appveyor])
30
+ end
31
+ end
32
+ spec.bindir = "exe"
33
+ spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
34
+ spec.require_paths = ["lib"]
35
+
36
+ spec.add_dependency "jwt", "~> 2.7"
37
+ spec.add_dependency "omniauth", "~> 1.9.2"
38
+ spec.add_dependency "openssl", "~> 3.1.0"
39
+
40
+ # For more information and examples about making a new gem, check out our
41
+ # guide at: https://bundler.io/guides/creating_gem.html
42
+ end
@@ -0,0 +1,6 @@
1
+ module Omniauth
2
+ module Outseta
3
+ VERSION: String
4
+ # See the writing guide of rbs: https://github.com/ruby/rbs#guides
5
+ end
6
+ end
metadata ADDED
@@ -0,0 +1,105 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: omniauth-outseta
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.0.1
5
+ platform: ruby
6
+ authors:
7
+ - TiltCamp
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2023-05-23 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: jwt
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '2.7'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '2.7'
27
+ - !ruby/object:Gem::Dependency
28
+ name: omniauth
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: 1.9.2
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: 1.9.2
41
+ - !ruby/object:Gem::Dependency
42
+ name: openssl
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: 3.1.0
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: 3.1.0
55
+ description: Enables the use of Outseta as an authentication provider in combination
56
+ with Devise and/or Omniauth.
57
+ email:
58
+ - hello@tiltcamp.com
59
+ executables: []
60
+ extensions: []
61
+ extra_rdoc_files: []
62
+ files:
63
+ - ".ruby-version"
64
+ - ".standard.yml"
65
+ - CHANGELOG.md
66
+ - CODE_OF_CONDUCT.md
67
+ - Gemfile
68
+ - Gemfile.lock
69
+ - LICENSE.txt
70
+ - README.md
71
+ - Rakefile
72
+ - lib/omniauth/outseta.rb
73
+ - lib/omniauth/outseta/version.rb
74
+ - lib/omniauth/strategies/outseta.rb
75
+ - omniauth-outseta.gemspec
76
+ - sig/omniauth/outseta.rbs
77
+ homepage: https://github.com/tiltcamp/omniauth-outseta
78
+ licenses:
79
+ - MIT
80
+ metadata:
81
+ bug_tracker_uri: https://github.com/tiltcamp/omniauth-outseta/issues
82
+ changelog_uri: https://github.com/tiltcamp/omniauth-outseta/blob/main/CHANGELOG.md
83
+ documentation_uri: https://github.com/tiltcamp/omniauth-outseta
84
+ homepage_uri: https://github.com/tiltcamp/omniauth-outseta
85
+ source_code_uri: https://github.com/tiltcamp/omniauth-outseta
86
+ post_install_message:
87
+ rdoc_options: []
88
+ require_paths:
89
+ - lib
90
+ required_ruby_version: !ruby/object:Gem::Requirement
91
+ requirements:
92
+ - - ">="
93
+ - !ruby/object:Gem::Version
94
+ version: 3.0.6
95
+ required_rubygems_version: !ruby/object:Gem::Requirement
96
+ requirements:
97
+ - - ">="
98
+ - !ruby/object:Gem::Version
99
+ version: '0'
100
+ requirements: []
101
+ rubygems_version: 3.4.10
102
+ signing_key:
103
+ specification_version: 4
104
+ summary: Use Outseta with OmniAuth.
105
+ test_files: []