Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Move dependency to exception_notification 4.2 which supports Rails
4.2 to 5. Remove the explicit rails development dependency to align
with the scheme used by exception_notification.
  • Loading branch information
nikhaldi committed Jan 11, 2017
commit 081f0077f089b04f871abd222ad17537d29dfc58
3 changes: 1 addition & 2 deletions exception_notification-rake.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,9 @@ Gem::Specification.new do |s|
' sending mail upon failures in Rake tasks'

s.required_ruby_version = '>= 2.0'
s.add_runtime_dependency 'exception_notification', '~> 4.1.0'
s.add_runtime_dependency 'exception_notification', '~> 4.2.0'
# NB: Rake before 0.9.0 won't support the exception hook we're using
s.add_runtime_dependency 'rake', '>= 0.9.0'
s.add_development_dependency 'rails', '~> 4.1.0'

s.files = Dir['LICENSE.md', 'README.md', 'lib/**/*']
s.test_files = Dir['test/**/*.rb']
Expand Down
2 changes: 1 addition & 1 deletion lib/exception_notifier/rake/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module ExceptionNotifier
class Rake
VERSION = '0.2.2'
VERSION = '0.3.0.rc1'
end
end