class Object

Public Instance Methods

fetch(key, def_val) click to toggle source
# File lib/githook/context.rb, line 19
def fetch(key, def_val)
  Githook::Context.fetch(key, def_val)
end
set(key, value) click to toggle source
# File lib/githook/context.rb, line 15
def set(key, value)
  Githook::Context.set(key, value)
end