forked from simsicon/weibo_2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathweibo_2.gemspec
24 lines (20 loc) · 879 Bytes
/
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
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/weibo_2/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["simsicon"]
gem.email = ["[email protected]"]
gem.description = "A oauth2 gem for weibo"
gem.summary = "A oauth2 gem for weibo"
gem.homepage = ""
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.8.0"
gem.add_runtime_dependency 'hashie', "~> 1.2.0"
gem.add_runtime_dependency 'json' , "~> 1.7.3"
gem.add_runtime_dependency 'rest-client', "~> 1.6.7"
end