-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathgplus.gemspec
26 lines (22 loc) · 1.09 KB
/
gplus.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
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/gplus/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Nicholas Firth-McCoy"]
gem.email = ["[email protected]"]
gem.description = %q{A complete implementation of the Google plus API for Ruby}
gem.summary = %q{Google+ API implementation with support for authorized requests, People, and Activities}
gem.homepage = "https://github.com/nfm/gplus"
gem.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
gem.files = `git ls-files`.split("\n")
gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
gem.name = "gplus"
gem.require_paths = ["lib"]
gem.version = Gplus::VERSION
gem.required_rubygems_version = Gem::Requirement.new('>= 1.3.6')
gem.add_runtime_dependency 'multi_json', '~> 1.0'
gem.add_runtime_dependency 'oauth2', '~> 0.5'
gem.add_development_dependency 'rspec'
gem.add_development_dependency 'webmock'
gem.add_development_dependency 'simplecov'
gem.add_development_dependency 'yard'
end