class Pod::Command::Spec::Edit

Public Class Methods

new(argv) click to toggle source
Calls superclass method Pod::Command::new
# File lib/cocoapods/command/spec/edit.rb, line 22
def initialize(argv)
  @use_regex = argv.flag?('regex')
  @show_all = argv.flag?('show-all')
  @query = argv.shift_argument
  @query = @query.gsub('.podspec', '') unless @query.nil?
  super
end
options() click to toggle source
Calls superclass method Pod::Command::options
# File lib/cocoapods/command/spec/edit.rb, line 15
def self.options
  [
    ['--regex', 'Interpret the `QUERY` as a regular expression'],
    ['--show-all', 'Pick from all versions of the given podspec'],
  ].concat(super)
end

Public Instance Methods

exec_editor(*args) click to toggle source
# File lib/cocoapods/command/spec/edit.rb, line 74
def exec_editor(*args)
  return if args.to_s.empty?
  safe_exec(which_editor, *args)
end
run() click to toggle source
# File lib/cocoapods/command/spec/edit.rb, line 36
def run
  query = @use_regex ? @query : Regexp.escape(@query)
  if @show_all
    specs = get_path_of_spec(query, @show_all).split(/\n/)
    message = "Which spec would you like to edit [1-#{specs.count}]? "
    index = UI.choose_from_array(specs, message)
    filepath = specs[index]
  else
    filepath = get_path_of_spec(query)
  end

  exec_editor(filepath.to_s) if File.exist? filepath
  raise Informative, "#{filepath} doesn't exist."
end
safe_exec(cmd, *args) click to toggle source
# File lib/cocoapods/command/spec/edit.rb, line 79
def safe_exec(cmd, *args)
  # This buys us proper argument quoting and evaluation
  # of environment variables in the cmd parameter.
  exec('/bin/sh', '-i', '-c', cmd + ' "$@"', '--', *args)
end
validate!() click to toggle source
Calls superclass method
# File lib/cocoapods/command/spec/edit.rb, line 30
def validate!
  super
  help! 'A podspec name is required.' unless @query
  validate_regex!(@query) if @use_regex
end
which_editor() click to toggle source
# File lib/cocoapods/command/spec/edit.rb, line 51
def which_editor
  editor = ENV['EDITOR']
  # If an editor wasn't set, try to pick a sane default
  return editor unless editor.nil?

  editors = [
    # Find Sublime Text 2
    'subl',
    # Find Textmate
    'mate',
    # Find BBEdit / TextWrangler
    'edit',
    # Find Atom
    'atom',
    # Default to vim
    'vim',
  ]
  editor = editors.find { |e| Pod::Executable.which(e) }
  return editor if editor

  raise Informative, "Failed to open editor. Set your 'EDITOR' environment variable."
end