Sha256: 34793fe882114aa2e31b61ca8bae7d5fcf7810a67ee1cc05c1474449b9fdbda8

Contents?: true

Size: 1.27 KB

Versions: 1

Compression:

Stored size: 1.27 KB

Contents

require 'rubygems'
lib = File.expand_path("../lib", __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "win32/windows/version"

Gem::Specification.new do |spec|
  spec.name       = 'win32-service'
  spec.version    = Win32::Service::VERSION
  spec.authors    = ['Daniel J. Berger', 'Park Heesob']
  spec.license    = 'Artistic 2.0'
  spec.email      = 'djberg96@gmail.com'
  spec.homepage   = 'http://github.com/chef/win32-service'
  spec.summary    = 'An interface for MS Windows services'
  spec.test_files = Dir['test/test*.rb']

  spec.files = Dir['**/*'].reject{ |f| f.include?('git') }

  spec.extra_rdoc_files = [
    'CHANGELOG.md',
    'README.md',
    'MANIFEST',
    'doc/service.txt',
    'doc/daemon.txt'
  ]

  spec.add_dependency('ffi')
  spec.add_dependency('ffi-win32-extensions')

  spec.add_development_dependency('test-unit')
  spec.add_development_dependency('rake')
  spec.add_development_dependency('win32-security')

  spec.description = <<-EOF
    The win32-service library provides a Ruby interface to services on
    MS Windows. You can create new services, or control, configure and
    inspect existing services.

    In addition, you can create a pure Ruby service by using the Daemon
    class that is included as part of the library.
  EOF
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
win32-service-1.0.1 win32-service.gemspec