markdownator 0.1.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.
metadata ADDED
@@ -0,0 +1,79 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: markdownator
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - alexrupom
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2026-06-12 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: Markdownator converts PDF, Word, Excel, PowerPoint, EPUB, HTML, CSV,
14
+ JSON, XML, ZIP archives and images into clean Markdown suitable for large language
15
+ models, using a pluggable converter architecture.
16
+ email:
17
+ - alexrupom@hotmail.com
18
+ executables: []
19
+ extensions: []
20
+ extra_rdoc_files: []
21
+ files:
22
+ - ".rspec"
23
+ - ".rubocop.yml"
24
+ - CHANGELOG.md
25
+ - CODE_OF_CONDUCT.md
26
+ - Gemfile
27
+ - LICENSE.txt
28
+ - README.md
29
+ - Rakefile
30
+ - lib/markdownator.rb
31
+ - lib/markdownator/converters/base.rb
32
+ - lib/markdownator/converters/csv.rb
33
+ - lib/markdownator/converters/docx.rb
34
+ - lib/markdownator/converters/epub.rb
35
+ - lib/markdownator/converters/html.rb
36
+ - lib/markdownator/converters/image.rb
37
+ - lib/markdownator/converters/json.rb
38
+ - lib/markdownator/converters/pdf.rb
39
+ - lib/markdownator/converters/plain_text.rb
40
+ - lib/markdownator/converters/pptx.rb
41
+ - lib/markdownator/converters/xlsx.rb
42
+ - lib/markdownator/converters/xml.rb
43
+ - lib/markdownator/converters/zip.rb
44
+ - lib/markdownator/engine.rb
45
+ - lib/markdownator/errors.rb
46
+ - lib/markdownator/result.rb
47
+ - lib/markdownator/stream_info.rb
48
+ - lib/markdownator/version.rb
49
+ - markdownator.gemspec
50
+ - sig/markdownator.rbs
51
+ homepage: https://github.com/alexrupom/markdownator
52
+ licenses:
53
+ - MIT
54
+ metadata:
55
+ homepage_uri: https://github.com/alexrupom/markdownator
56
+ source_code_uri: https://github.com/alexrupom/markdownator
57
+ changelog_uri: https://github.com/alexrupom/markdownator/blob/main/CHANGELOG.md
58
+ rubygems_mfa_required: 'true'
59
+ post_install_message:
60
+ rdoc_options: []
61
+ require_paths:
62
+ - lib
63
+ required_ruby_version: !ruby/object:Gem::Requirement
64
+ requirements:
65
+ - - ">="
66
+ - !ruby/object:Gem::Version
67
+ version: 2.7.0
68
+ required_rubygems_version: !ruby/object:Gem::Requirement
69
+ requirements:
70
+ - - ">="
71
+ - !ruby/object:Gem::Version
72
+ version: '0'
73
+ requirements: []
74
+ rubygems_version: 3.1.6
75
+ signing_key:
76
+ specification_version: 4
77
+ summary: Convert files (Office docs, PDF, HTML, data, archives, images) to LLM-friendly
78
+ Markdown.
79
+ test_files: []