Skip to content

Commit 20941de

Browse files
authored
Create Reflection.podspec
1 parent 0d5fc6f commit 20941de

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

Reflection.podspec

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
Pod::Spec.new do |s|
2+
s.name = "Reflection"
3+
s.version = "0.14.2"
4+
s.summary = "Advanced Swift Reflection"
5+
s.description = <<-DESC
6+
Reflection enables advanced runtime features like dynamic construction of types and manipulating instance properties.
7+
DESC
8+
s.homepage = "https://github.com/Zewo/Reflection"
9+
s.license = { :type => "MIT", :file => "LICENSE" }
10+
s.author = { "Brad Hilton" => "[email protected]" }
11+
s.source = { :git => "https://github.com/Zewo/Reflection", :tag => "0.14.2" }
12+
13+
s.ios.deployment_target = "8.0"
14+
s.tvos.deployment_target = "9.0"
15+
s.osx.deployment_target = "10.9"
16+
17+
s.source_files = "Sources", "Sources/**/*.{swift}"
18+
s.requires_arc = true
19+
end

0 commit comments

Comments
 (0)