13 lines
633 B
Ruby
13 lines
633 B
Ruby
Pod::Spec.new do |s|
|
|
s.name = "CPAnimationSequence"
|
|
s.version = "0.0.1"
|
|
s.summary = "Declaratively describe animation sequences that consist of multiple steps."
|
|
s.homepage = "http://github.com/yangmeyer/CPAnimationSequence"
|
|
s.author = { "Yang Meyer" => "mail@yangmeyer.de" }
|
|
s.source = { :git => "https://github.com/yangmeyer/CPAnimationSequence.git", :commit => '15daf95' }
|
|
s.license = { :type => 'MIT', :file => 'LICENSE.markdown' }
|
|
s.platform = :ios, '4.3'
|
|
s.source_files = 'Component'
|
|
s.frameworks = 'Foundation', 'UIKit', 'CoreGraphics'
|
|
s.requires_arc = true
|
|
end |