distorted 0.5.2 → 0.5.7

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.
Files changed (45) hide show
  1. checksums.yaml +4 -4
  2. data/LICENSE +661 -0
  3. data/README.md +4 -139
  4. data/font/1252/LICENSE/MoreLessPerfectDOSVGA437/img/Less_Perfect_DOS_VGA.png +0 -0
  5. data/font/1252/LICENSE/MoreLessPerfectDOSVGA437/img/More_Perfect_DOS_VGA.png +0 -0
  6. data/font/1252/LICENSE/MoreLessPerfectDOSVGA437/img/Perfect_DOS_VGA.png +0 -0
  7. data/font/1252/LICENSE/MoreLessPerfectDOSVGA437/less_more_perfect_dos_vga_437.html +52 -0
  8. data/font/1252/LICENSE/PerfectDOSVGA437/font-comment.php@file=perfect_dos_vga_437.html +5 -0
  9. data/font/1252/LessPerfectDOSVGA.ttf +0 -0
  10. data/font/1252/MorePerfectDOSVGA.ttf +0 -0
  11. data/font/1252/Perfect DOS VGA 437 Win.ttf +0 -0
  12. data/font/437/Perfect DOS VGA 437.ttf +0 -0
  13. data/font/437/dos437.txt +72 -0
  14. data/font/65001/Anonymous Pro B.ttf +0 -0
  15. data/font/65001/Anonymous Pro BI.ttf +0 -0
  16. data/font/65001/Anonymous Pro I.ttf +0 -0
  17. data/font/65001/Anonymous Pro.ttf +0 -0
  18. data/font/65001/LICENSE/AnonymousPro/FONTLOG.txt +45 -0
  19. data/font/65001/LICENSE/AnonymousPro/OFL-FAQ.txt +235 -0
  20. data/font/65001/LICENSE/AnonymousPro/OFL.txt +94 -0
  21. data/font/65001/LICENSE/AnonymousPro/README.txt +55 -0
  22. data/font/850/ProFont-Bold-01/LICENSE +22 -0
  23. data/font/850/ProFont-Bold-01/readme.txt +28 -0
  24. data/font/850/ProFontWindows-Bold.ttf +0 -0
  25. data/font/850/ProFontWindows.ttf +0 -0
  26. data/font/850/Profont/LICENSE +22 -0
  27. data/font/850/Profont/readme.txt +31 -0
  28. data/font/932/LICENSE/README-ttf.txt +213 -0
  29. data/font/932/mona.ttf +0 -0
  30. data/lib/distorted/error_code.rb +8 -0
  31. data/lib/distorted/font.rb +192 -0
  32. data/lib/distorted/image.rb +121 -0
  33. data/lib/distorted/modular_technology/pango.rb +75 -0
  34. data/lib/distorted/monkey_business/hash.rb +33 -0
  35. data/lib/distorted/monkey_business/mnemoniq.rb +8 -0
  36. data/lib/distorted/monkey_business/set.rb +15 -0
  37. data/lib/distorted/monkey_business/string.rb +6 -0
  38. data/lib/distorted/pdf.rb +110 -0
  39. data/lib/distorted/svg.rb +21 -0
  40. data/lib/distorted/text.rb +241 -0
  41. data/lib/distorted/version.rb +20 -0
  42. data/lib/distorted/video.rb +193 -0
  43. data/test/distorted_test.rb +11 -0
  44. data/test/test_helper.rb +4 -0
  45. metadata +77 -5
@@ -0,0 +1,11 @@
1
+ require "test_helper"
2
+
3
+ class Cooltrainer::DistorteDTest < Minitest::Test
4
+ def test_that_it_has_a_version_number
5
+ refute_nil ::Cooltrainer::DistorteD::VERSION
6
+ end
7
+
8
+ def test_it_does_something_useful
9
+ assert false
10
+ end
11
+ end
@@ -0,0 +1,4 @@
1
+ $LOAD_PATH.unshift File.expand_path("../../lib", __FILE__)
2
+ require "distorted"
3
+
4
+ require "minitest/autorun"
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: distorted
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.2
4
+ version: 0.5.7
5
5
  platform: ruby
6
6
  authors:
7
- - Allison Reid
7
+ - okeeblow
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-07-08 00:00:00.000000000 Z
11
+ date: 2020-07-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -122,6 +122,34 @@ dependencies:
122
122
  - - "~>"
123
123
  - !ruby/object:Gem::Version
124
124
  version: 0.11.9
125
+ - !ruby/object:Gem::Dependency
126
+ name: ttfunk
127
+ requirement: !ruby/object:Gem::Requirement
128
+ requirements:
129
+ - - "~>"
130
+ - !ruby/object:Gem::Version
131
+ version: '1.6'
132
+ type: :runtime
133
+ prerelease: false
134
+ version_requirements: !ruby/object:Gem::Requirement
135
+ requirements:
136
+ - - "~>"
137
+ - !ruby/object:Gem::Version
138
+ version: '1.6'
139
+ - !ruby/object:Gem::Dependency
140
+ name: charlock_holmes
141
+ requirement: !ruby/object:Gem::Requirement
142
+ requirements:
143
+ - - "~>"
144
+ - !ruby/object:Gem::Version
145
+ version: '0.7'
146
+ type: :runtime
147
+ prerelease: false
148
+ version_requirements: !ruby/object:Gem::Requirement
149
+ requirements:
150
+ - - "~>"
151
+ - !ruby/object:Gem::Version
152
+ version: '0.7'
125
153
  description: Ruby implementation of core file-format operations used by DistorteD-Jekyll.
126
154
  email:
127
155
  - root@cooltrainer.org
@@ -129,7 +157,49 @@ executables: []
129
157
  extensions: []
130
158
  extra_rdoc_files: []
131
159
  files:
160
+ - LICENSE
132
161
  - README.md
162
+ - font/1252/LICENSE/MoreLessPerfectDOSVGA437/img/Less_Perfect_DOS_VGA.png
163
+ - font/1252/LICENSE/MoreLessPerfectDOSVGA437/img/More_Perfect_DOS_VGA.png
164
+ - font/1252/LICENSE/MoreLessPerfectDOSVGA437/img/Perfect_DOS_VGA.png
165
+ - font/1252/LICENSE/MoreLessPerfectDOSVGA437/less_more_perfect_dos_vga_437.html
166
+ - font/1252/LICENSE/PerfectDOSVGA437/font-comment.php@file=perfect_dos_vga_437.html
167
+ - font/1252/LessPerfectDOSVGA.ttf
168
+ - font/1252/MorePerfectDOSVGA.ttf
169
+ - font/1252/Perfect DOS VGA 437 Win.ttf
170
+ - font/437/Perfect DOS VGA 437.ttf
171
+ - font/437/dos437.txt
172
+ - font/65001/Anonymous Pro B.ttf
173
+ - font/65001/Anonymous Pro BI.ttf
174
+ - font/65001/Anonymous Pro I.ttf
175
+ - font/65001/Anonymous Pro.ttf
176
+ - font/65001/LICENSE/AnonymousPro/FONTLOG.txt
177
+ - font/65001/LICENSE/AnonymousPro/OFL-FAQ.txt
178
+ - font/65001/LICENSE/AnonymousPro/OFL.txt
179
+ - font/65001/LICENSE/AnonymousPro/README.txt
180
+ - font/850/ProFont-Bold-01/LICENSE
181
+ - font/850/ProFont-Bold-01/readme.txt
182
+ - font/850/ProFontWindows-Bold.ttf
183
+ - font/850/ProFontWindows.ttf
184
+ - font/850/Profont/LICENSE
185
+ - font/850/Profont/readme.txt
186
+ - font/932/LICENSE/README-ttf.txt
187
+ - font/932/mona.ttf
188
+ - lib/distorted/error_code.rb
189
+ - lib/distorted/font.rb
190
+ - lib/distorted/image.rb
191
+ - lib/distorted/modular_technology/pango.rb
192
+ - lib/distorted/monkey_business/hash.rb
193
+ - lib/distorted/monkey_business/mnemoniq.rb
194
+ - lib/distorted/monkey_business/set.rb
195
+ - lib/distorted/monkey_business/string.rb
196
+ - lib/distorted/pdf.rb
197
+ - lib/distorted/svg.rb
198
+ - lib/distorted/text.rb
199
+ - lib/distorted/version.rb
200
+ - lib/distorted/video.rb
201
+ - test/distorted_test.rb
202
+ - test/test_helper.rb
133
203
  homepage: https://cooltrainer.org
134
204
  licenses:
135
205
  - AGPL-3.0
@@ -152,5 +222,7 @@ requirements: []
152
222
  rubygems_version: 3.1.4
153
223
  signing_key:
154
224
  specification_version: 4
155
- summary: Media transformation framework core functionality.
156
- test_files: []
225
+ summary: Multimedia toolkit core.
226
+ test_files:
227
+ - test/test_helper.rb
228
+ - test/distorted_test.rb