Sha256: 558cfbdade20afbc598465288d99958601a0aa9856bfb1ebca74d1707029228b

Contents?: true

Size: 1.04 KB

Versions: 2

Compression:

Stored size: 1.04 KB

Contents

lib = File.expand_path('../lib/', __FILE__)
$:.unshift lib unless $:.include?(lib)

require 'brakefast/version'

Gem::Specification.new do |spec|
  spec.name          = "brakefast"
  spec.version       = Brakefast::VERSION
  spec.platform      = Gem::Platform::RUBY
  spec.authors       = ["Sho Hashimoto"]
  spec.email         = ["sho.hsmt@gmail.com"]
  spec.homepage      = "https://github.com/sho-h/brakefast"

  spec.summary       = "runtime brakeman notifier like bullet"
  spec.description   = "runtime brakeman notifier like bullet"
  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_runtime_dependency "uniform_notifier", "~> 1.9.0"
  spec.add_runtime_dependency "brakeman"

  spec.add_development_dependency "bundler", "~> 1.9"
  spec.add_development_dependency "rake", "~> 10.0"
  spec.add_development_dependency "rspec"
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
brakefast-0.0.2 brakefast.gemspec
brakefast-0.0.1 brakefast.gemspec