Sha256: 36a666f19a0114b0d594c4db3d10556fb07fa11c8527c97d62c22c821468762c
Contents?: true
Size: 1 KB
Versions: 4
Compression:
Stored size: 1 KB
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require "thor" require "thor/aws/version" Gem::Specification.new do |spec| spec.name = "thor-aws" spec.version = Thor::Aws::VERSION spec.authors = ["y13i"] spec.email = ["email@y13i.com"] spec.summary = %(Thor += AWS) spec.description = %(Thor extension for building CLI to deal with AWS.) spec.homepage = "https://github.com/y13i/thor-aws" spec.license = "MIT" 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_development_dependency "bundler", "~> 1.7" spec.add_development_dependency "rake", "~> 10.0" spec.add_development_dependency "rspec" spec.add_development_dependency "pry" spec.add_dependency "thor" spec.add_dependency "aws-sdk" end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
thor-aws-0.0.4 | thor-aws.gemspec |
thor-aws-0.0.3 | thor-aws.gemspec |
thor-aws-0.0.2 | thor-aws.gemspec |
thor-aws-0.0.1 | thor-aws.gemspec |