Sha256: 555cc78fd1ed09e9fc9c91e8a3fe89bbc45b49d067811ee72a817cac8beef239

Contents?: true

Size: 319 Bytes

Versions: 7

Compression:

Stored size: 319 Bytes

Contents

#!/usr/bin/env ruby

require File.dirname(__FILE__) + '/../lib/staticmatic'

command = ARGV[0]
directory = ARGV[1]

if !command || !directory
  puts "Usage: #{$0} <build|setup|preview> <directory>"
  exit
end

$:.push File.join(directory, "lib")

staticmatic = StaticMatic::Base.new(directory)
staticmatic.run(command)

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
staticmatic-0.11.1 bin/staticmatic
staticmatic-0.11.0 bin/staticmatic
staticmatic-0.11.0.alpha.10 bin/staticmatic
staticmatic-0.11.0.alpha.9 bin/staticmatic
staticmatic-0.11.0.alpha.8 bin/staticmatic
staticmatic-0.11.0.alpha.7 bin/staticmatic
staticmatic-0.11.0.alpha.6 bin/staticmatic