Add basic PainlessInjection.podspec

This commit is contained in:
Yaroslav Zhurakovskiy 2016-07-18 15:58:23 +03:00
parent 6b7a1ff1af
commit b69aff4997
1 changed files with 27 additions and 0 deletions

27
PainlessInjection.podspec Normal file
View File

@ -0,0 +1,27 @@
Pod::Spec.new do |s|
s.name = "PainlessInjection"
s.version = "0.0.1"
s.summary = "PainlessInjection is a lightweight dependency injection framework for Swift."
s.description = <<-DESC
DESC
s.homepage = "https://github.com/yaroslav-zhurakovskiy/PainlessInjection"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "yaroslav-zhurakovskiy" => "yaroslav.zhurakovskiy@gmail.com" }
s.platform = :ios, "8.0"
s.source = { :git => "https://github.com/yaroslav-zhurakovskiy/PainlessInjection.git"}
s.source_files = "PainlessInjection",
"PainlessInjection/**/*.swift",
"PainlessInjectionLoader",
"PainlessInjectionLoader/**/*.{h,m}"
s.requires_arc = true
end