asciiart 0.2.0 → 0.3.0

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 34e508f6e6ac680c5efa0b9c2d962017825ab9706f4c3f10449d411bce37c5d5
4
- data.tar.gz: bfe96d2e79431f8f54a908040083c5f74c9fe45a6c2d221297c9803a16543dd2
3
+ metadata.gz: 73d1db9173b7bb415b28427400d74dc58873a17fb83c35f9680dc9dbfa957a93
4
+ data.tar.gz: bf4b64962e12bda8dae1b6d856f1bde6f6a6fec86710474dde911a71ab8ad53a
5
5
  SHA512:
6
- metadata.gz: 7c15cbdbc1aa10708815e59490e5ba9003e0484f742b2a0bddd319006db6355a426b84a06328bf5d0f4eb154da8d6695b33277c6b3bca65d30c679159a558dd4
7
- data.tar.gz: 909ec83731b16b70a93404c975cefaea83ce411308d0f9a75d8afefaa6215f9664fe29e267ca5858d950a7d509c4dbfb31be071c3a1ff120a4fe1485dacd81b4
6
+ metadata.gz: 37d3cb9b57606e714126a9230d230f7d07036113f9776a45ee123ed043ad779962f906aa91951774a6b5a326ba05ec92c72c898643082ffbc489f9fda01f42ea
7
+ data.tar.gz: 6e56c2597382974c6d95d1ced2d8af757dd52f53d5349e236b633f4ca925250b6b5106757d226143e8b32e479411d51ae509db2240b4c4f67dec84c9419548bc
data/CHANGELOG.md ADDED
@@ -0,0 +1,41 @@
1
+ # Asciiart changelog
2
+
3
+ Asciiart follows [Semantic Versioning](https://semver.org/), please see the [README.md](README.md) for details.
4
+
5
+ ## 0.3.0
6
+
7
+ ### Fixed
8
+
9
+ * Ruby 3.1.x compatibility [#13](https://github.com/nodanaonlyzuul/asciiart/issues/13)
10
+
11
+ ### (semi) Tested Ruby Versions
12
+
13
+ I hope to have a better automated test matrix in the future but...
14
+
15
+ * ruby 3.1.0p0 (2021-12-25 revision fb4df44d16) [x86_64-darwin20]
16
+ * ruby 3.0.2p107 (2021-07-07 revision 0db68f0233) [x86_64-darwin20]
17
+ * ruby 2.7.5p203 (2021-11-24 revision f69aeb8314) [x86_64-darwin20]
18
+
19
+ ## 0.2.0
20
+
21
+ ### Notes
22
+
23
+ #### Rehabilitation & being a better citizen
24
+
25
+ This gem started as a fast-and-loose side project in 2014.
26
+ It mostly worked for many years, with no need for major updates.
27
+ In January 2022, I noticed a lot of the gem & its dependencies' syntax didn't play well in modern versions of Ruby.
28
+
29
+ #### Tagging & Github Releases
30
+
31
+ This is the version where I started caring about using tags & GH releases.
32
+
33
+ ### Fixed
34
+
35
+ * Fixing ability to open a URL via cli.[[#12](https://github.com/nodanaonlyzuul/asciiart/pull/12)]
36
+ * Fixing color output issues.[[#12](https://github.com/nodanaonlyzuul/asciiart/pull/12)]
37
+
38
+ ## < 0.2.0
39
+
40
+ These were the dark ages.
41
+ I'm sorry.
data/asciiart.gemspec CHANGED
@@ -17,7 +17,7 @@ Gem::Specification.new do |gem|
17
17
  gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
18
18
  gem.require_paths = ["lib"]
19
19
 
20
- gem.add_dependency('rmagick', '4.1.2')
20
+ gem.add_dependency('rmagick', '4.2.4')
21
21
  gem.add_dependency('rainbow', '3.0.0')
22
22
 
23
23
  gem.add_development_dependency('pry')
@@ -1,3 +1,3 @@
1
1
  class AsciiArt
2
- VERSION = "0.2.0"
2
+ VERSION = "0.3.0"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: asciiart
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - nodanaonlyzuul
@@ -11,7 +11,7 @@ authors:
11
11
  autorequire:
12
12
  bindir: bin
13
13
  cert_chain: []
14
- date: 2022-01-10 00:00:00.000000000 Z
14
+ date: 2022-02-04 00:00:00.000000000 Z
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency
17
17
  name: rmagick
@@ -19,14 +19,14 @@ dependencies:
19
19
  requirements:
20
20
  - - '='
21
21
  - !ruby/object:Gem::Version
22
- version: 4.1.2
22
+ version: 4.2.4
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
26
26
  requirements:
27
27
  - - '='
28
28
  - !ruby/object:Gem::Version
29
- version: 4.1.2
29
+ version: 4.2.4
30
30
  - !ruby/object:Gem::Dependency
31
31
  name: rainbow
32
32
  requirement: !ruby/object:Gem::Requirement
@@ -64,6 +64,7 @@ extensions: []
64
64
  extra_rdoc_files: []
65
65
  files:
66
66
  - ".gitignore"
67
+ - CHANGELOG.md
67
68
  - Gemfile
68
69
  - LICENSE.txt
69
70
  - README.md
@@ -92,7 +93,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
92
93
  - !ruby/object:Gem::Version
93
94
  version: '0'
94
95
  requirements: []
95
- rubygems_version: 3.2.3
96
+ rubygems_version: 3.3.3
96
97
  signing_key:
97
98
  specification_version: 4
98
99
  summary: A command line tool to turn images into ASCII art