exception_handling.gemspec in exception_handling-2.2.1 vs exception_handling.gemspec in exception_handling-2.3.0.pre.1
- old
+ new
@@ -1,24 +1,26 @@
-require File.expand_path('../lib/exception_handling/version', __FILE__)
+# frozen_string_literal: true
+require File.expand_path('lib/exception_handling/version', __dir__)
+
Gem::Specification.new do |spec|
spec.authors = ["Colin Kelley"]
spec.email = ["colindkelley@gmail.com"]
- spec.description = %q{Exception handling logger/emailer}
- spec.summary = %q{Invoca's exception handling logger/emailer layer, based on exception_notifier. Works with Rails or EventMachine or EventMachine+Synchrony.}
+ spec.description = 'Exception handling logger/emailer'
+ spec.summary = "Invoca's exception handling logger/emailer layer, based on exception_notifier. Works with Rails or EventMachine or EventMachine+Synchrony."
spec.homepage = "https://github.com/Invoca/exception_handling"
- spec.files = `git ls-files`.split($\)
- spec.executables = spec.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
+ spec.files = `git ls-files`.split($OUTPUT_RECORD_SEPARATOR)
+ spec.executables = spec.files.grep(%r{^bin/}).map { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/.*\.rb})
spec.name = "exception_handling"
spec.require_paths = ["lib"]
spec.version = ExceptionHandling::VERSION
- spec.add_dependency 'eventmachine', '~> 1.0'
- spec.add_dependency 'activesupport', '~> 4.2'
- spec.add_dependency 'actionpack', '~> 4.2'
spec.add_dependency 'actionmailer', '~> 4.2'
- spec.add_dependency 'invoca-utils', '~> 0.0'
- spec.add_dependency 'hobo_support'
+ spec.add_dependency 'actionpack', '~> 4.2'
+ spec.add_dependency 'activesupport', '~> 4.2'
spec.add_dependency 'contextual_logger'
+ spec.add_dependency 'eventmachine', '~> 1.0'
+ spec.add_dependency 'hobo_support'
+ spec.add_dependency 'invoca-utils', '~> 0.0'
end