-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgooglepub.gemspec
24 lines (22 loc) · 1003 Bytes
/
googlepub.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
require File.expand_path(File.dirname(__FILE__) + '/lib/googlepub.rb')
Gem::Specification.new do |s|
s.name = 'googlepub'
s.version = Googlepub::VERSION
s.date = '2015-10-25'
s.summary = "GooglePlay App Publisher!"
s.description = "CLI googlepub. Automate everything related to Google App Publishing: APK, Store Listing and In-App Purchases."
s.author = ["Keshav Goel"]
s.email = '[email protected]'
s.require_paths = ['lib']
s.executables = ['googlepub']
s.files = Dir['lib/**/*', 'bin/*','googlepub.gemspec'] + %w( README.md LICENSE )
s.homepage = 'https://github.com/thekeshavgoel/googlepub'
s.license = 'MIT'
s.required_ruby_version = '>= 1.9.2'
s.add_runtime_dependency 'base64url', '~> 1.0'
s.add_runtime_dependency 'jwt', '~> 1.5'
s.add_runtime_dependency 'json-jwt', '~> 1'
s.add_runtime_dependency 'httparty', '~> 0'
s.add_runtime_dependency 'httmultiparty', '~> 0'
s.add_runtime_dependency 'colorize', '~> 0'
end