Sha256: 8575f409b1a103dd0d216fea8216eabb78fc6f0b4500f103857bf9d3afd26842

Contents?: true

Size: 1.26 KB

Versions: 5

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 'exception_handler/version'

Gem::Specification.new do |spec|
  spec.name          = "exception_handler"
  spec.version       = ExceptionHandler::VERSION
  spec.authors       = ["Richard Peck", "Joe Hilton"]
  spec.email         = ["rpeck@frontlineutilities.co.uk", "jhilton@frontlineutilities.co.uk"]
  spec.summary       = %q{Middleware & Controller To Handle Errors In Production Rails Apps}
  spec.description   = %q{Exception Handler gives you middleware & an exception controller, to both capture exceptions & store them in your db; and to have custom error pages.}
  spec.homepage      = "http://frontlineutilities.co.uk/ruby-on-rails/exception-handler"
  spec.license       = "MIT"
  spec.metadata      = { "source" => "https://github.com/richpeck/exception_handler" }

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

  spec.post_install_message = "Thank you for installing!"

  spec.add_development_dependency "bundler", "~> 1.6"
  spec.add_development_dependency "rake"
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
exception_handler-0.0.25 exception_handler.gemspec
exception_handler-0.0.22 exception_handler.gemspec
exception_handler-0.0.21 exception_handler.gemspec
exception_handler-0.0.2 exception_handler.gemspec
exception_handler-0.0.15 exception_handler.gemspec