This file contains 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/ruby | |
require "getoptlong" | |
getoptlong = GetoptLong.new( | |
[ '--target', '-t', GetoptLong::REQUIRED_ARGUMENT ], | |
[ '--log-file', '-l', GetoptLong::REQUIRED_ARGUMENT ], | |
[ '--source-root', '-r', GetoptLong::REQUIRED_ARGUMENT ] | |
) |
This file contains 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/ruby | |
require "getoptlong" | |
getoptlong = GetoptLong.new( | |
[ '--sdk', '-s', GetoptLong::REQUIRED_ARGUMENT ], | |
[ '--target', '-t', GetoptLong::REQUIRED_ARGUMENT ], | |
[ '--configuration', '-c', GetoptLong::REQUIRED_ARGUMENT ], | |
[ '--log-file', '-l', GetoptLong::REQUIRED_ARGUMENT ], | |
[ '--source-root', '-r', GetoptLong::REQUIRED_ARGUMENT ], | |
[ '--arch', '-a' ,GetoptLong::REQUIRED_ARGUMENT ], |
This file contains 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 = 'ZUUIRevealController' | |
s.version = '0.9.6' | |
s.license = 'MIT like' | |
s.summary = 'Facebook (iOS App) inspired custom ViewControllerContainer.' | |
s.homepage = 'https://github.com/pkluz/ZUUIRevealController' | |
s.author = { 'Philip Kluz' => '[email protected]' } | |
s.source = { :git => 'https://github.com/pkluz/ZUUIRevealController.git', :commit => '0664b4254f4b95895a49ac780b7363fa68a37702' } | |
s.source_files = 'ZUUIRevealController/*.{h,m}' |
This file contains 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.summary = 'A simple iPhone forms library' | |
s.license = 'Apache License, Version 2.0' | |
s.source = { :git => 'https://github.com/ittybittydude/IBAForms.git', :commit => 'e7a5e5c61b852eab3bb46e3042b5757ab41deec4' } | |
s.source_files = 'library/**/*.{h,m}' | |
s.author = { 'Itty Bitty Apps' => '[email protected]', 'Sadat Rahman' => 'https://twitter.com/sadatrahman' } | |
s.version = '1.0.0' | |
s.homepage = 'https://github.com/ittybittydude/IBAForms' | |
s.name = 'IBAForms' | |
s.platform = :ios |
This file contains 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 = 'NoticeView' | |
s.version = '2.1.0' | |
s.license = 'MIT' | |
s.summary = 'A short description of NoticeView.' | |
s.homepage = 'https://github.com/tciuro/NoticeView/' | |
s.author = { 'Tito Ciuro' => '[email protected]' } | |
s.source = { :git => 'https://github.com/tciuro/NoticeView.git', :tag => '2.1' } | |
s.platform = :ios | |
s.source_files = 'NoticeView/WBNoticeView/*.{m,h}' |
This file contains 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 = 'NRGridView' | |
s.version = '0.0.1' | |
s.license = 'MIT' | |
s.summary = 'NRGidView' | |
s.homepage = 'https://github.com/ldesroziers/NRGridView' | |
s.author = { 'Louka Desroziers' => '[email protected]' } | |
s.source = { :git => 'https://github.com/ldesroziers/NRGridView.git', | |
:commit => '96902715fead052d8aac36505e125c91053c0855' } | |
s.platform = :ios |
This file contains 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 = 'Gravatar' | |
s.version = '0.0.1' | |
s.summary = 'Getting gravatar url from email address' | |
s.homepage = 'https://github.com/MugunthKumar/Gravatar' | |
s.author = { 'Mugunth Kumar' => '[email protected]' } | |
s.source = { :git => 'https://github.com/MugunthKumar/Gravatar.git', | |
:commit => '5f4650e1c4ba7721c40c829435fd7652f047f1c2' } | |
s.platform = :ios | |
s.source_files = 'Gravatar/GravatarHelper.m', 'Gravatar/GravatarHelper.m' |
This file contains 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
alias subadd="svn st | grep '^?' | sed 's/^? *\(.*\)/\"\1\"/g' | sed 's/@\(.*\)/@\1@/g' | xargs svn add" | |
alias subrm="svn st | grep '^!' | sed 's/^! *\(.*\)/\"\1\"/g' | sed 's/@\(.*\)/@\1@/g' | xargs svn rm" | |
alias subst='svn st' | |
alias subci='svn ci' | |
alias subup='svn up' |
This file contains 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
let g:neocomplcache_enable_at_startup = 1 | |
let g:neocomplcache_enable_smart_case = 1 | |
let g:neocomplcache_enable_camel_case_completion = 1 | |
let g:neocomplcache_enable_underbar_completion = 1 | |
let g:neocomplcache_min_syntax_length = 1 | |
let g:neocomplcache_disable_auto_complete = 1 | |
let g:neocomplcache_enable_fuzzy_completion = 1 | |
let g:neocomplcache_enable_ignore_case = 1 | |
map <C-k> <Plug>(neocomplcache_snippets_expand) |
This file contains 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 = 'Frank' | |
s.version = '0.8.8' | |
s.license = 'MIT' | |
s.summary = 'Automated acceptance tests for native iOS apps' | |
s.homepage = 'http://www.testingwithfrank.com/' | |
s.author = { 'Pete Hodgson' => "[email protected]" } | |
s.source = { :git => 'https://github.com/moredip/Frank.git', :tag => 'v0.8.8' } | |
s.description = %q{ |
OlderNewer