-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathTweenController.podspec
27 lines (18 loc) · 1.11 KB
/
TweenController.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
Pod::Spec.new do |s|
s.name = "TweenController"
s.version = "1.0.1"
s.summary = "A pure Swift toolkit for creating interactive menus and tutorials"
s.platform = :ios, '8.0'
s.description = <<-DESC
On the surface, TweenController makes it easy to build interactive menus and tutorials. Under the hood, it's a simple but powerful toolkit to interpolate between values that are Tweenable.
DESC
s.homepage = "https://github.com/daltonclaybrook/tween-controller"
s.screenshots = "https://raw.githubusercontent.com/daltonclaybrook/tween-controller/master/example.gif"
s.license = { :type => "MIT", :file => "LICENSE" }
s.authors = { "Dalton Claybrook" => "[email protected]" }
s.social_media_url = "http://twitter.com/daltonclaybrook"
s.source = { :git => "https://github.com/daltonclaybrook/tween-controller.git", :tag => s.version }
s.source_files = ["TweenController/*.swift", "TweenController/TweenController.h"]
s.public_header_files = ["TweenController/TweenController.h"]
s.requires_arc = true
end