creepcheck 3182.0.0 → 3182.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 +4 -4
- data/lib/creep_check.rb +3 -3
- metadata +8 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 423eee1fcfbbf893dcd859e57e42c056e8cc13df
|
4
|
+
data.tar.gz: 30fab106d3919df4df29a5c542731f7e3ae211ad
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 64e0752199c1d0eb122fb7d293396c07274e99d08787392a0aa1dcb342914ce1a71afc9dda0fd6d80bf9a5404bd3b8fb9990b21bdac2e246cdc3bdcc6c72ba92
|
7
|
+
data.tar.gz: 1fb783d1c52387a3e1b0d2882660c1d181a3b2618908e7864cf6a9ac844681fd9bd5466b6779f28ae97e5e60aec9c977c16271301e0f3bc7ada232f97f20ef5e
|
data/lib/creep_check.rb
CHANGED
@@ -11,7 +11,7 @@ young lady born in 2002 would definitely be considered a creep by the standards
|
|
11
11
|
of the half-plus-seven formula, thus the "true" result.
|
12
12
|
|
13
13
|
Objects are instantiated by providing the birthdate of the subject of a
|
14
|
-
|
14
|
+
creepcheck (e.g. yourself) and, optionally, a date you want the program to
|
15
15
|
assume is the "current date"; if that date is not supplied, CreepCheck will use
|
16
16
|
the actual current date for methods that require a "current" date.
|
17
17
|
|
@@ -82,7 +82,7 @@ When working with an instance of CreepCheck, no methods take a specified
|
|
82
82
|
characteristic of the instance. Thus, the new method takes a specified
|
83
83
|
"current" date as an optional parameter or, without the parameter,
|
84
84
|
automatically sets the "current" date to the current date as of the
|
85
|
-
instantiation of the object. Whether this behavior is
|
85
|
+
instantiation of the object. Whether this behavior is correct is perhaps open
|
86
86
|
to interpretation or debate, so it may change in some future version of
|
87
87
|
CreepCheck.
|
88
88
|
|
@@ -102,7 +102,7 @@ class CreepCheck
|
|
102
102
|
end
|
103
103
|
|
104
104
|
def self.version
|
105
|
-
'3182.0.
|
105
|
+
'3182.0.2'
|
106
106
|
end
|
107
107
|
|
108
108
|
def creep?(younger)
|
metadata
CHANGED
@@ -1,26 +1,26 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: creepcheck
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3182.0.
|
4
|
+
version: 3182.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Chad Perrin
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2017-04-02 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: |2
|
14
14
|
CreepCheck is a Ruby library that provides an API for checking romantic age
|
15
15
|
compatibility based on the popular half-plus-seven formula for determining
|
16
|
-
when it is socially (in)appropriate for people to date based on their
|
17
|
-
|
16
|
+
when it is socially (in)appropriate for people to date based on their
|
17
|
+
relative ages. It comes with a sample command line interface utility.
|
18
18
|
|
19
19
|
Opinions vary on appropriate age differences in romantic relationships, but
|
20
|
-
the half-plus-seven formula seems to approximate United States cultural
|
21
|
-
|
22
|
-
|
23
|
-
propriateness of relationships between characters in fictional contexts,
|
20
|
+
the half-plus-seven formula seems to approximate United States cultural
|
21
|
+
biases about appropriate age differences pretty well. This library and
|
22
|
+
utility package was originally created as a joke related to assessing the
|
23
|
+
ap propriateness of relationships between characters in fictional contexts,
|
24
24
|
such as in fantasy/sci-fi prose and roleplaying games. It is not intended
|
25
25
|
to be treated as a substitute for moral fiber or individual judgement, and
|
26
26
|
no guarantees are made about the likelihood one's family or local courts of
|