kimble 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.
- checksums.yaml +7 -0
- data/lib/kimble.rb +18 -0
- metadata +45 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA1:
|
|
3
|
+
metadata.gz: 48c0f5b3825b9c9492814a88d1aa5aaeac5fa4b5
|
|
4
|
+
data.tar.gz: 975bb3ba33b152245c6bbe4637fcc525ca6d0f61
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: c7da482ae95b03878d281a27cafbea8ab505015d9284e51b536fb9905905345bf029d9e0502f30ddb6729833c0ddb94a1ecec62f23b6054c80b9c8e1d8a21f33
|
|
7
|
+
data.tar.gz: 1f9faccf964c05df7a1b04acdf930cf264dfc74cb1f52800c9d44e44b8ff417c4841981ec2d89406b89e85608277be29d1f568c88b5f42b08b77ca19220fb112
|
data/lib/kimble.rb
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
class Kimble
|
|
2
|
+
|
|
3
|
+
def self.quote
|
|
4
|
+
self.quotes_list.shuffle.first
|
|
5
|
+
end
|
|
6
|
+
|
|
7
|
+
def self.quotes_list
|
|
8
|
+
[
|
|
9
|
+
"Who is your daddy and what does he do?",
|
|
10
|
+
"I'm a cop you idiot.",
|
|
11
|
+
"Get to the choppa!",
|
|
12
|
+
"I'll be back.",
|
|
13
|
+
"Hasta la vista, baby."
|
|
14
|
+
]
|
|
15
|
+
end
|
|
16
|
+
|
|
17
|
+
end
|
|
18
|
+
|
metadata
ADDED
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: kimble
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.0.1
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Michael Dao
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: bin
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2016-09-23 00:00:00.000000000 Z
|
|
12
|
+
dependencies: []
|
|
13
|
+
description: Get a random Arnold Schwarzenegger quote.
|
|
14
|
+
email:
|
|
15
|
+
- michael.dao@gmail.com
|
|
16
|
+
executables: []
|
|
17
|
+
extensions: []
|
|
18
|
+
extra_rdoc_files: []
|
|
19
|
+
files:
|
|
20
|
+
- lib/kimble.rb
|
|
21
|
+
homepage: http://rubygems.org/gems/kimble
|
|
22
|
+
licenses:
|
|
23
|
+
- MIT
|
|
24
|
+
metadata: {}
|
|
25
|
+
post_install_message:
|
|
26
|
+
rdoc_options: []
|
|
27
|
+
require_paths:
|
|
28
|
+
- lib
|
|
29
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
30
|
+
requirements:
|
|
31
|
+
- - ">="
|
|
32
|
+
- !ruby/object:Gem::Version
|
|
33
|
+
version: '0'
|
|
34
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
35
|
+
requirements:
|
|
36
|
+
- - ">="
|
|
37
|
+
- !ruby/object:Gem::Version
|
|
38
|
+
version: '0'
|
|
39
|
+
requirements: []
|
|
40
|
+
rubyforge_project:
|
|
41
|
+
rubygems_version: 2.5.1
|
|
42
|
+
signing_key:
|
|
43
|
+
specification_version: 4
|
|
44
|
+
summary: I'll be back
|
|
45
|
+
test_files: []
|