Sha256: 74732775f326c1e5f692972ccaaad471fb8006f2db7281e3df3a86434b7b1de4
Contents?: true
Size: 1.19 KB
Versions: 3
Compression:
Stored size: 1.19 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"] # custom spec.add_runtime_dependency("listen", "~> 3.1") # defaults 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
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
firefly_server-0.1.3 | firefly_server.gemspec |
firefly_server-0.1.2 | firefly_server.gemspec |
firefly_server-0.1.1 | firefly_server.gemspec |