Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove unnecessary Rake patch #2214

Merged
merged 1 commit into from
Jan 2, 2024
Merged
Changes from all commits
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
13 changes: 0 additions & 13 deletions sentry-ruby/lib/sentry/rake.rb
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,6 @@ def display_error_message(ex)
super
end
end

module Task
# @api private
def execute(args=nil)
return super unless Sentry.initialized? && Sentry.get_current_hub

super
end
end
end
end

Expand All @@ -34,8 +25,4 @@ module Rake
class Application
prepend(Sentry::Rake::Application)
end

class Task
prepend(Sentry::Rake::Task)
end
end
Loading