Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions SwiftString.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "SwiftString"
s.version = "0.3"
s.version = "0.4"
s.summary = "A lightweight string extension for Swift"

s.description = <<-DESC
Expand All @@ -13,7 +13,8 @@ Pod::Spec.new do |s|
s.source = { :git => "https://github.com/amayne/SwiftString.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/amayne'

s.platform = :ios, '8.0'
s.ios.platform = :ios, "8.0"
s.osx.platform = :osx, "9.0"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

shouldn't this be tvos and not osx?

s.requires_arc = true

s.source_files = 'Pod/Classes/**/*'
Expand Down