Sha256: 4fe753f90766a83abacf93ba89d69d452023bb50b8f7a86c5ff82f4174949662

Contents?: true

Size: 1.26 KB

Versions: 1

Compression:

Stored size: 1.26 KB

Contents

# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'autorespawn/version'

Gem::Specification.new do |spec|
  spec.name          = "autorespawn"
  spec.version       = Autorespawn::VERSION
  spec.authors       = ["Sylvain Joyeux"]
  spec.email         = ["sylvain.joyeux@m4x.org"]

  spec.summary       = "functionality to respawn a Ruby program when its source changes"
  spec.description   =<<-EOD
This gem implements the functionality to take a signature of the current Ruby
program (i.e. the current process) and respawn it whenever the source code or
libraries change
EOD
  spec.homepage      = "https://github.com/doudou/autorespawn"
  spec.license       = "MIT"

  spec.files         = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
  spec.bindir        = "exe"
  spec.executables   = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
  spec.require_paths = ["lib"]

  spec.add_development_dependency "bundler", "~> 1.10"
  spec.add_development_dependency "rake", "~> 10.0"
  spec.add_development_dependency "minitest", ">= 5.0", "~> 5.0"
  spec.add_development_dependency "fakefs", ">= 0.6", "~> 0.6.0"
  spec.add_development_dependency 'flexmock', ">= 2.0", '~> 2.0'
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
autorespawn-0.1.0 autorespawn.gemspec