forked from codingjester/tumblr_client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tumblr.gemspec
22 lines (21 loc) · 899 Bytes
/
tumblr.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# encoding: utf-8
Gem::Specification.new do |gem|
gem.add_dependency 'faraday'
gem.add_dependency 'faraday_middleware'
gem.add_dependency 'json'
gem.add_development_dependency 'rake'
gem.add_development_dependency 'rspec'
gem.add_development_dependency 'webmock'
gem.authors = ["John Bunting"]
gem.description = %q{A Ruby wrapper for the Tumblr v2 API}
gem.email = ['[email protected]']
gem.executables = `git ls-files -- bin/*`.split("\n").map{|f| File.basename(f)}
gem.files = `git ls-files`.split("\n")
gem.homepage = "http://github.com/codingjester/tumblr_client"
gem.name = "tumblr_client"
gem.require_paths = ["lib"]
gem.required_rubygems_version = Gem::Requirement.new('>= 1.3.6')
gem.summary = %q{Tumblr API wrapper}
gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
gem.version = "0.6.7"
end