Skip to content
This repository was archived by the owner on Jun 29, 2024. It is now read-only.

Commit cb249bf

Browse files
authored
Merge pull request #17 from koshilife/allow-for-omniauth-2.0
release 1.0.0 - allowed for omniauth 2.0 series.
2 parents 1767530 + 78c0e87 commit cb249bf

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# CHANGELOG
22

3+
## 1.0.0
4+
5+
- allowed for omniauth 2.0 series.
6+
37
## 0.3.0
48

59
- be specified dependency for omniauth 1.9.

lib/omniauth-zoom/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22

33
module OmniAuth
44
module Zoom
5-
VERSION = '0.3.0'
5+
VERSION = '1.0.0'
66
end
77
end

lib/omniauth/strategies/zoom.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ def raw_info
4545
end
4646

4747
def callback_url
48-
full_host + script_name + callback_path
48+
full_host + callback_path
4949
end
5050
end
5151
end

omniauth-zoom.gemspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ Gem::Specification.new do |spec|
2828
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
2929
spec.require_paths = ['lib']
3030

31-
spec.add_runtime_dependency 'omniauth', '~> 1.9'
32-
spec.add_runtime_dependency 'omniauth-oauth2', '~> 1.6.0'
31+
spec.add_runtime_dependency 'omniauth', '~> 2.0'
32+
spec.add_runtime_dependency 'omniauth-oauth2', '~> 1.7.1'
3333

3434
spec.add_development_dependency 'bundler'
3535
spec.add_development_dependency 'codecov'

0 commit comments

Comments
 (0)