80

Is there a way to write a comment inside a CocoaPod file? I had a look at their CocoaPods Guide, but I couldn't see anything.

Kyle
  • 17,317
  • 32
  • 140
  • 246

1 Answers1

159

You can add comments in a Podfile by using the Ruby comment syntax:

Inline

#comment

Block

=begin
all my comments..
=end
Thomas Keuleers
  • 6,075
  • 2
  • 32
  • 35