-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFission.podspec
More file actions
17 lines (17 loc) · 809 Bytes
/
Fission.podspec
File metadata and controls
17 lines (17 loc) · 809 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
Pod::Spec.new do |s|
s.name = "Fission"
s.version = "0.1"
s.summary = "A collection of functions and custom operators."
s.description = <<-DESC
"A collection of functions and custom operators for function composition, function application, the monadic functions, and some other helpful things."
DESC
s.homepage = "https://github.com/Pearapps/Fission"
s.license = { :type => "Apache", :file => "License" }
s.author = { "Kenny Ackerson" => "pearapps@gmail.com" }
s.social_media_url = "http://twitter.com/pearapps"
s.ios.deployment_target = "8.0"
s.osx.deployment_target = "10.11"
s.source = { :git => "https://github.com/Pearapps/Fission.git", :tag => "0.1" }
s.source_files = "Files", "Fission/**/*.{swift}"
s.requires_arc = true
end