Skip to content

Instantly share code, notes, and snippets.

@brynbellomy
Created March 10, 2013 00:07
Show Gist options
  • Select an option

  • Save brynbellomy/5126423 to your computer and use it in GitHub Desktop.

Select an option

Save brynbellomy/5126423 to your computer and use it in GitHub Desktop.
AGFramework.podspec
#
# podspec: AGFramework
#
AUDIOGRAM_VERSION = '0.0.1'
require 'openssl'
OpenSSL::SSL::VERIFY_PEER = OpenSSL::SSL::VERIFY_NONE
Pod::Spec.new do |s|
s.name = "AGFramework"
s.version = "#{AUDIOGRAM_VERSION}"
s.author = { "bryn austin bellomy" => "bryn.bellomy@gmail.com" }
s.source = { :git => "git@bitbucket.org:brynbellomy/audiogram.git" }
s.source_files = "AGFramework/**/*.{h,m}"
s.frameworks = [ "Accelerate", "AVFoundation", "CoreMedia", "AudioToolbox", "CoreAudio" ]
s.platform = :ios, "6.0"
s.requires_arc = true
# s.xcconfig = { "PUBLIC_HEADERS_FOLDER_PATH" => "include/$(TARGET_NAME)" }
# def s.copy_header_mapping(from)
# "../Brynstagram/#{from.basename}"
# end
s.dependency 'BrynKit/Main'
s.dependency 'BrynKit/EDColor'
s.dependency 'BrynKit/SEDispatchSource'
s.dependency 'BrynKit/GCDThreadsafe'
s.dependency 'BrynKit/CocoaLumberjack'
s.dependency 'StateMachine'
s.dependency 'ReactiveCocoa/Core', '1.0.0'
s.dependency 'ReactiveCocoa/RACExtensions', '1.0.0'
s.dependency 'libextobjc/EXTScope'
s.dependency 'libextobjc/RuntimeExtensions'
s.dependency 'libextobjc/EXTSelectorChecking'
s.dependency 'ConciseKit'
s.dependency 'BlocksKit'
s.dependency 'Underscore.m'
s.dependency 'MBProgressHUD'
s.dependency 'CocoaLumberjack'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment