Method: Fastlane::Actions::EnsureNoDebugCodeAction.example_code

Defined in:
fastlane/lib/fastlane/actions/ensure_no_debug_code.rb

.example_codeObject



108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
# File 'fastlane/lib/fastlane/actions/ensure_no_debug_code.rb', line 108

def self.example_code
  [
    'ensure_no_debug_code(text: "// TODO")',
    'ensure_no_debug_code(text: "Log.v",
                    extension: "java")',
    'ensure_no_debug_code(text: "NSLog",
                         path: "./lib",
                    extension: "m")',
    'ensure_no_debug_code(text: "(^#define DEBUG|NSLog)",
                         path: "./lib",
                    extension: "m")',
    'ensure_no_debug_code(text: "<<<<<<",
                   extensions: ["m", "swift", "java"])'
  ]
end