Sha256: a6726be8a34bdbd0ca8c00760cc6720479c9bc9b3ec4066916926c817ed7cb31
Contents?: true
Size: 1.07 KB
Versions: 1
Compression:
Stored size: 1.07 KB
Contents
# -*- encoding: utf-8 -*- require File.expand_path('../lib/crash_hook/version', __FILE__) Gem::Specification.new do |gem| gem.name = 'crash_hook' gem.version = CrashHook::VERSION.dup gem.author = 'Dan Sosedoff' gem.email = 'dan.sosedoff@gmail.com' gem.homepage = 'https://github.com/sosedoff/crash_hook' gem.summary = %q{Exception notifications via HTTP} gem.description = %q{Rack middleware to notify HTTP endpoint with application notifications} gem.files = `git ls-files`.split("\n") gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n") gem.executables = `git ls-files -- bin/*`.split("\n").map{|f| File.basename(f)} gem.require_paths = ['lib'] gem.add_development_dependency 'rack', '~> 1.2' gem.add_development_dependency 'rake', '~> 0.9' gem.add_development_dependency 'rspec', '~> 2.6' gem.add_development_dependency 'simplecov', '~> 0.4' gem.add_development_dependency 'fakeweb', '~> 1.3' gem.add_runtime_dependency 'rest-client', '~> 1.6' gem.add_runtime_dependency 'multi_json', '~> 1.0' end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
crash_hook-0.2.0 | crash_hook.gemspec |