class Shotgun::Loader

def camel_case(string)

def camel_case(string)
  string.split("_").map { |part| part.capitalize }.join
end