Sha256: 9f5b0d413c6f678010697ec43d4d05d565d640778d26c004ddc5fa20fa87f21b

Contents?: true

Size: 1.6 KB

Versions: 1

Compression:

Stored size: 1.6 KB

Contents

# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'app42/version'

Gem::Specification.new do |spec|
  spec.required_ruby_version = '>= 1.9.2'
  spec.post_install_message = "Thanks for installing!"
  spec.name          = "app42"
  spec.version       = App42::Version::VERSION::VERSION
  spec.authors       = ["ShepHertz"]
  spec.email         = ["support@shephertz.com"]
  spec.description   = "Client library and command-line tool to deploy and manage apps on App42PaaS."
  spec.summary       = "Client library and command-line tool to deploy and manage apps on App42PaaS Server."
  spec.homepage      = "http://shephertz.com"
  spec.license       = "MIT"
 # FIXME, before release
 #  spec.post_install_message = <<-MESSAGE
 # !    Download and install from: http://rubygems.org/
 # !    For API access, see: https://github.com/shephertz/app42.rb
 #  MESSAGE
  
  spec.files         = `git ls-files`.split($/)
  spec.executables   = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
  spec.test_files    = spec.files.grep(%r{^(test|spec|features)/})
  spec.require_paths = ["lib"]

  spec.add_dependency "bundler", "~> 1.3"
  spec.add_dependency "rake"
  spec.add_dependency "highline", "~> 1.6.18"
  spec.add_dependency "paint", "~> 0.8.6"
  spec.add_dependency "rest-client", "~> 1.6.1"
  spec.add_dependency "json_pure", "= 1.6.6"
  spec.add_dependency "ruby-hmac", "= 0.4.0"
  spec.add_dependency "interact", "~> 0.5.2"
  spec.add_dependency "terminal-table", "~> 1.4.2"
  spec.add_dependency "ipaddress"

  spec.add_development_dependency 'rspec', '~> 2.5'

end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
app42-0.5.3 app42.gemspec