-
Notifications
You must be signed in to change notification settings - Fork 15
/
MotionMachine.podspec
21 lines (19 loc) · 1.07 KB
/
MotionMachine.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 = 'MotionMachine'
s.version = '2.0.1'
s.swift_version = '5.0'
s.license = { :type => 'MIT' }
s.summary = 'An elegant, powerful, and modular animation library for Swift.'
s.description = <<-DESC
MotionMachine provides a modular, generic platform for manipulating values. Its animation engine was built from the ground up to support not just UIKit values, but property values of any class you want to manipulate. It offers sensible default functionality that abstracts most of the hard work away, allowing you to focus on your work.
DESC
s.homepage = 'https://github.com/poetmountain/MotionMachine'
s.social_media_url = 'https://twitter.com/petsound'
s.authors = { 'Brett Walker' => '[email protected]' }
s.source = { :git => 'https://github.com/poetmountain/MotionMachine.git', :tag => "#{s.version}" }
s.source_files = 'Sources/**/*.{m,h,swift}'
s.frameworks = 'CoreGraphics', 'QuartzCore'
s.ios.deployment_target = '8.0'
s.tvos.deployment_target = '9.0'
s.requires_arc = true
end