class PostCheckoutHook

Attributes

dot_env_dot_example[R]
type[R]

Public Class Methods

new(dot_env_dot_example = nil) click to toggle source
# File lib/dot_example/post_checkout_hook.rb, line 2
def initialize(dot_env_dot_example = nil)
  @dot_env_dot_example = dot_env_dot_example || DotEnvDotExample.new
  @type = "post-checkout"
  create_file_if_does_not_exist
end

Public Instance Methods

steps() click to toggle source
# File lib/dot_example/post_checkout_hook.rb, line 10
def steps
  "dot_example check"
end