6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
# File 'lib/annotate_rb/rake_bootstrapper.rb', line 6
def call(options)
begin
require "rake/dsl_definition"
rescue => e
warn e.message
exit e.status_code
end
require "rake"
load "./Rakefile" if File.exist?("./Rakefile")
begin
Rake::Task[:environment].invoke
rescue
nil
end
unless defined?(Rails)
require "active_support"
require "active_support/core_ext/class/subclasses"
require "active_support/core_ext/string/inflections"
end
end
|