Skip to content
This repository has been archived by the owner on Nov 12, 2024. It is now read-only.

Commit

Permalink
add gemspec
Browse files Browse the repository at this point in the history
  • Loading branch information
zenchild committed Mar 3, 2011
1 parent 954866e commit 36685a5
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions capistrano_winrm.gemspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# -*- encoding: utf-8 -*-
require 'date'

version = File.read(File.expand_path("../VERSION", __FILE__)).strip

Gem::Specification.new do |s|
s.platform = Gem::Platform::RUBY
s.name = 'capistrano_winrm'
s.version = version
s.date = Date.today.to_s

s.author = 'Dan Wanek'
s.email = '[email protected]'
s.homepage = "https://github.com/zenchild/capistrano_winrm"

s.summary = "Extends Capistrano with WinRM support."
s.description = <<-EOF
This gem extends Capistrano's base functionality to support WinRM which
allows one to run commands across Windows boxes with the "winrm_run" method.
EOF

s.files = `git ls-files`.split(/\n/)
s.require_path = "lib"
s.rdoc_options = %w(-x test/ -x examples/)
s.extra_rdoc_files = %w(README)

s.required_ruby_version = '>= 1.9.0'
s.add_runtime_dependency 'capistrano', '>= 2.5.18'
s.add_runtime_dependency 'winrm', '>= 1.0.0rc1'
end

0 comments on commit 36685a5

Please sign in to comment.