📁 File Manager Pro
v10.0.3 | PHP: 8.1.34
Server: Apache
2026-06-22 16:32:06
📂
/ (Root)
/
opt
/
cpanel
/
ea-ruby27
/
root
/
usr
/
share
/
ruby
/
ruby-2.7.8
/
bundler
/
cli
📍 /opt/cpanel/ea-ruby27/root/usr/share/ruby/ruby-2.7.8/bundler/cli
🔄 Refresh
✏️
Editing: remove.rb
Read Only
# 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
💾 Save Changes
❌ Cancel