This repository was archived by the owner on Feb 2, 2022. It is now read-only.
File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ Pod::Spec.new do |s|
1616 #
1717
1818 s . name = "Codemine"
19- s . version = "0. 1.0"
19+ s . version = "1.0.1 "
2020 s . summary = "A gold mine of code, filled with neat utility functions."
2121
2222 # This description is used to generate tags and improve search results.
@@ -133,4 +133,4 @@ Pod::Spec.new do |s|
133133 # s.xcconfig = { "HEADER_SEARCH_PATHS" => "$(SDKROOT)/usr/include/libxml2" }
134134 # s.dependency "JSONKit", "~> 1.4"
135135
136- end
136+ end
Original file line number Diff line number Diff line change @@ -20,6 +20,19 @@ Codemine is a collection of extensions containing useful functions and syntactic
2020
2121## 📦 Installation
2222
23+ ### CocoaPods
24+
25+ If you are using CocoaPods add this text to your Podfile and run ` pod install ` .
26+ ~~~
27+ pod 'Codemine', '~>1.0.0'
28+
29+ # Swift 2.3
30+ pod 'Codemine', '~>0.2.5'
31+
32+ # Swift 2.2
33+ pod 'Codemine', '~>0.2.2'
34+ ~~~
35+
2336### Carthage
2437~~~
2538github "nodes-ios/Codemine" ~> 1.0
@@ -105,7 +118,7 @@ This method appends the `size` multiplied by `UIScreen.main.scale` to an asset u
105118``` swift
106119let camelCaseStr1 = " userId"
107120let camelCaseStr2 = " isUserActiveMemberOfCurrentGroup"
108-
121+
109122print (camelCaseStr1.camelCaseToUnderscore ()) // "user_id"
110123print (camelCaseStr2.camelCaseToUnderscore ()) // "is_user_active_member_of_current_group"
111124```
@@ -164,7 +177,7 @@ DispatchQueue.main.asyncAfter(deadline: 5) { /* ... */ }
164177```
165178
166179## 👥 Credits
167- Made with ❤️ at [ Nodes] ( http://nodesagency.com ) .
180+ Made with ❤️ at [ Nodes] ( http://nodesagency.com ) .
168181
169182` Application ` and ` Then ` were borrowed from Hyper's [ Sugar] ( https://github.com/hyperoslo/Sugar ) 🙈.
170183
You can’t perform that action at this time.
0 commit comments