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 | |
# class-dump frameworks | |
xcode_locations = [ | |
"/Applications/Xcode.app/Contents/Frameworks/", | |
"/Applications/Xcode.app/Contents/OtherFrameworks/", | |
"/Applications/Xcode.app/Contents/PlugIns/IDEStructureNavigator.ideplugin/Contents/MacOS/IDEStructureNavigator"] | |
`rm -f output.txt && touch output.txt` |
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
# Uncrustify 0.60 | |
# | |
# General options | |
# | |
# The type of line endings | |
newlines = auto # auto/lf/crlf/cr | |
# The original size of tabs in the input |
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
Pod::Spec.new do |s| | |
s.name = 'OLCategoryHelper' | |
s.version = '0.0.5' | |
s.license = 'MIT License' | |
s.summary = 'A Category Library of Objective-C' | |
s.description = <<-DESC | |
OLCategoryHelper is a Library contain many helpful categoris. | |
To Exned Cocoa Framework or some popular Framework. | |
Jusy use specified category you need. |
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
Pod::Spec.new do |s| | |
s.name = 'NSLogger-CocoaLumberjack-connector' | |
s.version = '1.5' | |
s.license = 'BSD' | |
s.summary = 'Bridges NSLogger and CocoaLumberjack.' | |
s.homepage = 'https://github.com/steipete/NSLogger-CocoaLumberjack-connector' | |
s.author = { 'Peter Steinberger' => '[email protected]' } | |
s.source = { :git => 'https://github.com/steipete/NSLogger-CocoaLumberjack-connector.git', :tag => '1.5' } | |
#s.source = { :git => 'https://github.com/steipete/NSLogger-CocoaLumberjack-connector.git', :commit => '3e3f3f22af' } | |
s.description = 'This is a bridge for the projects http://github.com/robbiehanson/CocoaLumberjack (A general purpose super-fast logging framework) and http://github.com/fpillet/NSLogger (send logs to a client app via network).' |
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
Pod::Spec.new do |s| | |
s.name = 'OLCustomCocoaLumberjack' | |
s.version = '0.0.4' | |
s.license = 'MIT' | |
s.summary = 'Custom Level and Formatter for CocoaLumberjack.' | |
s.homepage = 'https://gist.github.com/payliu/6519088' | |
s.author = { 'Pay Liu' => '[email protected]' } | |
s.source = { :git => 'https://gist.github.com/6519088.git', :tag => '0.0.4' } | |
s.source_files = '*.{h,m}' |
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
# Compiled source # | |
################### | |
*.com | |
*.class | |
*.dll | |
*.exe | |
*.o | |
*.so | |
# Packages # |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" | |
xmlns="urn:com:sample:Finance" | |
targetNamespace="urn:com:sample:Finance" | |
xmlns:prefixName="urn:com:sample:common" | |
elementFormDefault="qualified" | |
attributeFormDefault="unqualified"> | |
<!-- here, see: 'xmlns:prefixName' --> | |
<xsd:import schemaLocation="common.xsd" namespace="urn:com:sample:common"/> <!-- add import here --> |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" | |
xmlns="urn:com:sample:Finance" | |
targetNamespace="urn:com:sample:Finance" | |
elementFormDefault="qualified" | |
attributeFormDefault="unqualified"> | |
<xsd:complexType name="Amount"> | |
<xsd:sequence> | |
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
for i in *; do mv "$i" "$(echo $i|tr A-Z a-z)"; done |
OlderNewer