Class: Pry::Command::Gist
- Inherits:
-
Pry::ClassCommand
- Object
- Pry::Command
- Pry::ClassCommand
- Pry::Command::Gist
- Defined in:
- lib/pry/commands/gist.rb
Constant Summary
Constants inherited from Pry::Command
Instance Attribute Summary
Attributes inherited from Pry::ClassCommand
Attributes inherited from Pry::Command
#_pry_, #arg_string, #captures, #command_block, #command_set, #context, #eval_string, #output, #target
Instance Method Summary collapse
- #clipboard_content(content) ⇒ Object
- #comment_expression_result_for_gist(result) ⇒ Object
- #gist_content(content, filename) ⇒ Object
- #input_content ⇒ Object
- #options(opt) ⇒ Object
- #process ⇒ Object
- #setup ⇒ Object
Methods inherited from Pry::ClassCommand
#call, #complete, doc, #help, inherited, #slop, source, source_file, source_line, source_location, #subcommands
Methods inherited from Pry::Command
banner, #block, #call_safely, #check_for_command_collision, command_name, #command_name, #command_options, command_regex, #commands, #complete, convert_to_regex, default_options, #dependencies_met?, #description, doc, group, hooks, #initialize, inspect, #interpolate_string, #match, match_score, matches?, name, #name, options, #process_line, #run, #source, source, source_file, source_line, #source_location, source_location, #state, subclass, #target_self, #text, #tokenize, #void
Methods included from Helpers::DocumentationHelpers
get_comment_content, process_comment_markup, process_rdoc, process_yardoc, process_yardoc_tag, strip_comments_from_c_code, strip_leading_whitespace
Methods included from Pry::CodeObject::Helpers
#c_method?, #command?, #module_with_yard_docs?, #real_method_object?
Methods included from Helpers::CommandHelpers
absolute_index_number, absolute_index_range, command_error, get_method_or_raise, internal_binding?, one_index_number, one_index_range, one_index_range_or_number, restrict_to_lines, set_file_and_dir_locals, temp_file, unindent
Methods included from Helpers::OptionsHelpers
Methods included from Helpers::BaseHelpers
colorize_code, command_dependencies_met?, find_command, heading, highlight, jruby?, jruby_19?, mri?, mri_19?, mri_20?, mri_21?, mri_2?, not_a_real_file?, rbx?, #safe_send, safe_send, silence_warnings, stagger_output, use_ansi_codes?, windows?, windows_ansi?
Constructor Details
This class inherits a constructor from Pry::Command
Instance Method Details
#clipboard_content(content) ⇒ Object
47 48 49 50 |
# File 'lib/pry/commands/gist.rb', line 47 def clipboard_content(content) ::Gist.copy(content) output.puts "Copied content to clipboard!" end |
#comment_expression_result_for_gist(result) ⇒ Object
70 71 72 73 74 75 76 77 78 79 80 81 |
# File 'lib/pry/commands/gist.rb', line 70 def comment_expression_result_for_gist(result) content = "" result.lines.each_with_index do |line, index| if index == 0 content << "# => #{line}" else content << "# #{line}" end end content end |
#gist_content(content, filename) ⇒ Object
83 84 85 86 87 88 89 90 91 92 93 94 95 96 |
# File 'lib/pry/commands/gist.rb', line 83 def gist_content(content, filename) response = ::Gist.gist(content, :filename => filename || "pry_gist.rb", :public => !!opts[:p]) if response url = response['html_url'] = "Gist created at URL #{url}" begin ::Gist.copy(url) << ", which is now in the clipboard." rescue ::Gist::ClipboardError end output.puts end end |
#input_content ⇒ Object
52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 |
# File 'lib/pry/commands/gist.rb', line 52 def input_content content = "" CodeCollector.input_expression_ranges.each do |range| input_expressions = _pry_.input_array[range] || [] Array(input_expressions).each_with_index do |code, index| corrected_index = index + range.first if code && code != "" content << code if code !~ /;\Z/ content << "#{comment_expression_result_for_gist(_pry_.config.gist.inspecter.call(_pry_.output_array[corrected_index]))}" end end end end content end |
#options(opt) ⇒ Object
22 23 24 25 26 27 |
# File 'lib/pry/commands/gist.rb', line 22 def (opt) CodeCollector.(opt) opt.on :login, "Authenticate the gist gem with GitHub" opt.on :p, :public, "Create a public gist (default: false)", :default => false opt.on :clip, "Copy the selected content to clipboard instead, do NOT gist it", :default => false end |
#process ⇒ Object
29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 |
# File 'lib/pry/commands/gist.rb', line 29 def process return ::Gist.login! if opts.present?(:login) cc = CodeCollector.new(args, opts, _pry_) if cc.content =~ /\A\s*\z/ raise CommandError, "Found no code to gist." end if opts.present?(:clip) clipboard_content(cc.content) else # we're overriding the default behavior of the 'in' option (as # defined on CodeCollector) with our local behaviour. content = opts.present?(:in) ? input_content : cc.content gist_content content, cc.file end end |
#setup ⇒ Object
18 19 20 |
# File 'lib/pry/commands/gist.rb', line 18 def setup require 'gist' end |