Files
JBChartView/BeeFramework/0.1.1/BeeFramework.podspec
T
2012-11-22 11:29:03 +08:00

29 lines
1.3 KiB
Ruby

Pod::Spec.new do |s|
s.name = "BeeFramework"
s.version = "0.1.1"
s.summary = "Bee Framework is an iOS MVC framework to help you develop your app rapidly."
s.description = <<-DESC
Bee Framework is a MVC Framework to develop iOS application.
It has pretty clear hieracy and signal based mechanism, also with cache and asynchonized networking methods in it.
Add __BEE_DEBUGGER__=1 in build setting of Pods target and add [BeeDebugger show] to AppDelegate to enable Bee Debugger.
DESC
s.homepage = "http://bbs.whatsbug.com/BeeFramework"
s.license = 'MIT'
s.author = { "gavinkwoe" => "gavinkwoe@gmail.com"}
s.source = { :git => "https://github.com/stcui/BeeFramework.git", :tag => "0.1.1" }
s.resource = "BeeDebugger/*.png"
s.platform = :ios
s.source_files = 'BeeDebugger/**/*.{h,m}', 'BeeFramework/{Foundation,MVC}/**/*.{h,m,mm}', 'BeeFramework/Bee.h'
s.frameworks = 'CoreMedia', 'CoreVideo', 'AVFoundation', 'Security', 'SystemConfiguration', 'QuartzCore', 'MobileCoreServices', 'CFNetwork'
s.library = 'z'
s.xcconfig = { 'HEADER_SEARCH_PATHS' => '$(SDKROOT)/usr/include/libz' }
s.dependency 'JSONKit'
s.dependency 'ASIHTTPRequest'
s.dependency 'Reachability'
s.dependency 'SFHFKeychainUtils'
end