From fb5b4b595791624a5e15afb4a17eb991e2bef6d3 Mon Sep 17 00:00:00 2001 From: temoki Date: Fri, 12 Aug 2016 17:15:37 +0900 Subject: [PATCH] Update .podspec --- Tortoise.podspec | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/Tortoise.podspec b/Tortoise.podspec index 51a72de..b00915c 100644 --- a/Tortoise.podspec +++ b/Tortoise.podspec @@ -1,14 +1,16 @@ Pod::Spec.new do |s| s.name = 'Tortoise' s.version = '0.0.1' + s.cocoapods_version = '>= 1.0.0' + s.authors = 'temoki' + s.license = { :type => 'MIT', :file => 'LICENSE' } + s.homepage = 'https://github.com/temoki/Tortoise' + s.source = { :git => 'https://github.com/temoki/Tortoise' } s.summary = 'Turtle graphics engine for iOS.' s.description = 'Tortoise is a turtle graphics engine for iOS. This project supports only Swift 3 and Xcode 8.' - s.homepage = 'https://github.com/temoki/Tortoise' - s.license = { :type => 'MIT', :file => 'LICENSE' } - s.authors = 'temoki' + s.platform = :ios s.ios.deployment_target = '10.0' - s.frameworks = 'Foundation', 'CoreGraphics' - s.source = { :git => 'https://github.com/temoki/Tortoise' } - s.source_files = 'Tortoise/*' s.requires_arc = true + s.frameworks = 'Foundation', 'CoreGraphics' + s.source_files = 'Tortoise/*', 'Tortoise/Private/*' end