module DotExample

Constants

DATE
SUMMARY
VERSION

Public Class Methods

add_post_checkout_hook() click to toggle source
# File lib/dot_example.rb, line 15
def self.add_post_checkout_hook
  post_checkout_hook = PostCheckoutHook.new
  post_checkout_hook.write!
end
add_pre_commit_hook(dot_env_dot_example) click to toggle source
# File lib/dot_example.rb, line 10
def self.add_pre_commit_hook(dot_env_dot_example)
  pre_commit_hook = PreCommitHook.new
  pre_commit_hook.write!
end