forked from stewartmatheson/polar
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpolar-renren.gemspec
28 lines (24 loc) · 966 Bytes
/
polar-renren.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
lib = File.expand_path('../lib/', __FILE__)
$:.unshift lib unless $:.include?(lib)
require 'polar/version'
Gem::Specification.new do |spec|
spec.name = "polar-renren"
spec.version = Polar::Version.to_s
spec.summary = "Polar is a wrapper around the Renren social network's restful api."
spec.description = <<-EOF
Polar is an API wrapper for the Renren social network.
EOF
spec.files = Dir["{lib/**/*,spec/*}"] + %w{README.markdown}
spec.require_path = "lib"
spec.extra_rdoc_files = %w{README.markdown}
spec.test_files = Dir["spec/*_spec.rb"]
spec.author = "Lei, Zhi-Qiang, Stewart Matheson"
spec.email = "[email protected]"
spec.homepage = "https://github.com/stewartmatheson/polar"
spec.platform = Gem::Platform::RUBY
spec.license = "BSD"
spec.add_development_dependency "rspec"
spec.add_development_dependency "webmock"
spec.add_runtime_dependency "faraday", "~> 0.8"
spec.add_runtime_dependency "faraday_middleware"
end