lemmys_quotes 0.0.1

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.
Files changed (3) hide show
  1. checksums.yaml +7 -0
  2. data/lib/lemmys_quotes.rb +12 -0
  3. metadata +42 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 34445641db0f5a2f296ecf19fa0ad404808ca8b2e3c6a95465445be8ecd60c20
4
+ data.tar.gz: a059c96298d04576f7fc99f0372e5adb414de4565c5591c4eee56344ba27ab2b
5
+ SHA512:
6
+ metadata.gz: f55a310c4d13041d85a9991b897842be65e03ead6580cfe18cd0d568ff22e293466ca971c2ba198829738918ed4f3a064cb9218f099bdcb24e681936ec16c09a
7
+ data.tar.gz: afe7d4570fa7b62ebf2f73e74fc506e4292463cd7f203d4b6f102bbb4b923e5732dc3b21fccba55977dfe30e09e703c9b1be4091e64499b68bbb325f20b65dcb
@@ -0,0 +1,12 @@
1
+ class String
2
+ QUOTES = [
3
+ "Born to lose. Live to win.",
4
+ "If you didn't do anything that wasn't good for you it would be a very dull life. What are you gonna do? Everything that is pleasant in life is dangerous. Have you noticed that? I'd like to find the bastard that thought that one up.",
5
+ "That was a great time, the summer of '71 - I can't remember it, but I'll never forget it!",
6
+ "If there is a God he hasn’t been paying attention. He should retire and hand over to a younger man, because he’s making a real bollocks of everything.",
7
+ "We are Motörhead. And we play rock and roll.",
8
+ "We were a blues band, really. Although we played it at a thousand miles an hour, it was recognizable as blues – at least to us it was; probably it wasn’t to anybody else."
9
+ ]
10
+
11
+ def lemmy_says; QUOTES.sample end
12
+ end
metadata ADDED
@@ -0,0 +1,42 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: lemmys_quotes
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Lincoln Marcolongo
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2023-01-15 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description:
14
+ email:
15
+ executables: []
16
+ extensions: []
17
+ extra_rdoc_files: []
18
+ files:
19
+ - lib/lemmys_quotes.rb
20
+ homepage:
21
+ licenses: []
22
+ metadata: {}
23
+ post_install_message:
24
+ rdoc_options: []
25
+ require_paths:
26
+ - lib
27
+ required_ruby_version: !ruby/object:Gem::Requirement
28
+ requirements:
29
+ - - ">="
30
+ - !ruby/object:Gem::Version
31
+ version: '0'
32
+ required_rubygems_version: !ruby/object:Gem::Requirement
33
+ requirements:
34
+ - - ">="
35
+ - !ruby/object:Gem::Version
36
+ version: '0'
37
+ requirements: []
38
+ rubygems_version: 3.3.3
39
+ signing_key:
40
+ specification_version: 4
41
+ summary: A gem to give you beautiful quotes straight from hell by Lemmy Kilmster
42
+ test_files: []