Class: GitPrecommit::PrecommitTasks
- Inherits:
-
Rake::TaskLib
- Object
- Rake::TaskLib
- GitPrecommit::PrecommitTasks
- Defined in:
- lib/git-precommit/precommit_tasks.rb
Constant Summary collapse
- TEMPLATE_PATH =
File. File.join( File.dirname(__FILE__), '..', '..', 'git-hooks' )
Instance Attribute Summary collapse
-
#template_path ⇒ Object
Returns the value of attribute template_path.
Instance Method Summary collapse
- #define ⇒ Object
-
#initialize(options = {}) {|_self| ... } ⇒ PrecommitTasks
constructor
A new instance of PrecommitTasks.
Constructor Details
#initialize(options = {}) {|_self| ... } ⇒ PrecommitTasks
Returns a new instance of PrecommitTasks.
11 12 13 14 15 16 17 18 19 20 |
# File 'lib/git-precommit/precommit_tasks.rb', line 11 def initialize( ={} ) = { :draconian => false }.merge yield self if block_given? @template_path ||= TEMPLATE_PATH define end |
Instance Attribute Details
#template_path ⇒ Object
Returns the value of attribute template_path.
9 10 11 |
# File 'lib/git-precommit/precommit_tasks.rb', line 9 def template_path @template_path end |
Instance Method Details
#define ⇒ Object
22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 |
# File 'lib/git-precommit/precommit_tasks.rb', line 22 def define() pre_commit = ".git/hooks/pre-commit" pre_commit_src = "#{template_path}/pre-commit" task :overwrite do |t| if [:draconian] copy pre_commit_src, pre_commit chmod 0755, pre_commit end end deps = [pre_commit_src] deps += [:overwrite] if [:draconian] desc "Install the git pre-commit hook" file pre_commit => deps do |t| warn "Git pre-commit hook missing, setting up…" copy t.prerequisites.first, t.name chmod 0755, t.name end desc "Install the git post-commit hook" file ".git/hooks/post-commit" => "#{template_path}/post-commit" do |t| copy t.prerequisites.first, t.name chmod 0755, t.name end namespace :git do desc "Install the git pre-commit hook" task :precommit => pre_commit desc "Install the git post-commit hook" task :postcommit => ".git/hooks/post-commit" end end |