Class: Pod::Command::Spec::Which
Class Method Summary
collapse
Instance Method Summary
collapse
#ensure_master_spec_repo_exists!, report_error, run
#config
Constructor Details
#initialize(argv) ⇒ Which
Returns a new instance of Which.
22
23
24
25
26
27
28
|
# File 'lib/cocoapods/command/spec/which.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
|
Class Method Details
.options ⇒ Object
15
16
17
18
19
20
|
# File 'lib/cocoapods/command/spec/which.rb', line 15
def self.options
[
['--regex', 'Interpret the `QUERY` as a regular expression'],
['--show-all', 'Print all versions of the given podspec'],
].concat(super)
end
|
Instance Method Details
#run ⇒ Object
36
37
38
39
|
# File 'lib/cocoapods/command/spec/which.rb', line 36
def run
query = @use_regex ? @query : Regexp.escape(@query)
UI.puts get_path_of_spec(query, @show_all)
end
|
#validate! ⇒ Object
30
31
32
33
34
|
# File 'lib/cocoapods/command/spec/which.rb', line 30
def validate!
super
help! 'A podspec name is required.' unless @query
validate_regex!(@query) if @use_regex
end
|