class Hobo::InstallPluginGenerator

Public Instance Methods

install_plugin() click to toggle source
# File lib/generators/hobo/install_plugin/install_plugin_generator.rb, line 26
def install_plugin
  if install_plugin_helper(name, git_path, options)
    Bundler.with_clean_env do
      run "bundle install"
    end
  end
end