Sha256: ab12ab266ba67d9e3be4eb5e4d34b585eb116f7d72efc93993084fcacdbca48c

Contents?: true

Size: 1.31 KB

Versions: 18

Compression:

Stored size: 1.31 KB

Contents

# frozen_string_literal: true

require_relative "../vendored_thor"
module Bundler
  class CLI::Plugin < Thor
    desc "install PLUGINS", "Install the plugin from the source"
    long_desc <<-D
      Install plugins either from the rubygems source provided (with --source option) or from a git source provided with --git (for remote repos) or --local_git (for local repos). If no sources are provided, it uses Gem.sources
   D
    method_option "source", :type => :string, :default => nil, :banner =>
      "URL of the RubyGems source to fetch the plugin from"
    method_option "version", :type => :string, :default => nil, :banner =>
      "The version of the plugin to fetch"
    method_option "git", :type => :string, :default => nil, :banner =>
      "URL of the git repo to fetch from"
    method_option "local_git", :type => :string, :default => nil, :banner =>
      "Path of the local git repo to fetch from"
    method_option "branch", :type => :string, :default => nil, :banner =>
      "The git branch to checkout"
    method_option "ref", :type => :string, :default => nil, :banner =>
      "The git revision to check out"
    def install(*plugins)
      Bundler::Plugin.install(plugins, options)
    end

    desc "list", "List the installed plugins and available commands"
    def list
      Bundler::Plugin.list
    end
  end
end

Version data entries

18 entries across 18 versions & 2 rubygems

Version Path
rubygems-update-3.1.6 bundler/lib/bundler/cli/plugin.rb
rubygems-update-3.1.5 bundler/lib/bundler/cli/plugin.rb
rubygems-update-3.1.4 bundler/lib/bundler/cli/plugin.rb
rubygems-update-3.1.3 bundler/lib/bundler/cli/plugin.rb
bundler-2.1.4 lib/bundler/cli/plugin.rb
bundler-2.1.3 lib/bundler/cli/plugin.rb
rubygems-update-3.1.2 bundler/lib/bundler/cli/plugin.rb
bundler-2.1.2 lib/bundler/cli/plugin.rb
bundler-2.1.1 lib/bundler/cli/plugin.rb
rubygems-update-3.1.1 bundler/lib/bundler/cli/plugin.rb
rubygems-update-3.1.0 bundler/lib/bundler/cli/plugin.rb
bundler-2.1.0 lib/bundler/cli/plugin.rb
rubygems-update-3.1.0.pre3 bundler/lib/bundler/cli/plugin.rb
bundler-2.1.0.pre.3 lib/bundler/cli/plugin.rb
rubygems-update-3.1.0.pre2 bundler/lib/bundler/cli/plugin.rb
rubygems-update-3.1.0.pre1 bundler/lib/bundler/cli/plugin.rb
bundler-2.1.0.pre.2 lib/bundler/cli/plugin.rb
bundler-2.1.0.pre.1 lib/bundler/cli/plugin.rb