Sha256: a04237e20dd34c96bed8f03e1a24bd95a48ff88ce78d659ece0c0150f88c3393

Contents?: true

Size: 1009 Bytes

Versions: 1

Compression:

Stored size: 1009 Bytes

Contents

require 'rubygems'

Gem::Specification.new do |spec|
  spec.name       = 'win32-process'
  spec.version    = '0.7.3'
  spec.license    = 'Artistic 2.0'
  spec.authors    = ['Daniel Berger', 'Park Heesob']
  spec.email      = 'djberg96@gmail.com'
  spec.homepage   = 'https://github.com/djberg96/win32-process'
  spec.summary    = 'Adds and redefines several Process methods for MS Windows'
  spec.test_files = Dir['test/*.rb']
  spec.files      = Dir['**/*'].reject{ |f| f.include?('git') }

  spec.rubyforge_project = 'win32utils'
  spec.extra_rdoc_files  = ['README', 'CHANGES', 'MANIFEST']

  spec.required_ruby_version = '> 1.9.0'
  spec.add_dependency('ffi', '>= 1.0.0')
  spec.add_development_dependency('test-unit', '>= 2.4.0')

  spec.description = <<-EOF
    The win32-process library implements several Process methods that are
    either unimplemented or dysfunctional in some way in the default Ruby
    implementation. Examples include Process.kill, Process.uid and
    Process.create.
  EOF
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
win32-process-0.7.3 win32-process.gemspec