vamp 0.1.5 → 0.1.6
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/README.md +3 -0
- data/lib/vamp.rb +11 -5
- data/lib/vamp/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7038a3ca38432767cad64e951a5338cf22503946
|
|
4
|
+
data.tar.gz: 94e7f49f1c01efe6dd78de431b2e1e3f9bd49ad7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 56b02702d643263c9adeba8e70e8b9ebba4250497498af260cf3be8747af97dee7fb75ebccd27cdfff1918c2296c9049cb2c8ab7b426395f875aae98e7b1ae19
|
|
7
|
+
data.tar.gz: 04fd3ea32c98a22d10aa8551738d675491c66456ba9961eefb7c40ee349f5c857a8f356359d66726c906055de03b7f6484af89bcde21d283eeb5612c9fcc41a3
|
data/README.md
CHANGED
|
@@ -4,6 +4,7 @@ Want to pimp up your command line interface?
|
|
|
4
4
|
Just require this gem, insert some code and your CLI makes witty vampire quotes.
|
|
5
5
|
You can even play animated ascii art in a console window.
|
|
6
6
|
|
|
7
|
+
|
|
7
8
|
## Installation
|
|
8
9
|
|
|
9
10
|
Add this line to your application's Gemfile:
|
|
@@ -20,6 +21,7 @@ Or install it yourself as:
|
|
|
20
21
|
|
|
21
22
|
$ gem install vamp
|
|
22
23
|
|
|
24
|
+
|
|
23
25
|
## Usage with thor
|
|
24
26
|
|
|
25
27
|
```ruby
|
|
@@ -83,3 +85,4 @@ To install this gem onto your local machine, run `bundle exec rake install`. To
|
|
|
83
85
|
3. Commit your changes (`git commit -am 'Add some feature'`)
|
|
84
86
|
4. Push to the branch (`git push origin my-new-feature`)
|
|
85
87
|
5. Create a new Pull Request
|
|
88
|
+
|
data/lib/vamp.rb
CHANGED
|
@@ -42,9 +42,9 @@ module Vamp
|
|
|
42
42
|
"Some things aren't meant for sunlight. The only place for them is in the shadows.",
|
|
43
43
|
"Is that all I was to you, a one-bite stand?",
|
|
44
44
|
"Though I cannot predict the future, the consequences of this night will reverberate through the halls" \
|
|
45
|
-
" of both great covens for many years to come",
|
|
45
|
+
" of both great covens for many years to come.",
|
|
46
46
|
"Whether you like it or not, you are in middle of a war that has been raging for the better part of a" \
|
|
47
|
-
" thousand years",
|
|
47
|
+
" thousand years.",
|
|
48
48
|
"There is a good reason why these rules were created, and they are the only reason we have survived this long!",
|
|
49
49
|
"First rule about vampires, don`t believe anything you read.",
|
|
50
50
|
"Stupid, unreliable vampire.",
|
|
@@ -55,8 +55,8 @@ module Vamp
|
|
|
55
55
|
"One thing vampire children are taught is, never run with a wooden stake.",
|
|
56
56
|
"The unknown is now my reality, for I do not yet understand what I have become." \
|
|
57
57
|
" The future brings so many questions, so many fears. But the first step, the first day, has arrived.",
|
|
58
|
-
"Please forgive me, but I desperately need your guidance. I
|
|
59
|
-
"
|
|
58
|
+
"Please forgive me, but I desperately need your guidance. I apologize for breaking the chain and awakening you" \
|
|
59
|
+
" ahead of schedule, but I fear we may all be in grave danger.",
|
|
60
60
|
"I just feel like all the sand is at the bottom of the hour glass or something.",
|
|
61
61
|
"Only those prepared to die will find eternal life.",
|
|
62
62
|
"I remember everything. It's a burden.",
|
|
@@ -88,7 +88,13 @@ module Vamp
|
|
|
88
88
|
" I follow my blood, which doesn't exactly rush in the direction of my brain. So I make a lot of mistakes," \
|
|
89
89
|
" a lot of wrong bloody calls. A hundred plus years, and there's only one thing I've been sure of: you.",
|
|
90
90
|
"I have come to redefine the words pain and suffering since I fell in love with you.",
|
|
91
|
-
"It's officially nippy. So say my nips."
|
|
91
|
+
"It's officially nippy. So say my nips.",
|
|
92
|
+
"What the hell is going on? What's happening to me?",
|
|
93
|
+
"You can never come here again. They'll kill you. Do you understand?",
|
|
94
|
+
"Incoherent thoughts and images, nothing more. Which is precisely why the Awakening is performed by an elder." \
|
|
95
|
+
" You do not possess the necessary skills. ",
|
|
96
|
+
"He comes in, he does his job and then he goes home. Other than that, I really don't know what to tell you.",
|
|
97
|
+
"In one night the lies that had united our kind had been exposed."
|
|
92
98
|
].sample
|
|
93
99
|
end
|
|
94
100
|
end
|
data/lib/vamp/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: vamp
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.6
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Michael Meyling
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-
|
|
11
|
+
date: 2016-12-21 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rake
|