Sha256: e1614aca47bd3b7e603facf38ca01f9c49739ee605b8c885f9000c89866876e3
Contents?: true
Size: 1.1 KB
Versions: 2
Compression:
Stored size: 1.1 KB
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'exception_notification/bugsnag/version' Gem::Specification.new do |spec| spec.name = "exception_notification-bugsnag" spec.version = ExceptionNotification::Bugsnag::VERSION spec.license = "MIT" spec.authors = ["koshigoe"] spec.email = ["koshigoeb@gmail.com"] spec.summary = %q{Send exception info to Bugsnag.} spec.description = %q{Send exception info to Bugsnag.} spec.homepage = "https://github.com/koshigoe/exception_notification-bugsnag" 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_development_dependency "bundler", "~> 1.9" spec.add_development_dependency "rake", "~> 10.0" spec.add_development_dependency "rspec" spec.add_runtime_dependency 'exception_notification' spec.add_runtime_dependency 'bugsnag' end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
exception_notification-bugsnag-0.3.0.preview1 | exception_notification-bugsnag.gemspec |
exception_notification-bugsnag-0.2.0 | exception_notification-bugsnag.gemspec |