omniauth-signalwire 0.1.0 → 0.2.1

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: 004032de30bacd8eac64c2bbc4a3a54355ae54b16e96ff71d9bc2c49c11c6e50
4
+ data.tar.gz: 4af1fb37c8dcd26896946a1a97a112d046c6961d4183bd7aa8c58cb4d580ba01
5
5
  SHA512:
6
- metadata.gz: 53464d07e371b46b501fb6753d8cc540bda3d48cf6ff16bf27f4290e40398a80b7ca510a63386182ff0e2bb154648f6b51f7a8d7356e2c3170c09b9b5ba02a79
7
- data.tar.gz: 7e549735681827a7ccc241c25209fc1dedacec9b4788981047329f6b450dbc2b1abd7144614c09cedca38923d7c6445e7492fb18ea9aed2118ad1403c2c6e7d1
6
+ metadata.gz: 3ceda430351bd8570f5fbae81b0fe3d28d450201cb76e9865ea0633dffc1f654ad537f7f56c9ecf6ee83791c65c3a916f1251f1a30be09c0881bf3e073549f16
7
+ data.tar.gz: 4c4b487410287c2b3c91c4bf360e7f949216d921ade03825362213782b3772b47465fd97a8ebb15471bea5dafd499d13ea4c7884534b3ceb47274a0efdd1a600
data/CHANGELOG.md ADDED
@@ -0,0 +1,26 @@
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
+ ## [0.2.1] - 2024-02-29
11
+
12
+ ### Fixed
13
+
14
+ - Fix `changelog_uri` in gemspec
15
+
16
+ ## [0.2.0] - 2024-02-29
17
+
18
+ ### Added
19
+
20
+ - This CHANGELOG file to keep track of changes.
21
+
22
+ ## [0.1.0] - 2024-02-29
23
+
24
+ ### Added
25
+
26
+ - 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.1"
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/blob/main/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.1
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/blob/main/CHANGELOG.md
111
114
  post_install_message:
112
115
  rdoc_options: []
113
116
  require_paths: