PATH: //opt/alt/ruby27/share/gems/gems/bundler-2.2.24/lib/bundler/cli
FILE_BARU
CREATE
FOLDER_BARU
MKDIR
UPLOAD_FILE
GO
[ .. KEMBALI ]
📄 add.rb
↓
X
📄 binstubs.rb
↓
X
📄 cache.rb
↓
X
📄 check.rb
↓
X
📄 clean.rb
↓
X
📄 common.rb
↓
X
📄 config.rb
↓
X
📄 console.rb
↓
X
📄 doctor.rb
↓
X
📄 exec.rb
↓
X
📄 fund.rb
↓
X
📄 gem.rb
↓
X
📄 info.rb
↓
X
📄 init.rb
↓
X
📄 inject.rb
↓
X
📄 install.rb
↓
X
📄 issue.rb
↓
X
📄 list.rb
↓
X
📄 lock.rb
↓
X
📄 open.rb
↓
X
📄 outdated.rb
↓
X
📄 platform.rb
↓
X
📄 plugin.rb
↓
X
📄 pristine.rb
↓
X
📄 remove.rb
↓
X
📄 show.rb
↓
X
📄 update.rb
↓
X
📄 viz.rb
↓
X
SAVING...
BERHASIL DIUBAH!
EDITING: remove.rb
# frozen_string_literal: true module Bundler class CLI::Remove def initialize(gems, options) @gems = gems @options = options end def run raise InvalidOption, "Please specify gems to remove." if @gems.empty? Injector.remove(@gems, {}) Installer.install(Bundler.root, Bundler.definition) if @options["install"] end end end
SIMPAN PERUBAHAN