class Bundler::CLI

def init

def init
  if File.exist?("Gemfile")
    puts "Gemfile already exists at #{Dir.pwd}/Gemfile"
  else
    puts "Writing new Gemfile to #{Dir.pwd}/Gemfile"
    FileUtils.cp(File.expand_path('../templates/Gemfile', __FILE__), 'Gemfile')
  end
end