Sha256: 672ea58650618437cc4457046295d65c602a73f9d3dabfc73cf954dbbd8a22d0

Contents?: true

Size: 1.12 KB

Versions: 1

Compression:

Stored size: 1.12 KB

Contents

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

Gem::Specification.new do |spec|
  spec.name          = "firefly_server"
  spec.version       = FireflyServer::VERSION
  spec.authors       = ["Griffith Chaffee"]
  spec.email         = ["griffithchaffee@gmail.com"]

  spec.summary       = %q(Restarts a web server when watched files or directories are changed.)
  spec.description   = %q(Restarts a web server when watched files or directories are changed. Useful for rails applications the cache classes in development.)
  spec.homepage      = "https://github.com/griffithchaffee/firefly_server"
  spec.license       = "MIT"

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

  spec.add_development_dependency "bundler", "~> 1.15"
  spec.add_development_dependency "rake", "~> 10.0"
  spec.add_development_dependency "minitest", "~> 5.0"
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
firefly_server-0.1.0 firefly_server.gemspec