matrext 1.0.4 → 1.0.5

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ce1c2eec579dc50cde2af13106894c66a8ef2de1676a94f5cb449a9a895b9eeb
4
- data.tar.gz: 6b075fdc8562434d0dde8d120d9aaedb20cef0006e55ee48063b498d0a04d4f3
3
+ metadata.gz: aa9b2eba2ae0e51920924e36462878ea02d381c6b2d1606a705b80be049d1a4e
4
+ data.tar.gz: '03286ff40960f9115e980863c966bba7252df1ae43306c4f68f827be4325e8dd'
5
5
  SHA512:
6
- metadata.gz: ee24c7807254f4fa18754ef38a3ce1615ff51a7b75525e3ba318e377c406227494511534a80dbc676c26eeba1a111f80accd73db66147891e098a1a021fec654
7
- data.tar.gz: ee729aaf39e2c914660866ce0c7016b76ddf2931e9e2b32eb27e344b2ac49917c5e65318103a370a16e730aae9f8c7f2adbe68b18ddbdfe0582f3bc1068a5248
6
+ metadata.gz: 28e23b36dff6a3d006fab4213b04fc2a55e9acc1595e17cf8c75cbbcdbf8e5ff9066927cc784913643bf61b771a8c8aef413bd2cc54dfdfe0667301cbba201f1
7
+ data.tar.gz: 9528936b2e7c5568cf86a993a78a17333bb9eff946bb6e910a89f22da07dc8369547fb1e859ffab0318a01f2868bd26d4f403022e7397fb47c3e5c7fe3304b31
data/Rakefile CHANGED
@@ -1,10 +1,11 @@
1
1
  require 'bundler/gem_tasks'
2
2
 
3
3
  task :deploy do |t|
4
- file = Dir.glob("pkg/*").max_by {|f| File.mtime(f)}
5
-
6
4
  sh "git push origin master"
7
5
  sh "rake build"
6
+
7
+ file = Dir.glob("pkg/*").max_by {|f| File.mtime(f)}
8
+
8
9
  sh "gem push #{file}"
9
10
  end
10
11
 
@@ -2,5 +2,5 @@
2
2
  # Version of Matrext
3
3
 
4
4
  module Matrext
5
- VERSION = '1.0.4'
5
+ VERSION = '1.0.5'
6
6
  end
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 = 'matrext'
8
- spec.version = Matrext::VERSION
9
- spec.platform = Gem::Platform::RUBY
10
- spec.authors = ['Michael Chadwick']
11
- spec.email = ['mike@codana.me']
12
- spec.homepage = 'http://rubygems.org/gems/matrext'
13
- spec.summary = 'Display text like it\'s being decoded, Matrix-style'
14
- 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.'
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.files = `git ls-files`.split("\n")
17
- spec.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
18
- spec.executables = `git ls-files -- bin/*`.split("\n").map { |f| File.basename(f) }
19
- spec.require_paths = ['lib']
20
- spec.license = 'MIT'
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
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-01 00:00:00.000000000 Z
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 like it's being decoded, Matrix-style
119
+ summary: Display decoded text, Matrix-style
117
120
  test_files:
118
121
  - spec/matrext_spec.rb
119
122
  - spec/spec_helper.rb