Sha256: 34b32c999793abc87e9675aeb5aed4287899fbedd2402914a1923ecef74f7645

Contents?: true

Size: 1.02 KB

Versions: 2

Compression:

Stored size: 1.02 KB

Contents

#!/usr/bin/env ruby

require File.expand_path(File.dirname(__FILE__) + "/../lib/stasis")

gem "slop", "~> 2.1.0"
require 'slop'

slop = Slop.parse :help => true do
  on :d, :development, "Development mode\t\t(auto-regenerate)", :optional => true, :as => Integer
  on :o, :only, "Only generate specific files\t(comma-separated)", :optional => true, :as => Array
  on :p, :public, "Public directory path", :optional => true
  on :s, :server, "Server mode\t\t\t(default redis host: localhost:6379/0)", :optional => true, :default => "localhost:6379/0"
end

options = slop.to_hash
options.delete(:server) unless slop.server?

if slop.development?
  Stasis::DevMode.new(Dir.pwd, options)
elsif slop.only? && slop.public?
  Stasis.new(Dir.pwd, slop[:public], options).render(*slop[:only])
elsif slop.only?
  Stasis.new(Dir.pwd, options).render(*slop[:only])
elsif slop.server?
  Stasis::Server.new(Dir.pwd, options)
elsif slop.public?
  Stasis.new(Dir.pwd, slop[:public], options).render(*(slop[:only].to_a))
else
  Stasis.new(Dir.pwd, options).render
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
stasis-0.1.20 bin/stasis
stasis-0.1.19 bin/stasis