-
Notifications
You must be signed in to change notification settings - Fork 92
/
Copy pathomniauth-salesforce.gemspec
executable file
·25 lines (22 loc) · 1.06 KB
/
omniauth-salesforce.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
require File.expand_path('../lib/omniauth-salesforce/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ['Richard Vanhook']
gem.email = ['[email protected]']
gem.description = 'OmniAuth strategy for salesforce.com.'
gem.summary = 'OmniAuth strategy for salesforce.com.'
gem.homepage = 'https://github.com/realdoug/omniauth-salesforce'
gem.executables = `git ls-files -- bin/*`.split('\n').map { |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-salesforce'
gem.require_paths = ['lib']
gem.version = OmniAuth::Salesforce::VERSION
gem.license = 'MIT'
gem.add_dependency 'omniauth', '~> 1.0'
gem.add_dependency 'omniauth-oauth2', '>= 1.5.0'
gem.required_ruby_version = '>= 2.1.0'
gem.add_development_dependency 'rack-test'
gem.add_development_dependency 'rspec', '~> 2.7'
gem.add_development_dependency 'simplecov'
gem.add_development_dependency 'webmock'
end