Skip to content

Commit 1e822f8

Browse files
committed
Initial commit
1 parent 57f9765 commit 1e822f8

33 files changed

+1602
-6
lines changed

EasyNSDateHandler.podspec

+5-6
Original file line numberDiff line numberDiff line change
@@ -9,21 +9,20 @@
99
Pod::Spec.new do |s|
1010
s.name = "EasyNSDateHandler"
1111
s.version = "0.1.0"
12-
s.summary = "A short description of EasyNSDateHandler."
12+
s.summary = "This library is created for avoiding boilerplate code when generating NSDate from year month date and when getting string output from NSDate."
1313

1414
# This description is used to generate tags and improve search results.
1515
# * Think: What does it do? Why did you write it? What is the focus?
1616
# * Try to keep it short, snappy and to the point.
1717
# * Write the description between the DESC delimiters below.
1818
# * Finally, don't worry about the indent, CocoaPods strips it!
19-
s.description = <<-DESC
20-
DESC
19+
s.description = "This library provides convenient methods to generate a NSDate object from year, month, date without bothering going through NSCalendar, NSDateComponent or such, as well as getting NSString output of NSDate content without creating NSDateFormatter, etc. Avoid lines of codes for just a single object creation."
2120

22-
s.homepage = "https://github.com/<GITHUB_USERNAME>/EasyNSDateHandler"
21+
s.homepage = "https://github.com/Kaopiz/EasyNSDateHandler.git"
2322
# s.screenshots = "www.example.com/screenshots_1", "www.example.com/screenshots_2"
2423
s.license = 'MIT'
25-
s.author = { "Minh Hoang" => "[email protected]" }
26-
s.source = { :git => "https://github.com/<GITHUB_USERNAME>/EasyNSDateHandler.git", :tag => s.version.to_s }
24+
s.author = { "Kaopiz@minhnh" => "[email protected]" }
25+
s.source = { :git => "https://github.com/Kaopiz/EasyNSDateHandler.git", :tag => s.version.to_s }
2726
# s.social_media_url = 'https://twitter.com/<TWITTER_USERNAME>'
2827

2928
s.platform = :ios, '7.0'

Example/EasyNSDateHandler.xcworkspace/contents.xcworkspacedata

+10
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Example/Podfile.lock

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
PODS:
2+
- EasyNSDateHandler (0.1.0)
3+
4+
DEPENDENCIES:
5+
- EasyNSDateHandler (from `../`)
6+
7+
EXTERNAL SOURCES:
8+
EasyNSDateHandler:
9+
:path: ../
10+
11+
SPEC CHECKSUMS:
12+
EasyNSDateHandler: 67f6a0fd71a47942a77895949e57a62693d0ae57
13+
14+
COCOAPODS: 0.39.0

Example/Pods/Local Podspecs/EasyNSDateHandler.podspec.json

+25
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Example/Pods/Manifest.lock

+14
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Example/Pods/Pods.xcodeproj/project.pbxproj

+777
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Example/Pods/Pods.xcodeproj/xcshareddata/xcschemes/EasyNSDateHandler.xcscheme

+60
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Example/Pods/Target Support Files/EasyNSDateHandler/EasyNSDateHandler-dummy.m

+5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Example/Pods/Target Support Files/EasyNSDateHandler/EasyNSDateHandler-prefix.pch

+4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Example/Pods/Target Support Files/EasyNSDateHandler/EasyNSDateHandler-umbrella.h

+6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Example/Pods/Target Support Files/EasyNSDateHandler/EasyNSDateHandler.modulemap

+6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Example/Pods/Target Support Files/EasyNSDateHandler/EasyNSDateHandler.xcconfig

+4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Example/Pods/Target Support Files/EasyNSDateHandler/Info.plist

+26
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Example/Pods/Target Support Files/Pods-EasyNSDateHandler_Example/Info.plist

+26
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Example/Pods/Target Support Files/Pods-EasyNSDateHandler_Example/Pods-EasyNSDateHandler_Example-acknowledgements.markdown

+26
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Example/Pods/Target Support Files/Pods-EasyNSDateHandler_Example/Pods-EasyNSDateHandler_Example-acknowledgements.plist

+56
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Example/Pods/Target Support Files/Pods-EasyNSDateHandler_Example/Pods-EasyNSDateHandler_Example-dummy.m

+5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)