From 97782fa4d6a4e283af5c57cb1a80b93d107fd993 Mon Sep 17 00:00:00 2001 From: Tomek Date: Sun, 22 Jul 2012 22:59:44 +0200 Subject: [PATCH 1/2] Added podspec for Syringe (dependency injection framework for iOS/OSX). --- Syringe/0.9/Syringe.podspec | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 Syringe/0.9/Syringe.podspec diff --git a/Syringe/0.9/Syringe.podspec b/Syringe/0.9/Syringe.podspec new file mode 100644 index 00000000000000..7fa315568fba6e --- /dev/null +++ b/Syringe/0.9/Syringe.podspec @@ -0,0 +1,22 @@ +# +# Be sure to run `pod spec lint Syringe.podspec' to ensure this is a +# valid spec. +# +# Remove all comments before submitting the spec. Optional attributes are commented. +# +# For details see: https://github.com/CocoaPods/CocoaPods/wiki/The-podspec-format +# +Pod::Spec.new do |s| + s.name = "Syringe" + s.version = "0.9" + s.summary = "Lightweight and magic dependency injection framework. Uses ObjC runtime to do the magic." + s.homepage = "https://github.com/tomekc/Syringe" + s.license = { :type => 'Apache' } + s.author = { "Tomek Cejner" => "tomek.cejner@gmail.com" } + s.source = { :git => "https://github.com/tomekc/Syringe.git", :tag => "0.9" } + +# Compatible with iOS and OS X +# s.platform = :ios + + s.source_files = 'SyringeCore/*.{h,m}' +end From 0239e63b34f8861ae5f8dd0e54fa2cfba126efa6 Mon Sep 17 00:00:00 2001 From: Tomek Date: Sun, 22 Jul 2012 22:59:44 +0200 Subject: [PATCH 2/2] Added podspec for Syringe (dependency injection framework for iOS/OSX). --- Syringe/0.9/Syringe.podspec | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) diff --git a/Syringe/0.9/Syringe.podspec b/Syringe/0.9/Syringe.podspec index 7fa315568fba6e..1cf1c2bbe33f4b 100644 --- a/Syringe/0.9/Syringe.podspec +++ b/Syringe/0.9/Syringe.podspec @@ -1,11 +1,3 @@ -# -# Be sure to run `pod spec lint Syringe.podspec' to ensure this is a -# valid spec. -# -# Remove all comments before submitting the spec. Optional attributes are commented. -# -# For details see: https://github.com/CocoaPods/CocoaPods/wiki/The-podspec-format -# Pod::Spec.new do |s| s.name = "Syringe" s.version = "0.9" @@ -14,9 +6,6 @@ Pod::Spec.new do |s| s.license = { :type => 'Apache' } s.author = { "Tomek Cejner" => "tomek.cejner@gmail.com" } s.source = { :git => "https://github.com/tomekc/Syringe.git", :tag => "0.9" } - -# Compatible with iOS and OS X -# s.platform = :ios - s.source_files = 'SyringeCore/*.{h,m}' + s.compiler_flags = '-Wno-deprecated-declarations' end