-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathomniauth-datadog.gemspec
28 lines (22 loc) · 1.06 KB
/
omniauth-datadog.gemspec
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
26
27
28
require_relative "lib/omniauth-datadog/version"
Gem::Specification.new do |spec|
spec.name = "omniauth-datadog"
spec.version = OmniAuth::Datadog::VERSION
spec.authors = ["Vantage Engineering"]
spec.email = ["[email protected]"]
spec.require_paths = %w[lib]
spec.summary = "OmniAuth OAUTH2 Strategy for Datadog."
spec.description = "OmniAuth OAUTH2 Strategy for Datadog."
spec.homepage = "https://github.com/vantage-sh/omniauth-datadog"
spec.license = "MIT"
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = "https://github.com/vantage-sh/omniauth-datadog"
spec.executables = `git ls-files -- bin/*`.split("\n").collect { |f| File.basename(f) }
spec.files = `git ls-files`.split("\n")
spec.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
# Uncomment to register a new dependency of your gem
spec.add_dependency "omniauth-oauth2", "~> 1.8.0"
spec.add_development_dependency "bundler", "~> 2.0"
spec.add_development_dependency "rake"
spec.add_development_dependency "rspec"
end