-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathOCTotallyLazy.podspec
20 lines (20 loc) · 987 Bytes
/
OCTotallyLazy.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Pod::Spec.new do |s|
s.name = "OCTotallyLazy"
s.version = "1.1.0"
s.summary = "Functional extensions to Objective C's collections."
s.description = <<-DESC
OCTotallyLazy is a framework that adds functional behaviour to
Objective C collection objects, as well as a lazy collection
object called Sequence. It's a partial port of Java's
[TotallyLazy](http://code.google.com/p/totallylazy/).
DESC
s.homepage = "https://github.com/stuartervine/OCTotallyLazy"
s.license = 'Apache 2.0'
s.author = { "Stuart Ervine" => "[email protected]" }
s.source = { :git => "https://github.com/stuartervine/OCTotallyLazy.git", :tag => "#{s.version}" }
s.ios.deployment_target = '5.0'
s.osx.deployment_target = '10.7'
s.source_files = 'src/main/**/*.{h,m}'
s.requires_arc = true
s.xcconfig = { 'GCC_WARN_USUSED_FUNCTION' => 'NO' }
end