From 34f932741b97cd7656320d0750cb31d4a0f0c982 Mon Sep 17 00:00:00 2001 From: Florian Morello Date: Mon, 2 Nov 2015 18:52:25 +0100 Subject: [PATCH 1/2] add tvos --- QRCode.podspec | 1 + 1 file changed, 1 insertion(+) diff --git a/QRCode.podspec b/QRCode.podspec index 1843129..5412cbb 100644 --- a/QRCode.podspec +++ b/QRCode.podspec @@ -8,6 +8,7 @@ Pod::Spec.new do |s| s.author = { "Alexander Schuch" => "alexander@schuch.me" } s.social_media_url = "http://twitter.com/schuchalexander" s.platform = :ios, "8.0" + s.platform = :tvos, "9.0" s.source = { :git => "https://github.com/aschuch/QRCode.git", :tag => s.version } s.requires_arc = true s.source_files = "QRCode/QRCode.swift", "QRCode/UIImageViewExtension.swift", "QRCode/CIColorExtension.swift" From 82c16a27211d9e835c48877e9679cd1c101317a9 Mon Sep 17 00:00:00 2001 From: Florian Morello Date: Tue, 3 Nov 2015 15:36:24 +0100 Subject: [PATCH 2/2] fix platform format --- QRCode.podspec | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/QRCode.podspec b/QRCode.podspec index 5412cbb..c156198 100644 --- a/QRCode.podspec +++ b/QRCode.podspec @@ -7,8 +7,7 @@ Pod::Spec.new do |s| s.license = { :type => "MIT", :file => "LICENSE" } s.author = { "Alexander Schuch" => "alexander@schuch.me" } s.social_media_url = "http://twitter.com/schuchalexander" - s.platform = :ios, "8.0" - s.platform = :tvos, "9.0" + s.platform = :ios, "8.0", :tvos s.source = { :git => "https://github.com/aschuch/QRCode.git", :tag => s.version } s.requires_arc = true s.source_files = "QRCode/QRCode.swift", "QRCode/UIImageViewExtension.swift", "QRCode/CIColorExtension.swift"