-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathAWStepBar.podspec
21 lines (19 loc) · 936 Bytes
/
AWStepBar.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 |spec|
spec.name = "AWStepBar"
spec.version = "1.0.2"
spec.summary = "AWStepBar is a UI Component that allows you to integrate a step progress UI within your app."
spec.description = <<-DESC
AWStepBar is a UI Component that allows you to integrate a step progress UI within your app.
DESC
spec.homepage = "https://github.com/Aymenworks/AWStepBar"
spec.license = { :type => "MIT", :file => "LICENSE" }
spec.author = { "Aymen Rebouh" => "aymenmse@gmail.com" }
spec.social_media_url = "https://twitter.com/aymenworks"
spec.platform = :ios, "9.0"
spec.source = { :git => "https://github.com/Aymenworks/AWStepBar.git", :tag => "#{spec.version}" }
spec.source_files = ['AWStepBar/**/*.{swift,h}']
spec.public_header_files = 'AWStepBar/**/*.h'
spec.requires_arc = true
spec.ios.deployment_target = '9.0'
spec.swift_version = "5.0"
end