Skip to content

Commit

Permalink
Update .podspec
Browse files Browse the repository at this point in the history
  • Loading branch information
temoki committed Aug 12, 2016
1 parent 254913b commit fb5b4b5
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions 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

0 comments on commit fb5b4b5

Please sign in to comment.