-
Notifications
You must be signed in to change notification settings - Fork 13
/
TipJarViewController.podspec
37 lines (31 loc) · 1.47 KB
/
TipJarViewController.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# vim: ft=ruby
Pod::Spec.new do |s|
s.name = 'TipJarViewController'
s.version = "2.1.0"
s.summary = 'Easy, drop-in tipping for iOS apps.'
s.homepage = 'https://github.com/lionheart/TipJarViewController'
s.license = { :type => 'Apache 2.0', :file => 'LICENSE' }
s.author = { 'Dan Loewenherz' => '[email protected]' }
s.source = { :git => 'https://github.com/lionheart/TipJarViewController.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/lionheartsw'
s.documentation_url = 'https://code.lionheart.software/TipJarViewController/'
# This description is used to generate tags and improve search results.
# * Think: What does it do? Why did you write it? What is the focus?
# * Try to keep it short, snappy and to the point.
# * Write the description between the DESC delimiters below.
# * Finally, don't worry about the indent, CocoaPods strips it!
s.description = <<-DESC
TODO: Add long description of the pod here.
DESC
s.ios.deployment_target = '13.6'
s.swift_version = '5'
s.source_files = 'TipJarViewController/Classes/**/*'
# s.resource_bundles = {
# 'TipJarViewController' => ['TipJarViewController/Assets/*.png']
# }
# s.public_header_files = 'Pod/Classes/**/*.h'
s.frameworks = 'UIKit', 'StoreKit'
s.dependency 'QuickTableView', '~> 4.0'
s.dependency 'SuperLayout', '~> 2.0'
s.dependency 'LionheartExtensions', '~> 5.0'
end