10
11
12
13
14
15
16
17
18
19
20
|
# File 'lib/xcodeprojfiler.rb', line 10
def self.help(shell, subcommand = false, display_introduction = true)
introduction = <<-MESSAGE
Xcodeprojfiler is a CLI tooL which can help iOS developer to get the info of files which exist in the xcode project dir.
For example, Xcodeprojfiler can scan the current xcode project dir and find out the files which are not included in xcworkspace.
MESSAGE
if display_introduction
puts(introduction)
end
super(shell,subcommand)
end
|