-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathomniauth-teamsnap.gemspec
26 lines (23 loc) · 1.04 KB
/
omniauth-teamsnap.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
26
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "omniauth-teamsnap/version"
Gem::Specification.new do |spec|
spec.name = "omniauth-teamsnap"
spec.version = OmniAuth::Teamsnap::VERSION
spec.description = %q{Official OmniAuth strategy for TeamSnap}
spec.summary = %q{Official OmniAuth strategy for TeamSnap}
spec.authors = ["Ryan Williams"]
spec.email = ["dev@teamsnap.com"]
spec.homepage = "https://github.com/teamsnap/omniauth-teamsnap"
spec.license = "MIT"
spec.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
spec.files = `git ls-files`.split("\n")
spec.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
spec.require_paths = ["lib"]
spec.add_dependency "omniauth", "~> 1.8"
spec.add_dependency "omniauth-oauth2", "~> 1.5"
spec.add_development_dependency "rspec", "~> 3.8"
spec.add_development_dependency "rack-test"
spec.add_development_dependency "simplecov"
spec.add_development_dependency "webmock"
end