2011-04-12 20:48:50 -04:00
|
|
|
class Pry
|
2011-04-25 16:58:06 -04:00
|
|
|
module Helpers
|
2011-04-12 20:48:50 -04:00
|
|
|
|
2011-04-25 16:58:06 -04:00
|
|
|
module BaseHelpers
|
2011-05-04 08:53:04 -04:00
|
|
|
module_function
|
|
|
|
|
|
|
|
def silence_warnings
|
|
|
|
old_verbose = $VERBOSE
|
|
|
|
$VERBOSE = nil
|
|
|
|
begin
|
|
|
|
yield
|
|
|
|
ensure
|
|
|
|
$VERBOSE = old_verbose
|
|
|
|
end
|
|
|
|
end
|
2011-04-18 17:31:39 -04:00
|
|
|
|
2011-05-27 12:11:06 -04:00
|
|
|
def find_command(name)
|
|
|
|
command_match = commands.find { |_, command| command.options[:listing] == name }
|
2011-05-06 11:29:41 -04:00
|
|
|
|
2011-05-27 12:11:06 -04:00
|
|
|
return command_match.last if command_match
|
|
|
|
nil
|
|
|
|
end
|
2011-04-18 17:31:39 -04:00
|
|
|
|
2011-05-04 08:53:04 -04:00
|
|
|
def gem_installed?(gem_name)
|
2011-04-12 20:48:50 -04:00
|
|
|
require 'rubygems'
|
2011-05-31 07:49:17 -04:00
|
|
|
Gem::Specification.respond_to?(:find_all_by_name) ? !Gem::Specification.find_all_by_name(gem_name).empty? : Gem.source_index.find_name(gem_name).first
|
2011-04-12 20:48:50 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def command_dependencies_met?(options)
|
|
|
|
return true if !options[:requires_gem]
|
|
|
|
Array(options[:requires_gem]).all? do |g|
|
|
|
|
gem_installed?(g)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2011-05-04 09:45:29 -04:00
|
|
|
def set_file_and_dir_locals(file_name)
|
|
|
|
return if !target
|
|
|
|
$_file_temp = File.expand_path(file_name)
|
|
|
|
$_dir_temp = File.dirname($_file_temp)
|
|
|
|
target.eval("_file_ = $_file_temp")
|
|
|
|
target.eval("_dir_ = $_dir_temp")
|
|
|
|
end
|
|
|
|
|
2011-04-12 20:48:50 -04:00
|
|
|
def stub_proc(name, options)
|
|
|
|
gems_needed = Array(options[:requires_gem])
|
|
|
|
gems_not_installed = gems_needed.select { |g| !gem_installed?(g) }
|
|
|
|
proc do
|
2011-05-29 11:44:50 -04:00
|
|
|
output.puts "\nThe command '#{name}' requires the following gems to be installed: #{(gems_needed.join(", "))}"
|
|
|
|
output.puts "-"
|
2011-04-12 20:48:50 -04:00
|
|
|
output.puts "Command not available due to dependency on gems: `#{gems_not_installed.join(", ")}` not being met."
|
2011-05-29 11:44:50 -04:00
|
|
|
output.puts "-"
|
2011-04-12 20:48:50 -04:00
|
|
|
output.puts "Type `install #{name}` to install the required gems and activate this command."
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def create_command_stub(names, description, options, block)
|
|
|
|
Array(names).each do |name|
|
|
|
|
commands[name] = {
|
2011-04-24 00:28:19 -04:00
|
|
|
:description => "Not available. Execute #{(name)} command for more information.",
|
2011-04-12 20:48:50 -04:00
|
|
|
:action => stub_proc(name, options),
|
|
|
|
:stub_info => options
|
|
|
|
}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2011-06-11 06:44:30 -04:00
|
|
|
def colorize_code(code)
|
|
|
|
if Pry.color
|
|
|
|
CodeRay.scan(code, :ruby).term
|
|
|
|
else
|
|
|
|
code
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2011-04-22 01:12:32 -04:00
|
|
|
def highlight(string, regexp, highlight_color=:bright_yellow)
|
|
|
|
highlighted = string.gsub(regexp) { |match| "<#{highlight_color}>#{match}</#{highlight_color}>" }
|
|
|
|
end
|
|
|
|
|
2011-04-13 01:16:12 -04:00
|
|
|
# formatting
|
|
|
|
def heading(text)
|
|
|
|
text = "#{text}\n--"
|
|
|
|
Pry.color ? "\e[1m#{text}\e[0m": text
|
|
|
|
end
|
|
|
|
|
|
|
|
def page_size
|
|
|
|
27
|
|
|
|
end
|
2011-04-18 17:31:39 -04:00
|
|
|
|
2011-04-13 01:16:12 -04:00
|
|
|
# a simple pager for systems without `less`. A la windows.
|
|
|
|
def simple_pager(text)
|
|
|
|
text_array = text.lines.to_a
|
|
|
|
text_array.each_slice(page_size) do |chunk|
|
|
|
|
output.puts chunk.join
|
|
|
|
break if chunk.size < page_size
|
|
|
|
if text_array.size > page_size
|
2011-04-18 17:31:39 -04:00
|
|
|
output.puts "\n<page break> --- Press enter to continue ( q<enter> to break ) --- <page break>"
|
2011-04-13 01:16:12 -04:00
|
|
|
break if $stdin.gets.chomp == "q"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2011-04-18 17:31:39 -04:00
|
|
|
|
2011-04-18 10:11:00 -04:00
|
|
|
# Try to use `less` for paging, if it fails then use
|
|
|
|
# simple_pager. Also do not page if Pry.pager is falsey
|
2011-04-23 11:45:36 -04:00
|
|
|
# FIXME! Another JRuby hack
|
2011-06-11 06:44:30 -04:00
|
|
|
def stagger_output(text, output=output())
|
2011-04-18 10:11:00 -04:00
|
|
|
if text.lines.count < page_size || !Pry.pager
|
2011-04-13 01:16:12 -04:00
|
|
|
output.puts text
|
|
|
|
return
|
|
|
|
end
|
2011-04-23 11:45:36 -04:00
|
|
|
|
|
|
|
# FIXME! Another JRuby hack
|
2011-04-23 20:26:08 -04:00
|
|
|
if Object.const_defined?(:RUBY_ENGINE) && RUBY_ENGINE =~ /jruby/
|
2011-04-23 11:45:36 -04:00
|
|
|
simple_pager(text)
|
|
|
|
else
|
|
|
|
lesspipe { |less| less.puts text }
|
|
|
|
end
|
2011-04-19 06:37:10 -04:00
|
|
|
rescue Errno::ENOENT
|
2011-04-13 01:16:12 -04:00
|
|
|
simple_pager(text)
|
2011-04-19 06:37:10 -04:00
|
|
|
rescue Errno::EPIPE
|
2011-04-13 01:16:12 -04:00
|
|
|
end
|
2011-04-22 01:12:32 -04:00
|
|
|
|
2011-04-18 18:33:42 -04:00
|
|
|
#
|
|
|
|
# Create scrollable output via less!
|
|
|
|
#
|
|
|
|
# This command runs `less` in a subprocess, and gives you the IO to its STDIN pipe
|
|
|
|
# so that you can communicate with it.
|
|
|
|
#
|
|
|
|
# Example:
|
|
|
|
#
|
|
|
|
# lesspipe do |less|
|
|
|
|
# 50.times { less.puts "Hi mom!" }
|
|
|
|
# end
|
|
|
|
#
|
|
|
|
# The default less parameters are:
|
|
|
|
# * Allow colour
|
|
|
|
# * Don't wrap lines longer than the screen
|
|
|
|
# * Quit immediately (without paging) if there's less than one screen of text.
|
2011-04-22 01:12:32 -04:00
|
|
|
#
|
2011-04-18 18:33:42 -04:00
|
|
|
# You can change these options by passing a hash to `lesspipe`, like so:
|
|
|
|
#
|
|
|
|
# lesspipe(:wrap=>false) { |less| less.puts essay.to_s }
|
|
|
|
#
|
|
|
|
# It accepts the following boolean options:
|
|
|
|
# :color => Allow ANSI colour codes?
|
|
|
|
# :wrap => Wrap long lines?
|
|
|
|
# :always => Always page, even if there's less than one page of text?
|
|
|
|
#
|
2011-04-13 01:16:12 -04:00
|
|
|
def lesspipe(*args)
|
|
|
|
if args.any? and args.last.is_a?(Hash)
|
|
|
|
options = args.pop
|
|
|
|
else
|
|
|
|
options = {}
|
|
|
|
end
|
2011-04-18 17:31:39 -04:00
|
|
|
|
2011-04-13 01:16:12 -04:00
|
|
|
output = args.first if args.any?
|
2011-04-18 17:31:39 -04:00
|
|
|
|
2011-04-13 01:16:12 -04:00
|
|
|
params = []
|
|
|
|
params << "-R" unless options[:color] == false
|
|
|
|
params << "-S" unless options[:wrap] == true
|
|
|
|
params << "-F" unless options[:always] == true
|
|
|
|
if options[:tail] == true
|
|
|
|
params << "+\\>"
|
|
|
|
$stderr.puts "Seeking to end of stream..."
|
|
|
|
end
|
|
|
|
params << "-X"
|
2011-04-18 17:31:39 -04:00
|
|
|
|
2011-04-13 01:16:12 -04:00
|
|
|
IO.popen("less #{params * ' '}", "w") do |less|
|
|
|
|
if output
|
|
|
|
less.puts output
|
|
|
|
else
|
|
|
|
yield less
|
|
|
|
end
|
|
|
|
end
|
2011-04-18 17:31:39 -04:00
|
|
|
end
|
2011-04-13 01:16:12 -04:00
|
|
|
|
2011-04-12 20:48:50 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|