class LocalModule
Attributes
modules_path[R]
name[R]
root[R]
Public Class Methods
new(modulesPath, root, name)
click to toggle source
# File lib/cocoapods-localsource/LocalModuleManager.rb, line 68 def initialize(modulesPath, root, name) @modules_path = modulesPath @root = root @name = name end
Public Instance Methods
==(anOther)
click to toggle source
# File lib/cocoapods-localsource/LocalModuleManager.rb, line 86 def ==(anOther) module_podspec_path == anOther.module_podspec_path end
module_path()
click to toggle source
# File lib/cocoapods-localsource/LocalModuleManager.rb, line 78 def module_path "#{@modules_path}/#{@root}" end
module_podspec_path()
click to toggle source
# File lib/cocoapods-localsource/LocalModuleManager.rb, line 82 def module_podspec_path "#{@modules_path}/#{@root}/#{@name}.podspec" end