Skip to content

Commit

Permalink
removed docopt, updated versio number
Browse files Browse the repository at this point in the history
  • Loading branch information
leogdion committed Mar 24, 2020
1 parent 235894a commit b18045a
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 21 deletions.
4 changes: 2 additions & 2 deletions Base32Crockford.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -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'

Expand All @@ -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/**/*'
Expand Down
16 changes: 0 additions & 16 deletions Package.resolved

This file was deleted.

3 changes: 1 addition & 2 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ let package = Package(
dependencies: [
// Dependencies declare other packages that this package depends on.
// .package(url: /* package url */, from: "1.0.0"),
.package(url: "https://github.com/elegantchaos/docopt.swift.git", from: "0.6.8")
],
targets: [
// Targets are the basic building blocks of a package. A target can define a module or a test suite.
Expand All @@ -31,7 +30,7 @@ let package = Package(
),
.target(
name: "base32dc",
dependencies: ["Base32Crockford", "Docopt"]
dependencies: ["Base32Crockford"]
),
.testTarget(
name: "Base32CrockfordTests",
Expand Down
1 change: 0 additions & 1 deletion Sources/base32dc/main.swift
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import Base32Crockford
import Docopt

print(Base32CrockfordEncoding.encoding.generateIdentifier(from: .default))

0 comments on commit b18045a

Please sign in to comment.