Method: Pod::DSLError#contents
- Defined in:
- lib/cocoapods-core/standard_error.rb
permalink #contents ⇒ String
Returns the contents of the DSL that cause the exception to be raised.
38 39 40 41 42 |
# File 'lib/cocoapods-core/standard_error.rb', line 38 def contents @contents ||= begin dsl_path && File.exist?(dsl_path) && File.read(dsl_path) end end |