Skip to content

Commit 9b69484

Browse files
Update for swift
1 parent d8cbcc0 commit 9b69484

File tree

14 files changed

+274
-534
lines changed

14 files changed

+274
-534
lines changed

.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
48 KB
Binary file not shown.
Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3+
<plist version="1.0">
4+
<dict>
5+
<key>SchemeUserState</key>
6+
<dict>
7+
<key>InflectorKit-Package.xcscheme_^#shared#^_</key>
8+
<dict>
9+
<key>orderHint</key>
10+
<integer>2</integer>
11+
</dict>
12+
<key>InflectorKit.xcscheme_^#shared#^_</key>
13+
<dict>
14+
<key>orderHint</key>
15+
<integer>1</integer>
16+
</dict>
17+
<key>Pluralize.xcscheme_^#shared#^_</key>
18+
<dict>
19+
<key>orderHint</key>
20+
<integer>3</integer>
21+
</dict>
22+
<key>pluralize.xcscheme_^#shared#^_</key>
23+
<dict>
24+
<key>orderHint</key>
25+
<integer>0</integer>
26+
</dict>
27+
</dict>
28+
<key>SuppressBuildableAutocreation</key>
29+
<dict>
30+
<key>InflectorKit</key>
31+
<dict>
32+
<key>primary</key>
33+
<true/>
34+
</dict>
35+
<key>InflectorKitTests</key>
36+
<dict>
37+
<key>primary</key>
38+
<true/>
39+
</dict>
40+
<key>Pluralize</key>
41+
<dict>
42+
<key>primary</key>
43+
<true/>
44+
</dict>
45+
</dict>
46+
</dict>
47+
</plist>

InflectorKit.podspec

Lines changed: 0 additions & 36 deletions
This file was deleted.

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2013 - 2020 Mattt (https://mat.tt)
1+
Copyright (c) 2013 - 2021 Mattt (https://mat.tt)
22

33
Permission is hereby granted, free of charge, to any person obtaining a copy
44
of this software and associated documentation files (the "Software"), to deal

Package.swift

Lines changed: 5 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,18 @@
11
// swift-tools-version:5.2
2-
// The swift-tools-version declares the minimum version of Swift required to build this package.
3-
42
import PackageDescription
53

64
let package = Package(
7-
name: "InflectorKit",
5+
name: "pluralize",
86
products: [
9-
.library(
10-
name: "InflectorKit",
11-
targets: ["InflectorKit"]
12-
)
7+
.library(name: "Pluralize", targets: ["Pluralize"])
138
],
149
dependencies: [],
1510
targets: [
16-
.target(
17-
name: "InflectorKit"
18-
),
11+
.target(name: "Pluralize"),
1912
.testTarget(
20-
name: "InflectorKitTests",
13+
name: "PluralizeTests",
2114
dependencies: [
22-
.target(name: "InflectorKit")
15+
.target(name: "Pluralize")
2316
]
2417
)
2518
]

Sources/InflectorKit/NSString+InflectorKit.m

Lines changed: 0 additions & 40 deletions
This file was deleted.

0 commit comments

Comments
 (0)