Ascii85 1.1.1 → 2.0.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 +4 -4
- data/Ascii85.gemspec +15 -14
- data/CHANGELOG.md +64 -0
- data/Gemfile +3 -1
- data/README.md +28 -12
- data/Rakefile +5 -3
- data/bin/ascii85 +79 -56
- data/lib/Ascii85/version.rb +1 -1
- data/lib/ascii85.rb +396 -164
- data/spec/bin/cli_spec.rb +211 -0
- data/spec/lib/ascii85_spec.rb +152 -107
- metadata +19 -25
- data/History.txt +0 -37
data/History.txt
DELETED
@@ -1,37 +0,0 @@
|
|
1
|
-
=== 1.1.1 / 2024-05-09
|
2
|
-
|
3
|
-
* Make `bin/ascii85` Ruby 3.2-compatible (thanks @tylerwillingham)
|
4
|
-
* Improve error handling of `bin/ascii85` slightly
|
5
|
-
|
6
|
-
=== 1.1.0 / 2020-11-11
|
7
|
-
|
8
|
-
* Make use of frozen_string_literal (thanks @aliismayilov)
|
9
|
-
* Update tests to use newer minitest syntax
|
10
|
-
|
11
|
-
=== 1.0.3 / 2018-01-25
|
12
|
-
|
13
|
-
* Updated the gem's metadata
|
14
|
-
|
15
|
-
=== 1.0.2 / 2012-09-16
|
16
|
-
|
17
|
-
* Changed test runner from RSpec to MiniSpec
|
18
|
-
* Support for rubygems-test
|
19
|
-
* Minor changes to make packaging easier
|
20
|
-
|
21
|
-
=== 1.0.1 / 2011-05-05
|
22
|
-
|
23
|
-
* Removed hoe dependency in favor of bundler
|
24
|
-
* Minor corrections in the documentation
|
25
|
-
|
26
|
-
=== 1.0.0 / 2009-12-25
|
27
|
-
|
28
|
-
* 2 major enhancements
|
29
|
-
|
30
|
-
* Ruby 1.9 compatibility
|
31
|
-
* Added command-line en- and decoder
|
32
|
-
|
33
|
-
=== 0.9.0 / 2009-02-17
|
34
|
-
|
35
|
-
* 1 major enhancement
|
36
|
-
|
37
|
-
* Initial release
|