-
Notifications
You must be signed in to change notification settings - Fork 29
/
klout.gemspec
28 lines (26 loc) · 1.17 KB
/
klout.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
require 'bundler'
require 'bundler/version'
require File.expand_path('lib/klout/version')
Gem::Specification.new do |s|
s.add_runtime_dependency('hashie', '~> 3.0.0')
s.add_runtime_dependency('httparty')
s.add_runtime_dependency('json')
s.add_development_dependency('fakeweb', '>= 1.3.0')
s.add_development_dependency('guard-rspec', '>= 0.7.0')
s.add_development_dependency('rspec', '>= 2.9.0')
s.name = "klout"
s.authors = ["Brian Getting"]
s.description = %q{Implements the complete functionality of the Klout REST API (v2+).}
s.email = ["[email protected]"]
s.executables = `git ls-files -- bin/*`.split("\n").map{|f| File.basename(f)}
s.extra_rdoc_files = ["README.rdoc"]
s.files = `git ls-files`.split("\n")
s.homepage = "http://github.com/tatemae-consultancy/klout"
s.licenses = ["MIT"]
s.require_paths = ["lib"]
s.summary = %q{A library which implements the complete functionality of of the Klout REST API (v2+).}
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.version = Klout::VERSION
s.platform = Gem::Platform::RUBY
s.required_rubygems_version = Gem::Requirement.new('>= 1.3.6') if s.respond_to? :required_rubygems_version=
end