-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathomniauth-dotloop.gemspec
More file actions
24 lines (20 loc) · 946 Bytes
/
omniauth-dotloop.gemspec
File metadata and controls
24 lines (20 loc) · 946 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
require File.expand_path('lib/omniauth-dotloop/version', __dir__)
Gem::Specification.new do |gem|
gem.authors = 'Contactually'
gem.email = 'api@contactually.com'
gem.description = 'OmniAuth OAuth2 strategy for Contactually.'
gem.summary = gem.description
gem.homepage = 'https://github.com/dotloop/omniauth-dotloop'
gem.licenses = %w[MIT]
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")
gem.name = 'omniauth-dotloop'
gem.require_paths = %w[lib]
gem.version = OmniAuth::Dotloop::VERSION
gem.add_dependency 'omniauth-oauth2', '~> 1.6.0'
gem.add_development_dependency 'rack-test'
gem.add_development_dependency 'rake'
gem.add_development_dependency 'rspec'
gem.add_development_dependency 'rubocop'
end