-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathFTFountain.podspec
23 lines (18 loc) · 931 Bytes
/
FTFountain.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# coding: utf-8
Pod::Spec.new do |s|
s.name = "FTFountain"
s.version = "2.5.3"
s.summary = "Pluggable data sources and adapters for managing list-like content."
s.authors = { "Tobias Kräntzer" => "[email protected]" }
s.license = { :type => 'BSD', :file => 'LICENSE.md' }
s.homepage = 'https://github.com/anagromataf/Fountain'
s.source = {:git => 'https://github.com/anagromataf/Fountain.git', :tag => "#{s.version}"}
s.module_name = "Fountain"
s.requires_arc = true
s.ios.deployment_target = '8.0'
s.osx.deployment_target = '10.10'
s.source_files = 'Fountain/Common/**/*.{h,m,c}'
s.ios.source_files = 'Fountain/iOS/**/*.{h,m,c}'
s.osx.source_files = 'Fountain/macOS/**/*.{h,m,c}'
s.frameworks = 'CoreData'
end