Sha256: 68eb61a19364e55f30f86625638a8585a35e1b0cfd8ce0820bee168f1a3b9f0e

Contents?: true

Size: 1.01 KB

Versions: 1

Compression:

Stored size: 1.01 KB

Contents

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

Gem::Specification.new do |spec|
  spec.name          = "ebfly"
  spec.version       = Ebfly::VERSION
  spec.authors       = ["Kazuyuki Honda"]
  spec.email         = ["hakobera@gmail.com"]
  spec.summary       = %q{Simple command line interface for AWS ElasticBeanstalk}
  spec.description   = %q{Simple command line interface for AWS ElasticBeanstalk}
  spec.homepage      = "https://github.com/hakobera/ebfly"
  spec.license       = "Apache License, Version 2.0"

  spec.files         = `git ls-files -z`.split("\x0")
  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"]

  # http://ruby.awsblog.com/post/TxFKSK2QJE6RPZ/Upcoming-Stable-Release-of-AWS-SDK-for-Ruby-Version-2
  spec.add_runtime_dependency "aws-sdk", "< 2.0"
  spec.add_runtime_dependency "thor"
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
ebfly-0.1.5 ebfly.gemspec