period_calculator 0.0.1 → 0.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +8 -8
- data/README.md +9 -2
- data/lib/period_calculator/version.rb +1 -1
- data/lib/period_calculator.rb +5 -0
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
OTMwYzQ5OGE3MDEyZmZjYzNjNWVhMTMzZWY0NDMyMTAxNTc2NWY2NQ==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
NWIzNjYxODIyNTA0OTRmMDFlNGY5NTBlYjQwY2JmNDAzOGM0ZGUzNw==
|
7
7
|
SHA512:
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
OGYyY2U1ZDZhMjFjMjQxYzE2NzMyYTQxMzRjYjM2ZWVlZTA3MTE3N2ZlMjc3
|
10
|
+
ZDI0OWUwZTE2NGQyZTQ2YTNjMjcwMGU4OGVmZjY3ODY5YzIzYzE0ODc0M2Y3
|
11
|
+
NTFmZDY5MDhiODgxMGNiZDlmZTVhZWZmN2MxN2JmOTJhZDdiMDI=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
N2Q4MzczNjU0Zjk2M2EzMmRjMzcxZjJiMGM5Mzk1OTc5NDIyMDdmNjhhYzg0
|
14
|
+
OGFjYWMzZjgxMzc0MmU5NmUxOGVjODZiZjkzYjAxMTdiMmIxYWIzMWRiOTdl
|
15
|
+
YzhlZWEzMzY1Nzk3MTAxNDAxMzM3ZWIyOTg2YTVmOTk2NmUwZjg=
|
data/README.md
CHANGED
@@ -1,6 +1,8 @@
|
|
1
1
|
# PeriodCalculator
|
2
2
|
|
3
|
-
|
3
|
+
##Know your next period date (Approx)
|
4
|
+
|
5
|
+
##We are writing IPHONE & ANDRIOD APPS for women health care.
|
4
6
|
|
5
7
|
## Installation
|
6
8
|
|
@@ -18,7 +20,12 @@ Or install it yourself as:
|
|
18
20
|
|
19
21
|
## Usage
|
20
22
|
|
21
|
-
|
23
|
+
To knoow your next period date
|
24
|
+
|
25
|
+
##
|
26
|
+
|
27
|
+
period('2014-07-10')
|
28
|
+
|
22
29
|
|
23
30
|
## Contributing
|
24
31
|
|
data/lib/period_calculator.rb
CHANGED