Skip to content

Instantly share code, notes, and snippets.

View AlexDenisov's full-sized avatar
🇺🇦
Talking to Machines

Alex Denisov AlexDenisov

🇺🇦
Talking to Machines
View GitHub Profile
@AlexDenisov
AlexDenisov / calabash-ios-ci.rb
Created May 24, 2012 06:31
Ruby script for Calabash iOS CI-server
#!/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 ]
)
@AlexDenisov
AlexDenisov / gist:2970537
Created June 22, 2012 05:36
Ruby script for Frank iOS CI-server
#!/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 ],
@AlexDenisov
AlexDenisov / ZUUIRevealViewController_latest.podspec
Created July 13, 2012 07:11
Podspec for latest commit of ZUUIRevealViewController
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}'
@AlexDenisov
AlexDenisov / IBAForms_latest.podspec
Created July 13, 2012 07:33
Latest podspec for IBAForms
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
@AlexDenisov
AlexDenisov / NoticeView.podspec
Created July 15, 2012 14:14
Podspec for latest commit of NoticeView
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}'
@AlexDenisov
AlexDenisov / NRGridView.podspec
Created July 16, 2012 16:28
Podspec for NRGridView
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
@AlexDenisov
AlexDenisov / GravatarHelper.podspec
Created August 16, 2012 08:14
Podspec for GravatarHelper (iOS)
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'
@AlexDenisov
AlexDenisov / svn_aliases.sh
Created November 6, 2012 11:54
Useful aliases for SVN
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'
@AlexDenisov
AlexDenisov / gist:4116383
Created November 20, 2012 06:27
Neocomplcache config
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)
@AlexDenisov
AlexDenisov / frank.podspec
Created November 30, 2012 15:54
Frank podspec. Mirror
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{