updated for release files
parent
5da4c4539d
commit
3e10962c14
|
@ -1,7 +1,7 @@
|
||||||
PATH
|
PATH
|
||||||
remote: .
|
remote: .
|
||||||
specs:
|
specs:
|
||||||
omniauth-keycloak (1.0.0)
|
omniauth-keycloak (1.0.1)
|
||||||
json-jwt (~> 1.9.4)
|
json-jwt (~> 1.9.4)
|
||||||
omniauth (~> 1.8.1)
|
omniauth (~> 1.8.1)
|
||||||
omniauth-oauth2 (~> 1.5.0)
|
omniauth-oauth2 (~> 1.5.0)
|
||||||
|
@ -18,7 +18,7 @@ GEM
|
||||||
public_suffix (>= 2.0.2, < 4.0)
|
public_suffix (>= 2.0.2, < 4.0)
|
||||||
aes_key_wrap (1.0.1)
|
aes_key_wrap (1.0.1)
|
||||||
bindata (2.4.4)
|
bindata (2.4.4)
|
||||||
concurrent-ruby (1.0.5)
|
concurrent-ruby (1.1.3)
|
||||||
crack (0.4.3)
|
crack (0.4.3)
|
||||||
safe_yaml (~> 1.0.0)
|
safe_yaml (~> 1.0.0)
|
||||||
diff-lcs (1.3)
|
diff-lcs (1.3)
|
||||||
|
@ -52,7 +52,7 @@ GEM
|
||||||
oauth2 (~> 1.1)
|
oauth2 (~> 1.1)
|
||||||
omniauth (~> 1.2)
|
omniauth (~> 1.2)
|
||||||
public_suffix (3.0.3)
|
public_suffix (3.0.3)
|
||||||
rack (2.0.5)
|
rack (2.0.6)
|
||||||
rake (10.5.0)
|
rake (10.5.0)
|
||||||
rspec (3.8.0)
|
rspec (3.8.0)
|
||||||
rspec-core (~> 3.8.0)
|
rspec-core (~> 3.8.0)
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
module Omniauth
|
module Omniauth
|
||||||
module Keycloak
|
module Keycloak
|
||||||
VERSION = "1.0.0"
|
VERSION = "1.0.1"
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -12,10 +12,16 @@ Gem::Specification.new do |spec|
|
||||||
spec.required_rubygems_version = '>= 1.3.5'
|
spec.required_rubygems_version = '>= 1.3.5'
|
||||||
spec.required_ruby_version = '>= 2.2'
|
spec.required_ruby_version = '>= 2.2'
|
||||||
|
|
||||||
|
# Specify which files should be added to the gem when it is released.
|
||||||
|
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
||||||
|
spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
|
||||||
|
`git ls-files -z`.split("\x0")
|
||||||
|
end
|
||||||
|
|
||||||
|
spec.bindir = "exe"
|
||||||
|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
||||||
spec.require_paths = ["lib"]
|
spec.require_paths = ["lib"]
|
||||||
gem.executables = `git ls-files -- bin/*`.split("\n").collect { |f| File.basename(f) }
|
|
||||||
gem.files = `git ls-files`.split("\n")
|
|
||||||
gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
|
||||||
|
|
||||||
spec.add_dependency "omniauth", "~> 1.8.1"
|
spec.add_dependency "omniauth", "~> 1.8.1"
|
||||||
spec.add_dependency "omniauth-oauth2", "~> 1.5.0"
|
spec.add_dependency "omniauth-oauth2", "~> 1.5.0"
|
||||||
|
|
Loading…
Reference in New Issue