From b4f8e5623eca3c32eac1b9c8391bca11dca45e3e Mon Sep 17 00:00:00 2001 From: Felix-Johannes Jendrusch Date: Mon, 9 Feb 2015 18:16:04 +0100 Subject: [PATCH 1/3] Add .podspec --- Pistachio.podspec | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 Pistachio.podspec diff --git a/Pistachio.podspec b/Pistachio.podspec new file mode 100644 index 0000000..e566146 --- /dev/null +++ b/Pistachio.podspec @@ -0,0 +1,19 @@ +Pod::Spec.new do |s| + s.name = "Pistachio" + s.version = "0.0.1" + s.summary = "Functional model framework for Swift" + s.description = <<-DESC + Create adapters for your models functionally and type safe. + DESC + + s.homepage = "https://github.com/felixjendrusch/Pistachio" + s.license = { :type => "MIT", :file => "LICENSE" } + s.author = { "Felix Jendrusch" => "felix@felixjendrusch.is" } + s.social_media_url = "http://twitter.com/felixjendrusch" + s.ios.deployment_target = "8.0" + s.osx.deployment_target = "10.10" + s.source = { :git => "http://github.com/felixjendrusch/Pistachio.git", :tag => "#{s.version}" } + s.source_files = "Pistachio/*.swift" + s.requires_arc = true + s.dependency "LlamaKit", "~> 0.5.0" +end From 9c0b45626a3a118eb510d35b6d536b976e3050c6 Mon Sep 17 00:00:00 2001 From: Alexsander Akers Date: Fri, 27 Mar 2015 13:56:02 +0000 Subject: [PATCH 2/3] Update podspec --- Pistachio.podspec | 18 +++++++----------- 1 file changed, 7 insertions(+), 11 deletions(-) diff --git a/Pistachio.podspec b/Pistachio.podspec index e566146..ab5a69d 100644 --- a/Pistachio.podspec +++ b/Pistachio.podspec @@ -1,19 +1,15 @@ Pod::Spec.new do |s| s.name = "Pistachio" - s.version = "0.0.1" + s.version = "0.1.2" s.summary = "Functional model framework for Swift" - s.description = <<-DESC - Create adapters for your models functionally and type safe. - DESC - + s.description = "Create adapters for your models functionally and type safe." s.homepage = "https://github.com/felixjendrusch/Pistachio" - s.license = { :type => "MIT", :file => "LICENSE" } - s.author = { "Felix Jendrusch" => "felix@felixjendrusch.is" } - s.social_media_url = "http://twitter.com/felixjendrusch" + s.license = "MIT" + s.author = { "Felix Jendrusch" => "felix@felixjendrusch.is" } + s.social_media_url = "http://twitter.com/felixjendrusch" s.ios.deployment_target = "8.0" s.osx.deployment_target = "10.10" s.source = { :git => "http://github.com/felixjendrusch/Pistachio.git", :tag => "#{s.version}" } - s.source_files = "Pistachio/*.swift" - s.requires_arc = true - s.dependency "LlamaKit", "~> 0.5.0" + s.source_files = "Pistachio/*.swift" + s.dependency "LlamaKit", "~> 0.5.0" end From 68913be3ef7486b7d6ab80d119044f6823ecd2a9 Mon Sep 17 00:00:00 2001 From: Alexsander Akers Date: Fri, 27 Mar 2015 16:43:57 +0000 Subject: [PATCH 3/3] Please CocoaPods linter with HTTPS Git source --- Pistachio.podspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Pistachio.podspec b/Pistachio.podspec index ab5a69d..85f750c 100644 --- a/Pistachio.podspec +++ b/Pistachio.podspec @@ -9,7 +9,7 @@ Pod::Spec.new do |s| s.social_media_url = "http://twitter.com/felixjendrusch" s.ios.deployment_target = "8.0" s.osx.deployment_target = "10.10" - s.source = { :git => "http://github.com/felixjendrusch/Pistachio.git", :tag => "#{s.version}" } + s.source = { :git => "https://github.com/felixjendrusch/Pistachio.git", :tag => "#{s.version}" } s.source_files = "Pistachio/*.swift" s.dependency "LlamaKit", "~> 0.5.0" end