matrext 1.0.0 → 1.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 +4 -4
- data/README.md +2 -0
- data/bin/matrext +2 -2
- data/lib/matrext/version.rb +1 -1
- data/matrext-example.gif +0 -0
- data/matrext.gemspec +0 -0
- metadata +7 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ab233ad77c7e44704278b8f9bcf23024e078baa4
|
|
4
|
+
data.tar.gz: 4d37b3fe43e43429150853e085f938e6232f1ce7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 180c2ca0cf0611fb3cfb5578fdecfd8856bc8c32bdb49de4bda5dceca5d65e9473839d16e5c58ae6572431629842d8c0389f11d52d4c52dcb044c7bad52685f9
|
|
7
|
+
data.tar.gz: 26196a0ca3d7a147d7ffba654038e9e74320318e94fcfe81cea6a5d0c12178d6bcce1bf4e1c42a6b0b412b5d5fd957e1f5924fa0e5f6ea78a4571373c2dc873a
|
data/README.md
CHANGED
|
@@ -2,6 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
[](http://badge.fury.io/rb/matrext)
|
|
4
4
|
|
|
5
|
+

|
|
6
|
+
|
|
5
7
|
A simple Ruby gem that takes a phrase and writes it back to the screen, one letter a time, as if each character was being "decoded", Matrix-style.
|
|
6
8
|
|
|
7
9
|
## Usage
|
data/bin/matrext
CHANGED
|
@@ -18,8 +18,8 @@ def parse_options
|
|
|
18
18
|
}
|
|
19
19
|
|
|
20
20
|
optparse = OptionParser.new do |opts|
|
|
21
|
-
opts.banner =
|
|
22
|
-
opts.banner
|
|
21
|
+
opts.banner = "Display text like it's being decoded, Matrix-style\n"
|
|
22
|
+
opts.banner += "usage: matrext PHRASE [-s insane|fast|slow] [-o] [-a true|false] [-n true|false] [-r true|false] [-c color_symbol] [-b background_symbol]\n\n"
|
|
23
23
|
|
|
24
24
|
opts.on('-s', '--speed SPEED', 'Speed at which the text decodes') do |speed|
|
|
25
25
|
options[:speed] = speed
|
data/lib/matrext/version.rb
CHANGED
data/matrext-example.gif
ADDED
|
Binary file
|
data/matrext.gemspec
CHANGED
|
File without changes
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: matrext
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Michael Chadwick
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2016-09-23 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: colorize
|
|
@@ -87,6 +87,7 @@ files:
|
|
|
87
87
|
- lib/matrext.rb
|
|
88
88
|
- lib/matrext/core.rb
|
|
89
89
|
- lib/matrext/version.rb
|
|
90
|
+
- matrext-example.gif
|
|
90
91
|
- matrext.gemspec
|
|
91
92
|
- spec/matrext_spec.rb
|
|
92
93
|
- spec/spec_helper.rb
|
|
@@ -110,8 +111,10 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
110
111
|
version: '0'
|
|
111
112
|
requirements: []
|
|
112
113
|
rubyforge_project:
|
|
113
|
-
rubygems_version: 2.
|
|
114
|
+
rubygems_version: 2.6.6
|
|
114
115
|
signing_key:
|
|
115
116
|
specification_version: 4
|
|
116
117
|
summary: Display text like it's being decoded, Matrix-style
|
|
117
|
-
test_files:
|
|
118
|
+
test_files:
|
|
119
|
+
- spec/matrext_spec.rb
|
|
120
|
+
- spec/spec_helper.rb
|