forked from heroku/legacy-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
heroku.gemspec
32 lines (28 loc) · 1.33 KB
/
heroku.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
27
28
29
30
31
32
$:.unshift File.expand_path("../lib", __FILE__)
require "heroku/version"
Gem::Specification.new do |gem|
gem.name = "heroku"
gem.version = Heroku::VERSION
gem.author = "Heroku"
gem.email = "[email protected]"
gem.homepage = "http://heroku.com/"
gem.summary = "Client library and CLI to deploy apps on Heroku."
gem.description = "Client library and command-line tool to deploy and manage apps on Heroku."
gem.executables = "heroku"
gem.license = "MIT"
gem.required_ruby_version = ">= 1.9.0"
gem.post_install_message = <<-MESSAGE
! The `heroku` gem has been deprecated and replaced with the Heroku Toolbelt.
! Download and install from: https://toolbelt.heroku.com
! For API access, see: https://github.com/heroku/heroku.rb
MESSAGE
gem.files = %x{ git ls-files }.split("\n").select { |d| d =~ %r{^(LICENSE|README|bin/|data/|ext/|lib/|spec/|test/)} }
gem.add_dependency "heroku-api", "0.4.2"
gem.add_dependency "launchy", "2.4.3"
gem.add_dependency "netrc", "0.10.3"
gem.add_dependency "rest-client", "1.6.8"
gem.add_dependency "rubyzip", "1.1.7"
gem.add_dependency "multi_json", "1.11.2"
gem.add_dependency "net-ssh-gateway", "1.2.0"
gem.add_dependency "net-ssh", "2.9.2" # freeze net-ssh to 2.9.2 to preserve ruby 1.9.3 support
end