omniauth-signalwire 0.1.0 → 0.2.0
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 +4 -4
- data/CHANGELOG.md +21 -0
- data/lib/omniauth-signalwire/version.rb +1 -1
- data/omniauth-signalwire.gemspec +4 -13
- metadata +7 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: cff92a1ba4006038f465e91ab072473a1a9ecb940a5215a8ee6db9231e2a92e7
|
|
4
|
+
data.tar.gz: bc5a35d1592762d3836e7a9fa1b73948d9a0e7be4fbe920ee83936ae1f27c88c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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
|
data/omniauth-signalwire.gemspec
CHANGED
|
@@ -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/
|
|
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/
|
|
22
|
-
|
|
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.
|
|
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/
|
|
107
|
+
homepage: https://github.com/ryanwi/omniauth-signalwire
|
|
106
108
|
licenses:
|
|
107
109
|
- MIT
|
|
108
110
|
metadata:
|
|
109
|
-
homepage_uri: https://github.com/
|
|
110
|
-
source_code_uri: https://github.com/
|
|
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:
|