From b69aff49970a3c7ea6cdfe234f04429cdbb657f1 Mon Sep 17 00:00:00 2001 From: Yaroslav Zhurakovskiy Date: Mon, 18 Jul 2016 15:58:23 +0300 Subject: [PATCH] Add basic PainlessInjection.podspec --- PainlessInjection.podspec | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 PainlessInjection.podspec diff --git a/PainlessInjection.podspec b/PainlessInjection.podspec new file mode 100644 index 0000000..c778593 --- /dev/null +++ b/PainlessInjection.podspec @@ -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