Sha256: 7cae7b4006e15dae3ebba45fd328de3d97fec77fbf444b10aad89e48772f5d83
Contents?: true
Size: 919 Bytes
Versions: 2
Compression:
Stored size: 919 Bytes
Contents
# -*- encoding: utf-8 -*- $:.push File.expand_path("../lib", __FILE__) require "heroku/api/version" Gem::Specification.new do |s| s.name = "heroku-api" s.version = Heroku::API::VERSION s.authors = ["geemus (Wesley Beary)", "Pedro Belo"] s.email = ["wesley@heroku.com", "pedro@heroku.com"] s.homepage = "http://github.com/heroku/heroku.rb" s.license = 'MIT' s.summary = %q{Ruby Client for the Heroku API} s.description = %q{Ruby Client for the Heroku API} s.files = `git ls-files`.split("\n") s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n") s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) } s.require_paths = ["lib"] s.add_runtime_dependency 'excon', '~>0.27' s.add_runtime_dependency 'multi_json', '~>1.8.2' s.add_development_dependency 'minitest' s.add_development_dependency 'rake' end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
heroku-api-0.3.17 | heroku-api.gemspec |
heroku-api-0.3.16 | heroku-api.gemspec |