Sha256: 527134ed98c95596920baade1b8dd87b02708d94ffc96c7de49d87ff1d2accb9
Contents?: true
Size: 926 Bytes
Versions: 2
Compression:
Stored size: 926 Bytes
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"] spec.add_runtime_dependency "aws-sdk" spec.add_runtime_dependency "thor" end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
ebfly-0.0.6 | ebfly.gemspec |
ebfly-0.0.5 | ebfly.gemspec |