Class: Pod::Podfile

Inherits:
Object
  • Object
show all
Defined in:
lib/podfileDep.rb

Instance Method Summary collapse

Instance Method Details

#yaml_dep!Object



17
18
19
20
21
22
23
24
25
26
27
28
# File 'lib/podfileDep.rb', line 17

def yaml_dep!

  # 加入插件
  plugin("podfileDep")

  yam_dep = YamlDep.new
  puts "podfileDep版本:#{PodfileDep::VERSION}"
  yam_dep.install_yaml_dep(self) do |name|
    yield(name) if block_given?
  end

end