Sha256: dad24e8e3f3dcf48a980f2d57c4498ea47537ec0912584d04084e7763dfc2739

Contents?: true

Size: 500 Bytes

Versions: 3

Compression:

Stored size: 500 Bytes

Contents

#!/usr/bin/env ruby
# encoding: utf-8
#  Copyright (c) 2011 M@ McCray. All rights reserved.

require 'rubygems'
require 'bundler/setup'
Bundler.require if File.exists?('Gemfile')
require 'gumdrop'

begin
  if Gumdrop.in_site_folder?
    # Pre-Fetch Site and load Gumdrop file
    Gumdrop.site
    Dir.chdir Gumdrop.site.root
    Gumdrop::CLI::Internal.start
  else
    Gumdrop::CLI::External.start
  end
rescue Interrupt => e
  puts "\nQuitting..."
  exit 1
rescue SystemExit => e
  exit e.status
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
gumdrop-1.1.3 bin/gumdrop
gumdrop-1.1.2 bin/gumdrop
gumdrop-1.1.1 bin/gumdrop