-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathfuncobjc.podspec
More file actions
23 lines (20 loc) · 865 Bytes
/
funcobjc.podspec
File metadata and controls
23 lines (20 loc) · 865 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Pod::Spec.new do |s|
s.name = "funcobjc"
s.version = "1.0.0"
s.summary = "map/filter/reduce for objc"
s.description = <<-DESC
Adds functional languages features to ObjC
DESC
s.homepage = "https://github.com/smirn0v/funcobjc"
s.license = { :type => "MIT", :file => "LICENSE" }
s.authors = {
"Alexander Smirnov" => "alexander@smirn0v.ru",
"Nikita Anisimov" => "ravis.bmstu@gmail.com ",
"Nikolay Morev" => "kolyuchiy@gmail.com",
"Evgeniy Yurtaev" => "EvgeniyYurtaev@gmail.com"
}
s.platform = :ios
s.source = { :git => "https://github.com/smirn0v/funcobjc.git", :tag => s.version.to_s }
s.source_files = "funcobjc"
s.requires_arc = true
end