From f20fa10aec716f818ac94b46a4bbbf015bdcd26b Mon Sep 17 00:00:00 2001 From: Ivan Smolin Date: Mon, 10 Oct 2016 17:34:43 +0300 Subject: [PATCH] [Add] Convertible (1.1.0) --- Convertible/1.1.0/Convertible.podspec | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 Convertible/1.1.0/Convertible.podspec diff --git a/Convertible/1.1.0/Convertible.podspec b/Convertible/1.1.0/Convertible.podspec new file mode 100644 index 0000000..44889d9 --- /dev/null +++ b/Convertible/1.1.0/Convertible.podspec @@ -0,0 +1,26 @@ +Pod::Spec.new do |s| + s.name = "Convertible" + s.version = "1.1.0" + s.summary = "Swift Framework For Conversions Between JSON, Data And More" + s.description = <<-DESC + Converting your basic types and models to-and-from JSON, binary data, etc. is a common task in application development. + Convertible defines a collection of Swift protocols and implementations that makes the conversion process easy, so you don't have to write boilerplate code. + DESC + s.homepage = "https://github.com/petropavel13/Convertible" + s.license = { :type => "MIT", :file => "LICENSE" } + s.author = { "Brad Hilton" => "brad@skyvive.com" } + s.source = { :git => "https://github.com/petropavel13/Convertible.git", :tag => "1.1.0" } + + s.ios.deployment_target = "8.0" + s.watchos.deployment_target = "2.0" + s.tvos.deployment_target = "9.0" + s.osx.deployment_target = "10.9" + + s.source_files = "Convertible", "Sources/**/*.{swift,h,m}" + s.ios.exclude_files = "Sources/**/NSImage+Convertible.swift" + s.watchos.exclude_files = "Sources/**/NSImage+Convertible.swift" + s.tvos.exclude_files = "Sources/**/NSImage+Convertible.swift" + s.osx.exclude_files = "Sources/**/UIImage+Convertible.swift" + s.requires_arc = true + s.dependency 'Reflection', '~> 0.15.0' +end \ No newline at end of file