Sha256: 2725d0e4bd0df9a3a8e3e3ccdd1c96bba2a12a89327f119b824935d7f7f24654

Contents?: true

Size: 932 Bytes

Versions: 1

Compression:

Stored size: 932 Bytes

Contents

# -*- encoding: utf-8 -*-
root = File.expand_path('../', __FILE__)
lib = "#{root}/lib"

$:.unshift lib unless $:.include?(lib)

Gem::Specification.new do |s|
  s.name        = "ec2_name"
  s.version     = '0.1.0'
  s.platform    = Gem::Platform::RUBY
  s.authors     = ["Tung Nguyen"]
  s.email       = ["tongueroo@gmail.com"]
  s.homepage    = "http://github.com/tongueroo/ec2_name"
  s.summary     = %q{Quick way to tag the name of the instance so that it shows up on aws console}
  s.description = %q{Quick way to tag the name of the instance so that it shows up on aws console.}

  s.executables = `cd #{root} && git ls-files bin/*`.split("\n").collect { |f| File.basename(f) }
  s.files = `cd #{root} && git ls-files`.split("\n")
  s.require_paths = %w(lib)
  s.test_files = `cd #{root} && git ls-files -- {features,test,spec}/*`.split("\n")

  s.add_dependency "right_aws"

  s.add_development_dependency "rspec", "~> 1.0"
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
ec2_name-0.1.0 ec2_name.gemspec