This repository has been archived by the owner on Jun 20, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed characters deprecation warnings. Updated meta data
- Loading branch information
1 parent
d88afd4
commit d0b54a6
Showing
7 changed files
with
54 additions
and
45 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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,4 +1,5 @@ | ||
source "https://rubygems.org" | ||
|
||
gem "cocoapods" | ||
gem "synx" | ||
gem "jazzy" |
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
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,25 +1,29 @@ | ||
Pod::Spec.new do |s| | ||
# Version | ||
s.version = '0.3.1' | ||
s.swift_version = '4.0' | ||
|
||
# Meta | ||
s.name = 'Guitar' | ||
s.version = '0.3.0' | ||
s.summary = 'A Cross-Platform String and Regular Expression Library Written in Swift.' | ||
|
||
description = <<-DESC | ||
A Cross-Platform String and Regular Expression Library written in Swift. | ||
s.homepage = 'https://github.com/ArtSabintsev/Guitar' | ||
s.social_media_url = 'https://twitter.com/artsabintsev' | ||
s.license = { :type => 'MIT', :file => 'LICENSE' } | ||
s.author = { 'Arthur Ariel Sabintsev' => '[email protected]' } | ||
s.description = <<-DESC | ||
A Cross-Platform String and Regular Expression Library written in Swift. | ||
DESC | ||
|
||
# Deployment Targets | ||
s.ios.deployment_target = '9.0' | ||
s.osx.deployment_target = '10.11' | ||
s.tvos.deployment_target = '9.0' | ||
s.watchos.deployment_target = '3.0' | ||
|
||
s.homepage = 'https://github.com/ArtSabintsev/Guitar' | ||
s.license = { :type => 'MIT', :file => 'LICENSE' } | ||
s.author = { 'Arthur Ariel Sabintsev' => '[email protected]' } | ||
# Sources | ||
s.source = { :git => 'https://github.com/ArtSabintsev/Guitar.git', :tag => s.version.to_s } | ||
s.social_media_url = 'https://twitter.com/artsabintsev' | ||
|
||
s.framework = 'Foundation' | ||
|
||
s.source_files = 'Sources/*.swift' | ||
|
||
end |
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
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
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