32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
# File 'lib/impl.rb', line 32
def help
" impl version \#{VERSION}\n\n USAGE\n impl -h:\n shows this message\n impl {directory} {method name}\n shows the file name and line number where {method name} like\n 'Strimg#sum' defined, assuming the Ruby source directory is\n {directory}.\n impl -d {directory} {method name}\n impl --description {directory} {method name}\n shows the description of {method name} like 'Strimg#sum'\n directly, assuming the Ruby source directory is {directory}.\n impl -c {directory}:\n impl --create {directory}:\n shows additional information, assuming you already have\n |tags| and Ruby codes in the current directory.\n EOH\nend\n"
|