forked from pengwynn/gowalla
-
Notifications
You must be signed in to change notification settings - Fork 1
/
gowalla.gemspec
28 lines (24 loc) · 1.06 KB
/
gowalla.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
# -*- encoding: utf-8 -*-
require File.expand_path("../lib/gowalla/version", __FILE__)
Gem::Specification.new do |s|
s.name = %q{gowalla}
s.version = Gowalla::VERSION
s.authors = ["Wynn Netherland", "Eric Hutzelman"]
s.email = %q{[email protected]}
s.summary = %q{Wrapper for the Gowalla API}
s.description = %q{Ruby wrapper for the Gowalla API}
s.homepage = %q{http://wynnnetherland.com/projects/gowalla/}
s.add_dependency "oauth2"
s.add_dependency "faraday", "~> 0.4.5"
s.add_dependency "faraday_middleware", "~> 0.1.0"
s.add_development_dependency "shoulda", "~> 2.10.0"
s.add_development_dependency "jnunemaker-matchy", "~> 0.4.0"
s.add_development_dependency "fakeweb"
s.add_development_dependency "bundler", ">= 1.0.0"
s.required_rubygems_version = ">= 1.3.6"
s.platform = Gem::Platform::RUBY
s.require_path = 'lib'
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files`.split("\n").map{|f| f =~ /^bin\/(.*)/ ? $1 : nil}.compact
end