Sha256: 6b073f77dfc4219d3fa23a7170df711bc69c4def948909e146c724ba88117054

Contents?: true

Size: 611 Bytes

Versions: 5

Compression:

Stored size: 611 Bytes

Contents

#!/usr/bin/env ruby
#require 'rubygems'
$LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
require 'optparse'
require 'assetify'

opt = OptionParser.new do |o|
    o.banner = <<BANNER
Bugs Bunny - RabbitMQ Playground

Usage: #{File.basename($0)} command [args]

Commands:

      install        -     All assets
      update         -     Outdated assets
      check          -     Prints changes

Options:

BANNER


  o.on('-h', "Show help") { puts o; exit }
  o.parse!
end


begin
  Assetify.work!(ARGV)
rescue Interrupt => e
  puts "\nQuitting..."
  puts e.backtrace.join("\n")
  exit 1
end


Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
assetify-0.3.0 bin/assetify
assetify-0.2.2 bin/assetify
assetify-0.2.1 bin/assetify
assetify-0.1.1 bin/assetify
assetify-0.0.1 bin/assetify