You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
280 B
11 lines
280 B
|
3 weeks ago
|
# frozen_string_literal: true
|
||
|
|
|
||
|
|
# This rake task was added by annotate_rb gem.
|
||
|
|
|
||
|
|
# Can set `ANNOTATERB_SKIP_ON_DB_TASKS` to be anything to skip this
|
||
|
|
if Rails.env.development? && ENV['ANNOTATERB_SKIP_ON_DB_TASKS'].nil?
|
||
|
|
require 'annotate_rb'
|
||
|
|
|
||
|
|
AnnotateRb::Core.load_rake_tasks
|
||
|
|
end
|