-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
removed docopt, updated versio number
- Loading branch information
Showing
4 changed files
with
3 additions
and
21 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 |
---|---|---|
|
@@ -8,7 +8,7 @@ | |
|
||
Pod::Spec.new do |s| | ||
s.name = 'Base32Crockford' | ||
s.version = '0.2.0' | ||
s.version = '0.3.0' | ||
s.summary = 'Generate, encode, and decode data in a Base32 format.' | ||
s.swift_version = '5' | ||
|
||
|
@@ -26,7 +26,7 @@ Using Douglas Crockford's Base32 encoding (https://www.crockford.com/wrmg/base32 | |
# s.screenshots = 'www.example.com/screenshots_1', 'www.example.com/screenshots_2' | ||
s.license = { :type => 'MIT', :file => 'LICENSE' } | ||
s.author = { '[email protected]' => '[email protected]' } | ||
s.source = { :git => 'https://github.com/brightdigit/Base32Crockford.git', :tag => "0.2.0" } | ||
s.source = { :git => 'https://github.com/brightdigit/Base32Crockford.git', :tag => "0.3.0" } | ||
# s.social_media_url = 'https://twitter.com/<TWITTER_USERNAME> | ||
|
||
s.source_files = 'Sources/Base32Crockford/**/*' | ||
|
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
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,3 @@ | ||
import Base32Crockford | ||
import Docopt | ||
|
||
print(Base32CrockfordEncoding.encoding.generateIdentifier(from: .default)) |