Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Comments in CocoaPods?

Tags:

cocoapods

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.

like image 257
Kyle Avatar asked Mar 25 '14 12:03

Kyle


1 Answers

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

Inline

#comment 

Block

=begin all my comments.. =end 
like image 75
Thomas Keuleers Avatar answered Sep 24 '22 18:09

Thomas Keuleers