Sha256: cd07867111d5fcd93286afcdf861de19dbb745d61d3a642e583cdc64650f73de
Contents?: true
Size: 1.42 KB
Versions: 3
Compression:
Stored size: 1.42 KB
Contents
module Troy class Cli < Thor check_unknown_options! def self.exit_on_failure? true end def initialize(args = [], options = {}, config = {}) if (config[:current_task] || config[:current_command]).name == "new" && args.empty? raise Error, "The site path is required. For details run: troy help new" end super end options assets: :boolean, file: :string desc "export", "Export files" def export if options[:assets] site.export_assets site.export_files elsif options[:file] site.export_pages(options[:file]) else site.export end end desc "new SITE", "Generate a new site structure" def new(path) generator = Generator.new generator.destination_root = path generator.invoke_all end desc "version", "Display Troy version" map %w(-v --version) => :version def version say "Troy #{Troy::VERSION}" end desc "server", "Start a server" option :port, :type => :numeric, :default => 9292, :aliases => "-p" def server begin handler = Rack::Handler::Thin Thin::Logging.level = Logger::DEBUG rescue Exception handler = Rack::Handler::WEBrick end handler.run Troy::Server.new(File.join(Dir.pwd, "public")), :Port => options[:port] end private def site @site ||= Troy::Site.new(Dir.pwd) end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
troy-0.0.24 | lib/troy/cli.rb |
troy-0.0.23 | lib/troy/cli.rb |
troy-0.0.22 | lib/troy/cli.rb |