mirror of
https://github.com/averello/AppearanceKit.git
synced 2026-03-03 18:24:06 +01:00
Renders AppearanceKit dependencies on ContentKit & RepresentationKit optional. You can now use AppearanceKit without importing ContentKit & RepresentationKit. To avoid importing ContentKit & RepresentationKit comment the dependencies in AppearanceKit.podspec.
29 lines
1.0 KiB
Ruby
29 lines
1.0 KiB
Ruby
#
|
|
# Be sure to run `pod lib lint AppearanceKit.podspec' to ensure this is a
|
|
# valid spec before submitting.
|
|
#
|
|
# Any lines starting with a # are optional, but their use is encouraged
|
|
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
|
|
#
|
|
|
|
Pod::Spec.new do |s|
|
|
s.name = 'AppearanceKit'
|
|
s.version = '2.20'
|
|
s.summary = 'Change the appearance of UIKit elements.'
|
|
|
|
s.description = <<-DESC
|
|
Change the appearance of UIKit elements, using classes that declaratively
|
|
describe the appearance.
|
|
DESC
|
|
|
|
s.homepage = 'https://github.com/averello/AppearanceKit'
|
|
s.license = { :type => 'Apache 2.0', :file => 'LICENSE' }
|
|
s.author = { 'Georges Boumis' => 'developer.george.boumis@gmail.com' }
|
|
s.source = { :git => 'https://github.com/averello/AppearanceKit.git', :tag => s.version.to_s }
|
|
|
|
s.ios.deployment_target = '9.0'
|
|
s.source_files = 'AppearanceKit/Classes/**/*'
|
|
s.dependency 'ContentKit'
|
|
s.dependency 'RepresentationKit'
|
|
end
|