Skip to content

Instantly share code, notes, and snippets.

@korakotlee
Created May 10, 2020 06:42
Show Gist options
  • Save korakotlee/485c1b17a8ddb39962306ae75a23b1e6 to your computer and use it in GitHub Desktop.
Save korakotlee/485c1b17a8ddb39962306ae75a23b1e6 to your computer and use it in GitHub Desktop.
# lib/tasks/some_task.rake
require 'profiler'
namespace :some_task do
task :apple do
# byebug
Profiler::prof("import") do
# Your slow code here
sleep 2
p "Hi, Koko"
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment