Sha256: ebed6b6950442d88b7e98bd39233d883c2e36d110794df3efde7b22b4a4be27a
Contents?: true
Size: 1.59 KB
Versions: 29
Compression:
Stored size: 1.59 KB
Contents
require 'bundler/cli' module Hobo class InstallPluginGenerator < Rails::Generators::NamedBase include Generators::Hobo::Plugin desc """This generator installs a hobo plugin. The first argument is the name of the plugin, and the second is where to get it. If the second argument is not supplied, it is installed from rubygems.org or any other gem source listed in your Gemfile. If the second argument contains a colon (:), it is assumed to be a git URL. Otherwise it is considered to be a path. """ argument :name, :desc => "the plugin name" argument :git_path, :required => false, :desc => "if supplied, is passed to the :git or :path option in the gemfile" class_option :skip_gem, :type => :boolean, :aliases => '-M', :desc => "don't add plugin to Gemfile" class_option :skip_js, :type => :boolean, :aliases => '-J', :desc => "don't add require to [subsite].js" class_option :skip_css, :type => :boolean, :aliases => '-C', :desc => "doesn't add require to [subsite].css" class_option :skip_dryml, :type => :boolean, :desc => "doesn't add include to [subsite]_site.dryml" class_option :version, :type => :string, :aliases => '-v', :desc => "Gemspec version string" class_option :comments, :type => :string, :desc => "comments to add before require/include" class_option :subsite, :type => :string, :aliases => '-e', :default => "all", :desc => "Subsite name (without '_site') or 'all'" def install_plugin if install_plugin_helper(name, git_path, options) Bundler.with_clean_env do run "bundle install" end end end end end
Version data entries
29 entries across 29 versions & 1 rubygems