-
Notifications
You must be signed in to change notification settings - Fork 401
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Replace double quotes with single " -> '
- Loading branch information
1 parent
02f29e1
commit a02c4c3
Showing
1 changed file
with
7 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,19 @@ | ||
Pod::Spec.new do |s| | ||
|
||
s.name = "SwiftSocket" | ||
s.version = "2.0" | ||
s.summary = "A cool framework to work with TCP and UDP sockets" | ||
s.name = 'SwiftSocket' | ||
s.version = '2.0' | ||
s.summary = 'A cool framework to work with TCP and UDP sockets' | ||
|
||
s.description = <<-DESC | ||
SwiftSocket profieds an easy way to create TCP or UDP clients and servers 💁 | ||
DESC | ||
|
||
s.homepage = "https://github.com/swiftsocket/SwiftSocket" | ||
s.homepage = 'https://github.com/swiftsocket/SwiftSocket' | ||
|
||
s.license = { :type => "BSD" } | ||
s.license = { :type => 'BSD' } | ||
|
||
s.author = { "Dan Shevlyuk" => "[email protected]" } | ||
s.social_media_url = "http://twitter.com/danshevluk" | ||
s.author = { 'Dan Shevlyuk' => '[email protected]' } | ||
s.social_media_url = 'http://twitter.com/danshevluk' | ||
|
||
s.ios.deployment_target = '8.0' | ||
s.osx.deployment_target = '10.7' | ||
|