-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathomniauth-mspcfo.gemspec
More file actions
24 lines (20 loc) · 950 Bytes
/
omniauth-mspcfo.gemspec
File metadata and controls
24 lines (20 loc) · 950 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
lib = File.expand_path("../lib", __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "omniauth/mspcfo/version"
Gem::Specification.new do |gem|
gem.authors = ['Kevin Pheasey']
gem.email = ['kevin@kpsoftware.io']
gem.description = "An OmniAuth OAuth2 strategy for MSPCFO."
gem.summary = gem.description
gem.homepage = "https://github.com/mspcfo/omniauth-mspcfo"
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-mspcfo"
gem.require_paths = %w[lib]
gem.version = OmniAuth::Mspcfo::VERSION
gem.add_runtime_dependency 'omniauth', '~> 1.2'
gem.add_runtime_dependency 'omniauth-oauth2', '~> 1.1'
gem.add_development_dependency "bundler", "~> 1.0"
end