vamp 0.1.6 → 0.1.7
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 +5 -5
- data/.travis.yml +13 -5
- data/Gemfile +7 -0
- data/README.md +2 -0
- data/lib/vamp/graphic.rb +1 -1
- data/lib/vamp/ply.rb +4 -4
- data/lib/vamp/version.rb +1 -1
- data/lib/vamp.rb +14 -6
- data/spec/graphic/transfer5_spec.rb +2 -2
- data/vamp.gemspec +2 -0
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: 2c555a4c101dd78d0a4a568ed447c2315b1a140ca6d51093228b0748cc4e0bf7
|
|
4
|
+
data.tar.gz: 88b72792c4bc8dbd62e5ee07c6070c36db529abf50d7d98fd819eb6ddbe49de9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ae04e8d7d139e9b6408991bf1cfdbbc537cbfa3b5b89186416c8a5b540bcb6f78a880002497a302eb15a9913a6ddb5e21f8d8dc41e44220a8a61258a6b8af398
|
|
7
|
+
data.tar.gz: 9c3134a16097b8718c545957a1f5d2b13a7735c0b1a8f5f958c09b597adcb82d78660be24c717236d5282bcbd3345d14f9f18a7d78d22bc6897ff5197ced3f8a
|
data/.travis.yml
CHANGED
|
@@ -1,9 +1,17 @@
|
|
|
1
1
|
language: ruby
|
|
2
2
|
rvm:
|
|
3
|
-
- 2.1.5
|
|
4
|
-
- 2.2.0
|
|
5
3
|
- 1.9.3
|
|
6
|
-
-
|
|
7
|
-
-
|
|
4
|
+
- 2.0.0
|
|
5
|
+
- 2.1.10
|
|
6
|
+
- 2.2.6
|
|
7
|
+
- 2.3.3
|
|
8
|
+
- 2.4.0
|
|
9
|
+
- ruby-head
|
|
10
|
+
- jruby-9.1.5.0
|
|
8
11
|
- jruby-19mode
|
|
9
|
-
-
|
|
12
|
+
- jruby-head
|
|
13
|
+
matrix:
|
|
14
|
+
fast_finish: true
|
|
15
|
+
allow_failures:
|
|
16
|
+
- rvm: jruby-head
|
|
17
|
+
- rvm: ruby-head
|
data/Gemfile
CHANGED
|
@@ -2,3 +2,10 @@ source 'https://rubygems.org'
|
|
|
2
2
|
|
|
3
3
|
# Specify your gem's dependencies in vamp.gemspec
|
|
4
4
|
gemspec
|
|
5
|
+
|
|
6
|
+
# only for local testing but not needed for spec tests
|
|
7
|
+
group :test do
|
|
8
|
+
gem 'rake' if RUBY_VERSION !~ /^1\./
|
|
9
|
+
gem 'rake', '~>10' if RUBY_VERSION =~ /^1\./
|
|
10
|
+
end
|
|
11
|
+
|
data/README.md
CHANGED
|
@@ -78,6 +78,8 @@ After checking out the repo, run `bundle install` to install dependencies.
|
|
|
78
78
|
|
|
79
79
|
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release` to create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
|
80
80
|
|
|
81
|
+
See [here for travis reports](https://travis-ci.org/m-31/vamp)
|
|
82
|
+
|
|
81
83
|
## Contributing
|
|
82
84
|
|
|
83
85
|
1. Fork it ( https://github.com/m-31/vamp/fork )
|
data/lib/vamp/graphic.rb
CHANGED
data/lib/vamp/ply.rb
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
1
|
+
require File.join(File.dirname(__FILE__), "ply/ply_object")
|
|
2
|
+
require File.join(File.dirname(__FILE__), "ply/cube")
|
|
3
|
+
require File.join(File.dirname(__FILE__), "ply/vampire")
|
|
4
4
|
|
|
5
5
|
module Vamp
|
|
6
6
|
module Ply
|
|
7
7
|
end
|
|
8
|
-
end
|
|
8
|
+
end
|
data/lib/vamp/version.rb
CHANGED
data/lib/vamp.rb
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
1
|
+
require "vamp/animator"
|
|
2
|
+
require "vamp/art"
|
|
3
|
+
require "vamp/colorize"
|
|
4
|
+
require "vamp/ply"
|
|
5
|
+
require "vamp/version"
|
|
6
6
|
|
|
7
7
|
module Vamp
|
|
8
8
|
|
|
@@ -94,7 +94,15 @@ module Vamp
|
|
|
94
94
|
"Incoherent thoughts and images, nothing more. Which is precisely why the Awakening is performed by an elder." \
|
|
95
95
|
" You do not possess the necessary skills. ",
|
|
96
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."
|
|
97
|
+
"In one night the lies that had united our kind had been exposed.",
|
|
98
|
+
"Chaos and infighting are inevitable. All that is certain is that Darkness is still ahead. But for now," \
|
|
99
|
+
" for the first time, I look into the light with new hope.",
|
|
100
|
+
"The moon is my sun, the night is my day, Blood is my life, and you are my prey.",
|
|
101
|
+
"I don't live in darkness; Darkness lives in me.",
|
|
102
|
+
"In the end, we are alone. And there is nothing but the cold, dark wasteland of eternity.",
|
|
103
|
+
"Darling, you're already in my veins.",
|
|
104
|
+
"I'm an energy vampire. I just suck off everybody's energy. But I give it back.",
|
|
105
|
+
"I’m the thing that monsters have nightmares about."
|
|
98
106
|
].sample
|
|
99
107
|
end
|
|
100
108
|
end
|
|
@@ -149,7 +149,7 @@ describe Vamp::Graphic::Transfer5 do
|
|
|
149
149
|
/ / | \ \
|
|
150
150
|
.` | \ .
|
|
151
151
|
END
|
|
152
|
-
).
|
|
152
|
+
).rstrip
|
|
153
153
|
end
|
|
154
154
|
|
|
155
155
|
# here is the 3 x 3 result
|
|
@@ -173,7 +173,7 @@ describe Vamp::Graphic::Transfer5 do
|
|
|
173
173
|
/` / | \ \
|
|
174
174
|
/` / | \ '\
|
|
175
175
|
END
|
|
176
|
-
).
|
|
176
|
+
).rstrip
|
|
177
177
|
end
|
|
178
178
|
end
|
|
179
179
|
end
|
data/vamp.gemspec
CHANGED
|
@@ -20,6 +20,8 @@ Gem::Specification.new do |spec|
|
|
|
20
20
|
spec.require_paths = ["lib"]
|
|
21
21
|
spec.post_install_message = " .. may the blood never cease to flow .."
|
|
22
22
|
|
|
23
|
+
spec.required_ruby_version = '>= 1.9.0'
|
|
24
|
+
|
|
23
25
|
spec.add_development_dependency "rake"
|
|
24
26
|
spec.add_development_dependency "rspec"
|
|
25
27
|
# spec.add_development_dependency "thor"
|
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.7
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Michael Meyling
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2018-09-17 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rake
|
|
@@ -91,7 +91,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
91
91
|
requirements:
|
|
92
92
|
- - ">="
|
|
93
93
|
- !ruby/object:Gem::Version
|
|
94
|
-
version:
|
|
94
|
+
version: 1.9.0
|
|
95
95
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
96
96
|
requirements:
|
|
97
97
|
- - ">="
|
|
@@ -99,7 +99,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
99
99
|
version: '0'
|
|
100
100
|
requirements: []
|
|
101
101
|
rubyforge_project:
|
|
102
|
-
rubygems_version: 2.
|
|
102
|
+
rubygems_version: 2.7.7
|
|
103
103
|
signing_key:
|
|
104
104
|
specification_version: 4
|
|
105
105
|
summary: vampire quotes
|