Sha256: 063492c817267ce99f5b7d3a28c24de3f12b81869eee298234827938d2e4a8e5

Contents?: true

Size: 899 Bytes

Versions: 3

Compression:

Stored size: 899 Bytes

Contents

# https://stackoverflow.com/questions/8781263/access-rake-task-description-from-within-task
# enable get task description
# you aslo can see it in Rake source code: lib/rake/application.rb#select_tasks_to_show
Rake::TaskManager.record_task_metadata = true

# load rake files from lib
rake_files_pattern = File.dirname(__FILE__) + '/tasks/*.rake'
# => gems/git-hook-0.1.1/lib/githook/tasks/*.rake
Dir.glob(rake_files_pattern).each { |r| load r }

# we must be very careful to load outside ruby code
# because they are out of our control
# only load outside "*.rake" when there are ".git" and ".githook" folder, and target task isn't "install"
if Dir.exist?('.git') && Dir.exist?('.githook') && ARGV[0] != 'install'
  Dir.glob('.githook/tasks/**/*.rake').each do |rake|
    begin
      load rake
    rescue StandardError => e
      puts "Error: #{e.message} in #{rake}"
      exit 1
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
git-hook-0.2.1 lib/githook/tasks.rb
git-hook-0.2.0 lib/githook/tasks.rb
git-hook-0.1.9 lib/githook/tasks.rb