-
Notifications
You must be signed in to change notification settings - Fork 0
/
omniauth-strava.gemspec
executable file
·29 lines (26 loc) · 1.17 KB
/
omniauth-strava.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
27
28
29
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'omniauth-strava/version'
Gem::Specification.new do |spec|
spec.name = 'omniauth-strava'
spec.version = Omniauth::Strava::VERSION
spec.authors = ['Andrew Free']
spec.email = ['andrew@schjelderup.org']
spec.description = %q{Strava OAuth strategy for OmniAuth}
spec.summary = %q{Strava OAuth strategy for OmniAuth}
spec.homepage = 'http://strava.github.io/api/'
spec.license = 'MIT'
spec.files = `git ls-files`.split("\n")
spec.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
spec.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
spec.require_paths = ['lib']
spec.add_dependency 'omniauth', '~> 1.0'
spec.add_dependency 'omniauth-oauth2', '~> 1.0'
spec.add_development_dependency 'rspec', '~> 2.7'
spec.add_development_dependency 'bundler', '~> 1.3'
spec.add_development_dependency 'rake'
spec.add_development_dependency 'rack-test'
spec.add_development_dependency 'simplecov'
spec.add_development_dependency 'webmock'
end