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
#!/bin/sh | |
# Script to be used within xcode to generate documentation through appledoc | |
# Prior to the execution of this script the appledoc executable and templates should have been copied | |
# to the appledoc folder in the project root directory | |
# | |
# Created by Sumeru Chatterjee the night the earth stood still | |
# https://gist.github.com/1077672 | |
#Company Name the only variable that I cant seem to grab from the environment_variables | |
COMPANY=My_Company_Name |
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
#define NSLogCmd() NSLog(@"<%@: 0x%x> %@", [self class], (unsigned int)self, NSStringFromSelector(_cmd)) |
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
#!/usr/bin/env ruby | |
search_dir = ARGV[0] || "." | |
files = Dir.glob("#{search_dir}/**/*.{h,m,swift}") | |
if files.length > 0 | |
puts "Found the following header or implementation files in '#{search_dir}':" | |
files.each do |filepath| | |
puts filepath |