Skip to content

Instantly share code, notes, and snippets.

View brynbellomy's full-sized avatar

Bryn Bellomy brynbellomy

  • Texas, Republic of
View GitHub Profile
@brynbellomy
brynbellomy / Brynstagram-edge-andromedae-public.podspec
Last active December 10, 2015 14:28
Brynstagram-edge-andromedae-public.podspec
Pod::Spec.new do |s|
s.name = 'Brynstagram-edge-andromedae-public'
s.version = '0.0.2'
s.author = { 'bryn austin bellomy' => 'bryn.bellomy@gmail.com' }
s.summary = 'Video xyzzy.'
s.homepage = '/dev/null'
s.license = 'Copyright'
s.source = { :git => 'git@bitbucket.org:brynbellomy/brynstagram-edge-public.git', :tag => 'edge-andromedae' }
# s.source = { :git => '/Users/bryn/projects/Brynstagram-edge-public/andromedae' }
Pod::Spec.new do |s|
s.name = "boost"
s.version = "1.51.0"
s.summary = "Boost provides free peer-reviewed portable C++ source libraries."
s.homepage = "http://www.boost.org"
s.license = { :type => "WTFPL" }
s.author = "Rene Rivera"
s.source = { :local => "/Users/bryn/Downloads/boost_1_51_0/boost" }
s.ios.deployment_target = "4.0"
@brynbellomy
brynbellomy / ReactiveCocoa-HEAD.podspec
Created February 20, 2013 19:49
ReactiveCocoa-HEAD.podspec
Pod::Spec.new do |s|
s.name = "ReactiveCocoa"
s.version = "1.0.1"
s.summary = "A framework for composing and transforming sequences of values."
s.homepage = "https://github.com/blog/1107-reactivecocoa-is-now-open-source"
s.author = { "Josh Abernathy" => "josh@github.com" }
s.source = { :git => "https://github.com/ReactiveCocoa/ReactiveCocoa.git", :commit => 'b299394bb8106a10502f7d1ee6547fa046985a3c' }
s.license = 'Simplified BSD License'
s.description = "ReactiveCocoa offers:\n" \
"1. The ability to compose operations on future data.\n" \
@brynbellomy
brynbellomy / objc.cfg
Created February 22, 2013 06:17 — forked from tszming/objc.cfg
#
# uncrustify config file for objective-c and objective-c++
#
indent_with_tabs = 0 # 1=indent to level only, 2=indent with tabs
output_tab_size = 4 # new tab size
indent_columns = output_tab_size
indent_label = 2 # pos: absolute col, neg: relative column
indent_align_assign = FALSE
@brynbellomy
brynbellomy / AGFramework.podspec
Created March 10, 2013 00:07
AGFramework.podspec
#
# podspec: AGFramework
#
AUDIOGRAM_VERSION = '0.0.1'
require 'openssl'
OpenSSL::SSL::VERIFY_PEER = OpenSSL::SSL::VERIFY_NONE
Pod::Spec.new do |s|

example gfm task list

  • task one
  • task number two
  • blah blah blah

asdfasdf

@brynbellomy
brynbellomy / gist:5290052
Created April 2, 2013 05:03
current iOS .gitignore
build/*
*.pbxuser
!default.pbxuser
*.mode1v3
!default.mode1v3
*.mode2v3
!default.mode2v3
*.perspectivev3
!default.perspectivev3
*.xcworkspace
Pod::Spec.new do |s|
s.name = 'TheAmazingAudioEngine'
s.version = '0.0.1'
s.platform = :ios
s.license = 'BSD'
s.summary = 'Audio engine for iOS.'
s.homepage = 'https://github.com/TheAmazingAudioEngine/TheAmazingAudioEngine'
s.author = { 'Michael Tyson' => 'michael@atastypixel.com' }
s.source = { :git => 'https://github.com/TheAmazingAudioEngine/TheAmazingAudioEngine.git' }
s.source_files = '{TheAmazingAudioEngine,Modules}/**/*.{h,m,c}' #'Core/{DTFoundation.h,Source/{*.{h,m},Externals/minizip/*.*}}'
@brynbellomy
brynbellomy / gist:5426288
Created April 20, 2013 15:07
RAC: async request factory method returning a RACSignal
- (RACSignal *)enqueueRequestWithMethod:(NSString *)method
path:(NSString *)path
parameters:(NSDictionary *)parameters
{
RACReplaySubject *subject = [RACReplaySubject subject];
NSURLRequest *request = [self requestWithMethod:method path:path parameters:parameters];
AFHTTPRequestOperation *operation = [self HTTPRequestOperationWithRequest:request success:^(AFHTTPRequestOperation *operation, id responseObject) {
[subject sendNext:responseObject];
[subject sendCompleted];
} failure:^(AFHTTPRequestOperation *operation, NSError *error) {
Pod::Spec.new do |s|
s.name = 'GPUImage'
s.version = '0.1.0'
s.license = 'BSD'
s.platform = :ios
s.summary = 'OpenGL ES 2-based image and real-time camera filters for iOS.'
s.homepage = 'https://github.com/BradLarson/GPUImage'
s.author = { 'Brad Larson' => 'contact@sunsetlakesoftware.com' }
s.source = { :git => 'https://github.com/BradLarson/GPUImage.git', :commit => '15ca9cb31213952fe6c66bbadee39aa35095cbc8' }
s.source_files = 'framework/Source/*.{h,m}', 'framework/Source/iOS/*.{h,m}'