File tree Expand file tree Collapse file tree 1 file changed +34
-0
lines changed Expand file tree Collapse file tree 1 file changed +34
-0
lines changed Original file line number Diff line number Diff line change @@ -82,6 +82,40 @@ Herokai → Herokai
82
82
* /
83
83
```
84
84
85
+ ## Installation
86
+
87
+ ### Swift Package Manager
88
+
89
+ Add the InflectorKit package to your target dependencies in `Package.swift`:
90
+
91
+ ```swift
92
+ import PackageDescription
93
+
94
+ let package = Package(
95
+ name: "YourProject",
96
+ dependencies: [
97
+ .package(
98
+ url: "https://github.com/mattt/InflectorKit",
99
+ from: "0.0.1"
100
+ ),
101
+ ]
102
+ )
103
+ ```
104
+
105
+ Then run the ` swift build ` command to build your project.
106
+
107
+ ### CocoaPods
108
+
109
+ You can install ` InflectorKit ` via CocoaPods,
110
+ by adding the following line to your ` Podfile ` :
111
+
112
+ ``` ruby
113
+ pod ' InflectorKit' , ' ~> 0.0.1'
114
+ ```
115
+
116
+ Run the ` pod install ` command to download the library
117
+ and integrate it into your Xcode project.
118
+
85
119
## License
86
120
87
121
MIT
You can’t perform that action at this time.
0 commit comments