-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathomniauth-office365.gemspec
25 lines (21 loc) · 1.03 KB
/
omniauth-office365.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-office365/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = 'Jeff Carbonella'
gem.email = '[email protected]'
gem.description = 'OmniAuth OAuth2 strategy for the Office365 v2.0 REST API.'
gem.summary = gem.description
gem.homepage = 'https://github.com/jcarbo/omniauth-office365'
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-office365'
gem.require_paths = %w(lib)
gem.version = OmniAuth::Office365::VERSION
# Lock at 1.3.x due to https://github.com/intridea/omniauth-oauth2/issues/81
gem.add_dependency 'omniauth-oauth2', '~> 1.3.1'
gem.add_development_dependency 'rack-test'
gem.add_development_dependency 'rake'
gem.add_development_dependency 'rspec'
gem.add_development_dependency 'rubocop'
end