class Fastlane::Ref::RefDepInfo

Attributes

dep_name[R]
file_name[R]
file_path[R]
name[R]
notes[R]
podspec_quote[R]
version[R]

Public Class Methods

new(name,version,dep_name,file_path,file_name,notes,podspec_quote) click to toggle source
# File lib/fastlane/plugin/rocket/ref/ref_pod_info.rb, line 13
def initialize(name,version,dep_name,file_path,file_name,notes,podspec_quote)
    @name=name
    @version=version
    @dep_name=dep_name
    @file_path=file_path
    @file_name=file_name
    @notes=notes
    @podspec_quote=podspec_quote
end

Public Instance Methods

string() click to toggle source
# File lib/fastlane/plugin/rocket/ref/ref_pod_info.rb, line 23
def string()
    string = []
    string << "引用文件:#{file_name} => #{notes}"
    Tools.logs(nil,string)
   end