Sha256: ef54ef9fcc7520d672ae22e122b0aa229b7484c279a1b72640ebda00c215e50e

Contents?: true

Size: 1.75 KB

Versions: 1

Compression:

Stored size: 1.75 KB

Contents

@spec = Gem::Specification.new do |s|
  s.name = "rye"
  s.rubyforge_project = "rye"
  s.version = "0.8.11"
  s.summary = "Rye: Safely run SSH commands on a bunch of machines at the same time (from Ruby)."
  s.description = s.summary
  s.author = "Delano Mandelbaum"
  s.email = "delano@solutious.com"
  s.homepage = "http://solutious.com/"
  
  # = DEPENDENCIES =
  # Add all gem dependencies
  s.add_dependency 'drydock'
  s.add_dependency 'sysinfo'
  s.add_dependency 'storable'
  s.add_dependency 'sysinfo', '>= 0.7.0'
  
  s.add_dependency 'highline', '>= 1.5.1'
  s.add_dependency 'net-ssh', '>= 2.0.13'
  s.add_dependency 'net-scp', '>= 1.0.2'
  #s.add_dependency 'net-ssh-gateway'
  #s.add_dependency 'net-ssh-multi'
  
  # = EXECUTABLES =
  # The list of executables in your project (if any). Don't include the path, 
  # just the base filename.
  s.executables = %w[rye]
  
  # = MANIFEST =
  # The complete list of files to be included in the release. When GitHub packages your gem, 
  # it doesn't allow you to run any command that accesses the filesystem. You will get an
  # error. You can ask your VCS for the list of versioned files:
  # git ls-files
  # svn list -R
  s.files = %w(
  CHANGES.txt
  LICENSE.txt
  README.rdoc
  Rakefile
  Rudyfile
  bin/rye
  bin/try
  lib/esc.rb
  lib/rye.rb
  lib/rye/box.rb
  lib/rye/cmd.rb
  lib/rye/key.rb
  lib/rye/rap.rb
  lib/rye/set.rb
  rye.gemspec
  )
  
  s.extra_rdoc_files = %w[README.rdoc LICENSE.txt]
  s.has_rdoc = true
  s.rdoc_options = ["--line-numbers", "--title", s.summary, "--main", "README.rdoc"]
  s.require_paths = %w[lib]
  s.rubygems_version = '1.3.0'

  if s.respond_to? :specification_version then
    current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
    s.specification_version = 2
  end
  
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
rye-0.8.11 rye.gemspec