Sha256: 72428cb3ac5701cfb7db7c5292d4e9780e47b1d21ad22d8c808ad4b93f334bca
Contents?: true
Size: 1.54 KB
Versions: 4
Compression:
Stored size: 1.54 KB
Contents
require 'bundler/setup' require 'thor' class CLI < Thor include Thor::Actions desc "new PROJECT_NAME", "generates a new project." def new(name) directory("project", name) say "Bundling Gems...." `cd #{name} ; bundle -j 4` end desc "console", "run the console on the project in the current directory" def console require 'volt/console' Console.start end desc "server", "run the server on the project in the current directory" def server require 'thin' ENV['SERVER'] = 'true' Thin::Runner.new(['start']).run! end desc "component GEM", "Creates a gem where you can share a component" method_option :bin, :type => :boolean, :default => false, :aliases => '-b', :banner => "Generate a binary for your library." method_option :test, :type => :string, :lazy_default => 'rspec', :aliases => '-t', :banner => "Generate a test directory for your library: 'rspec' is the default, but 'minitest' is also supported." method_option :edit, :type => :string, :aliases => "-e", :lazy_default => [ENV['BUNDLER_EDITOR'], ENV['VISUAL'], ENV['EDITOR']].find{|e| !e.nil? && !e.empty? }, :required => false, :banner => "/path/to/your/editor", :desc => "Open generated gemspec in the specified editor (defaults to $EDITOR or $BUNDLER_EDITOR)" def component(name) require 'volt/cli/new_gem' NewGem.new(self, name, options) end def self.source_root File.expand_path(File.join(File.dirname(__FILE__), '../../templates')) end end CLI.start(ARGV)
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
volt-0.3.5 | lib/volt/cli.rb |
volt-0.3.4 | lib/volt/cli.rb |
volt-0.3.3 | lib/volt/cli.rb |
volt-0.3.2 | lib/volt/cli.rb |