matrext 1.0.4 → 1.0.5
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/Rakefile +3 -2
- data/lib/matrext/version.rb +1 -1
- data/matrext.gemspec +25 -13
- metadata +7 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: aa9b2eba2ae0e51920924e36462878ea02d381c6b2d1606a705b80be049d1a4e
|
|
4
|
+
data.tar.gz: '03286ff40960f9115e980863c966bba7252df1ae43306c4f68f827be4325e8dd'
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 28e23b36dff6a3d006fab4213b04fc2a55e9acc1595e17cf8c75cbbcdbf8e5ff9066927cc784913643bf61b771a8c8aef413bd2cc54dfdfe0667301cbba201f1
|
|
7
|
+
data.tar.gz: 9528936b2e7c5568cf86a993a78a17333bb9eff946bb6e910a89f22da07dc8369547fb1e859ffab0318a01f2868bd26d4f403022e7397fb47c3e5c7fe3304b31
|
data/Rakefile
CHANGED
data/lib/matrext/version.rb
CHANGED
data/matrext.gemspec
CHANGED
|
@@ -1,26 +1,38 @@
|
|
|
1
1
|
# coding: utf-8
|
|
2
2
|
lib = File.expand_path('../lib', __FILE__)
|
|
3
3
|
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
4
|
+
|
|
4
5
|
require 'matrext/version'
|
|
5
6
|
|
|
7
|
+
source_uri = 'https://github.com/michaelchadwick/matrext'
|
|
8
|
+
rubygem_uri = 'http://rubygems.org/gems/matrext'
|
|
9
|
+
|
|
6
10
|
Gem::Specification.new do |spec|
|
|
7
|
-
spec.name
|
|
8
|
-
spec.
|
|
9
|
-
spec.
|
|
10
|
-
spec.
|
|
11
|
-
spec.
|
|
12
|
-
spec.
|
|
13
|
-
spec.
|
|
14
|
-
spec.
|
|
11
|
+
spec.name = 'matrext'
|
|
12
|
+
spec.summary = 'Display decoded text, Matrix-style'
|
|
13
|
+
spec.version = Matrext::VERSION
|
|
14
|
+
spec.platform = Gem::Platform::RUBY
|
|
15
|
+
spec.authors = ['Michael Chadwick']
|
|
16
|
+
spec.email = ['mike@codana.me']
|
|
17
|
+
spec.homepage = rubygem_uri
|
|
18
|
+
spec.license = 'MIT'
|
|
19
|
+
spec.description = 'Matrext takes a string input and then prints it back to the console, one letter at a time after "searching" through character noise, as if it was decoding the string itself.'
|
|
20
|
+
|
|
21
|
+
spec.files = `git ls-files`.split("\n")
|
|
22
|
+
spec.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
|
23
|
+
spec.executables = `git ls-files -- bin/*`.split("\n").map { |f| File.basename(f) }
|
|
24
|
+
spec.require_paths = ['lib']
|
|
15
25
|
|
|
16
|
-
spec.
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
26
|
+
spec.metadata = {
|
|
27
|
+
"documentation_uri" => source_uri,
|
|
28
|
+
"homepage_uri" => source_uri,
|
|
29
|
+
"source_code_uri" => source_uri
|
|
30
|
+
}
|
|
21
31
|
|
|
32
|
+
## required deps
|
|
22
33
|
spec.add_runtime_dependency 'colorize', '~> 1.0'
|
|
23
34
|
|
|
35
|
+
## development deps
|
|
24
36
|
spec.add_development_dependency 'bundler', '~> 2.1'
|
|
25
37
|
spec.add_development_dependency 'rake', '~> 12.3'
|
|
26
38
|
spec.add_development_dependency 'pry-byebug', '~> 3.9'
|
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.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Michael Chadwick
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2023-09-
|
|
11
|
+
date: 2023-09-08 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: colorize
|
|
@@ -94,7 +94,10 @@ files:
|
|
|
94
94
|
homepage: http://rubygems.org/gems/matrext
|
|
95
95
|
licenses:
|
|
96
96
|
- MIT
|
|
97
|
-
metadata:
|
|
97
|
+
metadata:
|
|
98
|
+
documentation_uri: https://github.com/michaelchadwick/matrext
|
|
99
|
+
homepage_uri: https://github.com/michaelchadwick/matrext
|
|
100
|
+
source_code_uri: https://github.com/michaelchadwick/matrext
|
|
98
101
|
post_install_message:
|
|
99
102
|
rdoc_options: []
|
|
100
103
|
require_paths:
|
|
@@ -113,7 +116,7 @@ requirements: []
|
|
|
113
116
|
rubygems_version: 3.4.19
|
|
114
117
|
signing_key:
|
|
115
118
|
specification_version: 4
|
|
116
|
-
summary: Display text
|
|
119
|
+
summary: Display decoded text, Matrix-style
|
|
117
120
|
test_files:
|
|
118
121
|
- spec/matrext_spec.rb
|
|
119
122
|
- spec/spec_helper.rb
|