forked from dhaneshnm/omniauth-yelp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathomniauth-yelp.gemspec
24 lines (23 loc) · 1.03 KB
/
omniauth-yelp.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#the gemspec file
Gem::Specification.new do |s|
s.add_dependency 'omniauth', '~> 1.0'
s.add_dependency 'omniauth-oauth2', '~> 1.0'
s.add_dependency 'oauth2', '~> 1.0'
s.name = 'omniauth-yelp'
s.version = '1.0.0'
s.add_development_dependency 'rspec', '~> 2.7'
s.add_development_dependency 'rack-test'
s.add_development_dependency 'webmock'
s.add_development_dependency 'simplecov'
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.homepage = 'https://github.com/dhaneshnm/omniauth-yelp'
s.require_paths = ["lib"]
s.license = "MIT"
s.date = '2014-04-12'
s.summary = "omniauth-yelp!"
s.description = "A simple omniauth gem for Yelp! API"
s.authors = ["Dhanesh Neela Mana"]
s.email = '[email protected]'
s.files = ["lib/omniauth-yelp.rb","lib/omniauth/yelp.rb","lib/omniauth/strategies/yelp.rb","lib/omniauth/yelp/version.rb"]#git ls-files`.split("\n")
end