-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathombu_labs-auth.gemspec
30 lines (26 loc) · 1.28 KB
/
ombu_labs-auth.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
29
30
require_relative "lib/ombu_labs/auth/version"
Gem::Specification.new do |spec|
spec.name = "ombu_labs-auth"
spec.version = OmbuLabs::Auth::VERSION
spec.authors = ["OmbuLabs"]
spec.email = ["[email protected]", "[email protected]"]
spec.homepage = "https://github.com/fastruby/ombu_labs-auth"
spec.summary = "OmbuLabs internal authentication gem"
spec.description = "Helps us authenticate teammates using GitHub Oauth and Devise"
spec.license = "MIT"
spec.metadata["allowed_push_host"] = "https://rubygems.org"
# spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = "https://github.com/fastruby/ombu_labs-auth"
spec.metadata["changelog_uri"] = "https://github.com/fastruby/ombu_labs-auth/blob/main/CHANGELOG.md"
spec.files = Dir.chdir(File.expand_path(__dir__)) do
Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.md"]
end
spec.add_dependency "rails", ">= 6.0"
spec.add_dependency "devise", "~> 4.8.1"
spec.add_dependency "omniauth", "~> 2.1.0"
spec.add_dependency "omniauth-github", "~> 2.0.0"
spec.add_dependency "omniauth-rails_csrf_protection"
spec.add_development_dependency "capybara"
spec.add_development_dependency "webdrivers"
spec.add_development_dependency "puma"
end