-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathomniauth-kit-oauth2.gemspec
More file actions
25 lines (20 loc) · 976 Bytes
/
omniauth-kit-oauth2.gemspec
File metadata and controls
25 lines (20 loc) · 976 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
require_relative "lib/omniauth/kit_oauth2/version"
Gem::Specification.new do |spec|
spec.name = "omniauth-kit-oauth2"
spec.version = Omniauth::Kit::Oauth2::VERSION
spec.authors = [ "Kit" ]
spec.email = [ "engineering@kit.com" ]
spec.homepage = "https://developers.kit.com"
spec.summary = "Allows authenticating with Kit V4 API."
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = "https://github.com/Kit/omniauth-kit-oauth2/"
spec.metadata["changelog_uri"] = "https://github.com/Kit/omniauth-kit-oauth2/"
spec.files = Dir.chdir(File.expand_path(__dir__)) do
Dir["{lib}/**/*", "LICENSE", "Rakefile", "README.md"]
end
spec.add_runtime_dependency "omniauth", "~> 2.1"
spec.add_runtime_dependency "omniauth-oauth2", "~> 1.8"
spec.add_development_dependency "debug", "~> 1.10"
spec.add_development_dependency "rspec", "~> 3.13"
spec.add_development_dependency "rake", "~> 13.2"
end