omniauth-signalwire 0.1.0 → 0.2.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: fe022a40564f239d9bf4a58592d184a6af7d313b98a78089327231c437ab3720
4
- data.tar.gz: 05b024fdc96666498b9ac372249c71fcdb39f1888cf39d7d5d52097c35894448
3
+ metadata.gz: cff92a1ba4006038f465e91ab072473a1a9ecb940a5215a8ee6db9231e2a92e7
4
+ data.tar.gz: bc5a35d1592762d3836e7a9fa1b73948d9a0e7be4fbe920ee83936ae1f27c88c
5
5
  SHA512:
6
- metadata.gz: 53464d07e371b46b501fb6753d8cc540bda3d48cf6ff16bf27f4290e40398a80b7ca510a63386182ff0e2bb154648f6b51f7a8d7356e2c3170c09b9b5ba02a79
7
- data.tar.gz: 7e549735681827a7ccc241c25209fc1dedacec9b4788981047329f6b450dbc2b1abd7144614c09cedca38923d7c6445e7492fb18ea9aed2118ad1403c2c6e7d1
6
+ metadata.gz: 85af2e00992a6894360d27d2688143d87b8fd0595edaac40f79253c1e9978ad9d9c6eb5277a25c948f8c41ccebe45107241371ed18d0c0b1a6c0d25915699cc1
7
+ data.tar.gz: 86d3719ab55886494f9b868572781a59022f4c29fc711246d9cea3884351c76af38a68e642dccbc50656ee1fa3e5b05ea0fd6dedc6f806f5b0d2110158601ac0
data/CHANGELOG.md ADDED
@@ -0,0 +1,21 @@
1
+ # Changelog
2
+
3
+ All notable changes to this project will be documented in this file.
4
+
5
+ The format is based on [Keep a Changelog](http://keepachangelog.com/)
6
+ and this project adheres to [Semantic Versioning](http://semver.org/).
7
+
8
+ ## [Unreleased] - yyyy-mm-dd
9
+
10
+
11
+ ## [0.2.0] - 2024-02-29
12
+
13
+ ### Added
14
+
15
+ - This CHANGELOG file to keep track of changes.
16
+
17
+ ## [0.1.0] - 2024-02-29
18
+
19
+ ### Added
20
+
21
+ - Initial Release
@@ -2,6 +2,6 @@
2
2
 
3
3
  module OmniAuth
4
4
  module SignalWire
5
- VERSION = "0.1.0"
5
+ VERSION = "0.2.0"
6
6
  end
7
7
  end
@@ -3,11 +3,11 @@
3
3
  require File.expand_path("lib/omniauth-signalwire/version", __dir__)
4
4
 
5
5
  Gem::Specification.new do |spec|
6
- spec.authors = ["SignalWire Team"]
6
+ spec.authors = ["SignalWire Team", "Ryan Williams"]
7
7
  spec.email = ["open.source@signalwire.com"]
8
8
  spec.description = "Official OmniAuth strategy for SignalWire."
9
9
  spec.summary = "Official OmniAuth strategy for SignalWire."
10
- spec.homepage = "https://github.com/signalwire/omniauth-signalwire"
10
+ spec.homepage = "https://github.com/ryanwi/omniauth-signalwire"
11
11
  spec.name = "omniauth-signalwire"
12
12
  spec.license = "MIT"
13
13
 
@@ -16,19 +16,10 @@ Gem::Specification.new do |spec|
16
16
  spec.version = OmniAuth::SignalWire::VERSION
17
17
  spec.required_ruby_version = ">= 2.7"
18
18
 
19
- # spec.metadata["allowed_push_host"] = "TODO: Set to your gem server 'https://example.com'"
20
19
  spec.metadata["homepage_uri"] = spec.homepage
21
- spec.metadata["source_code_uri"] = "https://github.com/signalwire/omniauth-signalwire"
22
- # spec.metadata["changelog_uri"] = "TODO: Put your gem's CHANGELOG.md URL here."
20
+ spec.metadata["source_code_uri"] = "https://github.com/ryanwi/omniauth-signalwire"
21
+ spec.metadata["changelog_uri"] = "https://github.com/ryanwi/omniauth-signalwire/CHANGELOG.md"
23
22
 
24
- # Specify which files should be added to the gem when it is released.
25
- # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
26
- # spec.files = Dir.chdir(__dir__) do
27
- # `git ls-files -z`.split("\x0").reject do |f|
28
- # (File.expand_path(f) == __FILE__) ||
29
- # f.start_with?(*%w[bin/ test/ spec/ features/ .git appveyor Gemfile])
30
- # end
31
- # end
32
23
  spec.bindir = "exe"
33
24
  spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
34
25
 
metadata CHANGED
@@ -1,10 +1,11 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: omniauth-signalwire
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - SignalWire Team
8
+ - Ryan Williams
8
9
  autorequire:
9
10
  bindir: exe
10
11
  cert_chain: []
@@ -91,6 +92,7 @@ files:
91
92
  - ".gitignore"
92
93
  - ".rspec"
93
94
  - ".rubocop.yml"
95
+ - CHANGELOG.md
94
96
  - Gemfile
95
97
  - README.md
96
98
  - Rakefile
@@ -102,12 +104,13 @@ files:
102
104
  - omniauth-signalwire.gemspec
103
105
  - spec/omniauth/strategies/signalwire_spec.rb
104
106
  - spec/spec_helper.rb
105
- homepage: https://github.com/signalwire/omniauth-signalwire
107
+ homepage: https://github.com/ryanwi/omniauth-signalwire
106
108
  licenses:
107
109
  - MIT
108
110
  metadata:
109
- homepage_uri: https://github.com/signalwire/omniauth-signalwire
110
- source_code_uri: https://github.com/signalwire/omniauth-signalwire
111
+ homepage_uri: https://github.com/ryanwi/omniauth-signalwire
112
+ source_code_uri: https://github.com/ryanwi/omniauth-signalwire
113
+ changelog_uri: https://github.com/ryanwi/omniauth-signalwire/CHANGELOG.md
111
114
  post_install_message:
112
115
  rdoc_options: []
113
116
  require_paths: