Sha256: 9989e42e8e1295d2c09090665e40060ec3c7ca818659e4044a35ce37e264e21a

Contents?: true

Size: 350 Bytes

Versions: 4

Compression:

Stored size: 350 Bytes

Contents

module Command
  class GemInstallToVendorCommand < BaseCommand
    def cancel
      Command::GemUninstallCommand.new(rvm_prefix, { gem_name: options[:gem_name] }).execute
    end

    def name
      clean "cp pkg/* #{ options[:project_path] }/vendor/cache && cd #{ options[:project_path] } && #{ rvm_prefix } bundle install --local"
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
pumper-1.3.0 lib/command/gem_install_to_vendor_command.rb
pumper-1.2.0 lib/command/gem_install_to_vendor_command.rb
pumper-1.0.1 lib/command/gem_install_to_vendor_command.rb
pumper-0.0.1 lib/command/gem_install_to_vendor_command.rb