This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Ruby script automating Xcode's class dump | |
| # | |
| # This requires to have Steve Nygard's class-dump installed | |
| # http://stevenygard.com/projects/class-dump/ | |
| # | |
| # List of the 4 repertories with dumpable <mach-o> content | |
| frameworks = %w(Frameworks OtherFrameworks PlugIns SharedFrameworks) | |
| input_path = '/Applications/Xcode.app/Contents' |