-
Notifications
You must be signed in to change notification settings - Fork 86
/
weibo_2.gemspec
25 lines (21 loc) · 1.06 KB
/
weibo_2.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
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/weibo_2/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["simsicon"]
gem.email = ["simsicon@gmail.com"]
gem.description = %q{WeioOAuth2 is a Ruby gem that provides a wrapper for interacting with sina weibo's v2 API,
which is currently the latest version. The output data format is Hashie::Mash}
gem.summary = "A oauth2 gem for weibo"
gem.homepage = "http://github.com/simsicon/weibo_2"
gem.files = `git ls-files`.split($\)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.name = "weibo_2"
gem.require_paths = ["lib"]
gem.version = WeiboOAuth2::Version
gem.add_development_dependency "rspec", "~> 2.6"
gem.add_runtime_dependency 'oauth2', "~> 0.9.1"
gem.add_runtime_dependency 'hashie', "~> 2.0.4"
gem.add_runtime_dependency 'multi_json' , "~> 1"
gem.add_runtime_dependency 'rest-client', "~> 1.7.3"
end