htot_conv 0.3.2 → 1.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/.gitignore +135 -135
- data/.travis.yml +12 -12
- data/Gemfile +4 -4
- data/LICENSE.txt +21 -21
- data/README.md +46 -138
- data/Rakefile +10 -10
- data/bin/console +14 -14
- data/bin/setup +8 -8
- data/docs/image/output_xlsx_type0.png +0 -0
- data/docs/image/output_xlsx_type1.png +0 -0
- data/docs/image/output_xlsx_type1_outline_rows_yes.png +0 -0
- data/docs/image/output_xlsx_type2.png +0 -0
- data/docs/image/output_xlsx_type2_integrate_cells_colspan.png +0 -0
- data/docs/image/output_xlsx_type2_outline_rows_yes.png +0 -0
- data/docs/image/output_xlsx_type3.png +0 -0
- data/docs/image/output_xlsx_type3_integrate_cells_both.png +0 -0
- data/docs/image/output_xlsx_type4.png +0 -0
- data/docs/image/output_xlsx_type4_integrate_cells_both.png +0 -0
- data/docs/image/output_xlsx_type5.png +0 -0
- data/docs/image/output_xlsx_type5_integrate_cells_colspan.png +0 -0
- data/docs/index.md +88 -0
- data/exe/htot_conv +8 -8
- data/htot_conv.gemspec +37 -37
- data/lib/htot_conv.rb +20 -20
- data/lib/htot_conv/cli.rb +174 -174
- data/lib/htot_conv/generator.rb +30 -30
- data/lib/htot_conv/generator/base.rb +34 -35
- data/lib/htot_conv/generator/xlsx_type0.rb +36 -24
- data/lib/htot_conv/generator/xlsx_type1.rb +57 -69
- data/lib/htot_conv/generator/xlsx_type2.rb +100 -104
- data/lib/htot_conv/generator/xlsx_type3.rb +99 -85
- data/lib/htot_conv/generator/xlsx_type4.rb +109 -84
- data/lib/htot_conv/generator/xlsx_type5.rb +75 -62
- data/lib/htot_conv/outline.rb +176 -176
- data/lib/htot_conv/parser.rb +27 -27
- data/lib/htot_conv/parser/base.rb +15 -15
- data/lib/htot_conv/parser/dir_tree.rb +54 -54
- data/lib/htot_conv/parser/html_list.rb +71 -71
- data/lib/htot_conv/parser/opml.rb +70 -70
- data/lib/htot_conv/parser/simple_text.rb +70 -70
- data/lib/htot_conv/util.rb +13 -13
- data/lib/htot_conv/version.rb +4 -4
- metadata +19 -6
data/lib/htot_conv/version.rb
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
module HTOTConv
|
3
|
-
VERSION = "0.
|
4
|
-
end
|
1
|
+
# frozen_string_literal: true
|
2
|
+
module HTOTConv
|
3
|
+
VERSION = "1.0.0"
|
4
|
+
end
|
metadata
CHANGED
@@ -1,29 +1,29 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: htot_conv
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 1.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- "@cat_in_136"
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-
|
11
|
+
date: 2017-12-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
|
-
name:
|
14
|
+
name: rubyXL
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
17
|
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version:
|
19
|
+
version: 3.3.26
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - "~>"
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version:
|
26
|
+
version: 3.3.26
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: rinne
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
@@ -110,6 +110,19 @@ files:
|
|
110
110
|
- Rakefile
|
111
111
|
- bin/console
|
112
112
|
- bin/setup
|
113
|
+
- docs/image/output_xlsx_type0.png
|
114
|
+
- docs/image/output_xlsx_type1.png
|
115
|
+
- docs/image/output_xlsx_type1_outline_rows_yes.png
|
116
|
+
- docs/image/output_xlsx_type2.png
|
117
|
+
- docs/image/output_xlsx_type2_integrate_cells_colspan.png
|
118
|
+
- docs/image/output_xlsx_type2_outline_rows_yes.png
|
119
|
+
- docs/image/output_xlsx_type3.png
|
120
|
+
- docs/image/output_xlsx_type3_integrate_cells_both.png
|
121
|
+
- docs/image/output_xlsx_type4.png
|
122
|
+
- docs/image/output_xlsx_type4_integrate_cells_both.png
|
123
|
+
- docs/image/output_xlsx_type5.png
|
124
|
+
- docs/image/output_xlsx_type5_integrate_cells_colspan.png
|
125
|
+
- docs/index.md
|
113
126
|
- exe/htot_conv
|
114
127
|
- htot_conv.gemspec
|
115
128
|
- lib/htot_conv.rb
|
@@ -151,7 +164,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
151
164
|
version: '0'
|
152
165
|
requirements: []
|
153
166
|
rubyforge_project:
|
154
|
-
rubygems_version: 2.
|
167
|
+
rubygems_version: 2.6.13
|
155
168
|
signing_key:
|
156
169
|
specification_version: 4
|
157
170
|
summary: Hierarchical-Tree Outline Text Converter
|