File: omniauth-oauth2-generic.gemspec

package info (click to toggle)
ruby-omniauth-oauth2-generic 0.2.2-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 136 kB
  • ctags: 10
  • sloc: ruby: 155; makefile: 6; sh: 4
file content (31 lines) | stat: -rw-r--r-- 1,166 bytes parent folder | download | duplicates (2)
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
31
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'omniauth-oauth2-generic/version'

Gem::Specification.new do |spec|
  spec.name          = "omniauth-oauth2-generic"
  spec.version       = Omniauth::OAuth2Generic::VERSION
  spec.authors       = ["Joe Marty"]
  spec.email         = ["jmarty@iexposure.com"]

  spec.summary       = %q{Generic, Configurable OmniAuth Strategy for OAuth2 providers}
  spec.description   = spec.summary
  spec.homepage      = "https://gitlab.com/satorix/omniauth-oauth2-generic"
  spec.license       = "MIT"

  spec.files         = `git ls-files -z`.split("\x0").reject do |f|
    f.match(%r{^(test|spec|features)/})
  end
  spec.bindir        = "bin"
  spec.executables   = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
  spec.require_paths = ["lib"]

  spec.add_dependency "omniauth-oauth2", "~> 1.0"

  spec.add_development_dependency "bundler", "~> 1.13"
  spec.add_development_dependency "rake", "~> 10.0"
  spec.add_development_dependency "rspec", "~> 3.1"
  spec.add_development_dependency "rack-test"
  spec.add_development_dependency "webmock"
end