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: open.rb
# frozen_string_literal: true require "shellwords" module Bundler class CLI::Open attr_reader :options, :name def initialize(options, name) @options = options @name = name end def run editor = [ENV["BUNDLER_EDITOR"], ENV["VISUAL"], ENV["EDITOR"]].find {|e| !e.nil? && !e.empty? } return Bundler.ui.info("To open a bundled gem, set $EDITOR or $BUNDLER_EDITOR") unless editor return unless spec = Bundler::CLI::Common.select_spec(name, :regex_match) if spec.default_gem? Bundler.ui.info "Unable to open #{name} because it's a default gem, so the directory it would normally be installed to does not exist." else path = spec.full_gem_path Dir.chdir(path) do command = Shellwords.split(editor) + [path] Bundler.with_original_env do system(*command) end || Bundler.ui.info("Could not run '#{command.join(" ")}'") end end end end end
SIMPAN PERUBAHAN