-
Notifications
You must be signed in to change notification settings - Fork 26
/
Mirror.podspec
24 lines (21 loc) · 1005 Bytes
/
Mirror.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
Pod::Spec.new do |s|
s.name = "Mirror"
s.version = "0.2.4"
s.summary = "Mirror - the most simle runtime reflection API in Swift."
s.description = <<-DESC
Mirror provides a nice API for working with MirrorType
and reflect functions in Swift
DESC
s.homepage = "https://github.com/kostiakoval/Mirror"
# s.screenshots = "www.example.com/screenshots_1", "www.example.com/screenshots_2"
s.license = 'MIT'
s.author = { "Konstantin Koval" => "[email protected]" }
s.source = { :git => "https://github.com/kostiakoval/Mirror.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/kostiakoval'
s.platform = :ios, '8.0'
s.requires_arc = true
s.source_files = 'Mirror/*.swift'
# s.public_header_files = 'Pod/Classes/**/*.h'
# s.frameworks = 'UIKit', 'MapKit'
# s.dependency 'AFNetworking', '~> 2.3'
end