Method: PodBuilder::PodfileItem#has_subspec

Defined in:
lib/pod_builder/podfile_item.rb

#has_subspec(named) ⇒ Object



461
462
463
464
465
466
467
# File 'lib/pod_builder/podfile_item.rb', line 461

def has_subspec(named)
  unless !is_subspec
    return false
  end

  return named.split("/").first == name
end