This repository was archived by the owner on Oct 7, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathipaws.gemspec
More file actions
38 lines (32 loc) · 1.68 KB
/
ipaws.gemspec
File metadata and controls
38 lines (32 loc) · 1.68 KB
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
33
34
35
36
37
38
# coding: utf-8
lib = File.expand_path('../lib/', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'ipaws/version'
Gem::Specification.new do |gem|
gem.required_ruby_version = '>=2.2.0'
gem.name = 'ipaws'
gem.version = Ipaws::VERSION
gem.authors = ['BaneOfSerenity', 'Brad Cantin', 'Jonathan Chan']
gem.email = ['thowe.dev@gmail.com', 'brad.cantin@gmail.com', 'jc@jmccc.com']
gem.description = %q{
Dev/Devops tool for listing and ssh-ing into secure private-ip only ec2 instances generated
using Elastic Beanstalk. Supports filtering IPs by different projects, environments, and
blue-green active/inactive flags for the most busiest of devops staff ;-). Supports SSH-ing
using different ssh proxy configurations.
}
gem.summary = %q{AWS EC2 IP Address CLI Management Tool}
gem.homepage = 'https://www.github.com/Malwarebytes/ipaws'
gem.license = 'MIT'
gem.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
gem.bindir = ['bin']
gem.executables = gem.files.grep(%r{^bin/}) { |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.require_paths = ['lib']
gem.add_development_dependency 'bundler', '~> 1.12'
gem.add_development_dependency 'rake', '~> 10.0'
gem.add_development_dependency "rspec", "~> 3.0"
gem.add_development_dependency "pry"
gem.add_runtime_dependency 'thor', '~> 0.19'
gem.add_runtime_dependency 'awesome_print', '~> 1.6'
gem.add_runtime_dependency 'aws-sdk', '~>2.3'
end