example gfm task list
- task one
- task number two
- blah blah blah
asdfasdf
| 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" |
| 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" \ |
| # | |
| # 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 |
| # | |
| # 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
asdfasdf
| 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/*.*}}' |
| - (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}' |