-
Notifications
You must be signed in to change notification settings - Fork 4
/
Filtr.podspec
22 lines (19 loc) · 880 Bytes
/
Filtr.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Pod::Spec.new do |s|
s.name = "Filtr"
s.version = "0.1.2"
s.summary = "Swift framework for photo filter effects on iOS/macOS/tvOS."
s.description = <<-DESC
Photo effects framework based on Core Image, using 3D LUT images to create filter effects.
DESC
s.homepage = "http://github.com/danlozano/Filtr"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Daniel Lozano" => "[email protected]" }
s.social_media_url = "http://twitter.com/danlozanov"
s.platform = :ios, "8.0"
s.platform = :tvos
s.platform = :osx, "10.10"
s.source = { :git => "https://github.com/danlozano/Filtr.git", :tag => "#{s.version}" }
s.source_files = "Filtr/Classes/**/*"
s.public_header_files = "Filtr/Classes/**/*.h"
s.resources = "Filtr/Resources/**/*{xcassets,png,fcube}"
end