Sha256: f428949e755c1edfa48f535d49a901fb9b76bdbcbfe74b1cfd568f6e395a7120

Contents?: true

Size: 470 Bytes

Versions: 3

Compression:

Stored size: 470 Bytes

Contents

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

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

begin
  if Gumdrop.in_site_folder?
    # Pre-Fetch Site and load Gumdrop file
    Gumdrop.site()
    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.0.2 bin/gumdrop
gumdrop-1.0.1 bin/gumdrop
gumdrop-1.0.0 bin/gumdrop