View KissXML.podspec.rb
Pod::Spec.new do |s| | |
s.name = 'KissXML' | |
s.license = 'MIT' | |
s.summary = 'A replacement for Cocoa\'s NSXML cluster of classes. Based on libxml.' | |
s.homepage = 'https://github.com/robbiehanson/KissXML' | |
s.author = { 'Robbie Hanson' => 'robbiehanson@deusty.com' } | |
s.source = { :git => 'git@github.com:Labgoo/KissXML.git' } | |
s.source_files = 'KissXML/**/*.{h,m}' | |
s.library = 'xml2' | |
s.requires_arc = true |
View XMPPFramework.podspec.rb
Pod::Spec.new do |s| | |
s.name = 'XMPPFramework' | |
s.homepage = 'https://github.com/robbiehanson/XMPPFramework' | |
s.version = '3.6.1' | |
s.author = { 'Robbie Hanson' => 'robbiehanson@deusty.com' } | |
s.license = { :type => 'BSD', :file => 'copying.txt' } | |
s.summary = 'An XMPP Framework in Objective-C for Mac and iOS' | |
s.description = <<-DESC | |
An XMPP Framework in Objective-C for the Mac / iOS development | |
community. |
View gist:5180495
ruby -e "$(curl -fsSL https://raw.github.com/mxcl/homebrew/go)" | |
brew install ruby |
View gist:5129129
build pjsip | |
http://svn.pjsip.org/repos/pjproject/trunk | |
cd /path/to/your/pjsip/dir | |
for armv7 | |
ARCH='-arch armv7' ./configure-iphone | |
or for armv7s | |
ARCH='-arch armv7s' ./configure-iphone |
View gist:5124420
defaults write com.apple.finder AppleShowAllFiles TRUE | |
killall Finder |
View gist:5124146
for n in *.NEF ; do dcraw -c -v $n | cjpeg >${n/%NEF/JPG} ; done |