-
Notifications
You must be signed in to change notification settings - Fork 2
/
win-service.gemspec
34 lines (29 loc) · 1.01 KB
/
win-service.gemspec
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
require 'rubygems'
spec = Gem::Specification.new do |gem|
gem.name = 'win-service'
gem.version = '0.1.1'
gem.authors = ['James T. Pavlic']
gem.email = 'james_pavlic@hotmail.com'
gem.license = 'The MIT License'
gem.homepage = 'https://github.com/jpavlic/win-service'
gem.platform = Gem::Platform::RUBY
gem.summary = 'An interface for MS Windows services'
gem.add_development_dependency('rspec')
gem.has_rdoc = true
gem.extra_rdoc_files = [
'History.txt',
'README.txt',
'Manifest.txt',
'doc/service.rdoc'
]
gem.rubyforge_project = 'win-service'
gem.required_ruby_version = '>= 1.8.7'
gem.description = <<-EOF
A ruby gem that will allow the basic functions of getting the status,
stopping and starting of a windows service from both a windows and a mac os x operating system.
EOF
end
if $PROGRAM_NAME == __FILE__
Gem.manage_gems if Gem::RubyGemsVersion.to_f < 1.0
Gem::Builder.new(spec).build
end