cheer_up 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. checksums.yaml +7 -0
  2. data/lib/cheer_up.rb +24 -0
  3. metadata +44 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: ce1a707ff3cce24b1bc7f319f5097d370f0f3f9b
4
+ data.tar.gz: 170e5a66a695103588952bac1214ee3342ee290e
5
+ SHA512:
6
+ metadata.gz: 05ca52def2bfb1898b088d80e9d71516a2f7acb0b3d830fa1652f56ef98fba163a2152b56bad51d6829946681cf9ef074fdd4efc077bd654c6f09cee6d3ebee9
7
+ data.tar.gz: e7431c67ab1a7bcd87bc82225cdbb81a1a112ee93276d1daaaca4febdf7e7fa18dfd2599861b52e352458a5618aa3d658dd30d8f386198fbb5b10c4bc6d67377
data/lib/cheer_up.rb ADDED
@@ -0,0 +1,24 @@
1
+ class Cheer
2
+ def self.cheer_me_up
3
+
4
+ # Pay yourself a compliment!
5
+ #
6
+ # Example:
7
+ # >> Cheer.cheer_me_up
8
+ # => "Your smile lights up the room like sunshine!"
9
+ #
10
+ # Arguments:
11
+ # none
12
+
13
+ compliments = ["You look fantastic! So does your reflection!",
14
+ "My, your hair looks rather nice today! Did you use conditioner?",
15
+ "Your voice is soothing like music wrapped in silk!",
16
+ "I don't understand how you can be so cool yet so hot!",
17
+ "Your smile lights up the room like sunshine!",
18
+ "A photo of you would melt the cheese in my quesadilla!",
19
+ "You are the apple of my eye and the banana of my mouth!"]
20
+ a = compliments.sample
21
+ puts a
22
+ end
23
+
24
+ end
metadata ADDED
@@ -0,0 +1,44 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: cheer_up
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Jon Pabico
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2015-04-28 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: A gem of compliments
14
+ email: jbpabico@yahoo.com
15
+ executables: []
16
+ extensions: []
17
+ extra_rdoc_files: []
18
+ files:
19
+ - lib/cheer_up.rb
20
+ homepage: http://rubygems.org/gems/cheer_up
21
+ licenses:
22
+ - MIT
23
+ metadata: {}
24
+ post_install_message:
25
+ rdoc_options: []
26
+ require_paths:
27
+ - lib
28
+ required_ruby_version: !ruby/object:Gem::Requirement
29
+ requirements:
30
+ - - ">="
31
+ - !ruby/object:Gem::Version
32
+ version: '0'
33
+ required_rubygems_version: !ruby/object:Gem::Requirement
34
+ requirements:
35
+ - - ">="
36
+ - !ruby/object:Gem::Version
37
+ version: '0'
38
+ requirements: []
39
+ rubyforge_project:
40
+ rubygems_version: 2.2.2
41
+ signing_key:
42
+ specification_version: 4
43
+ summary: Hello Beautiful/Handsome!
44
+ test_files: []