-
Notifications
You must be signed in to change notification settings - Fork 32
/
FsprgEmbeddedStoreMac.podspec
21 lines (20 loc) · 1.17 KB
/
FsprgEmbeddedStoreMac.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Pod::Spec.new do |s|
s.name = "FsprgEmbeddedStoreMac"
s.version = "1.0.13"
s.summary = "Embedded Store Framework for http://fastspring.com"
s.description = <<-DESC
FastSpring's embedded store consists of a controller with some integration points
and WebKit's web view. It's thin and very flexible and lets you integrate FastSpring
the way that fits best for your application.
DESC
s.homepage = "https://github.com/FastSpring/FsprgEmbeddedStoreMac"
s.license = { :type => 'MIT', :file => 'License.txt' }
s.author = { "FastSpring" => "[email protected]" }
s.platform = :osx
s.osx.deployment_target = "10.5"
s.source = { :git => "https://github.com/FastSpring/FsprgEmbeddedStoreMac.git", :tag => "1.0.13" }
s.source_files = "FsprgEmbeddedStore/**/*.{h,m}"
s.exclude_files = "FsprgEmbeddedStore/Tests"
s.framework = "WebKit", "Security"
s.requires_arc = false
end