indoctrinatr-tools 0.10.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 +7 -0
- data/.arcconfig +9 -0
- data/.coveralls.yml +1 -0
- data/.gitignore +54 -0
- data/.rubocop.yml +10 -0
- data/.rvmrc +5 -0
- data/.travis.yml +19 -0
- data/Gemfile +4 -0
- data/LICENSE +21 -0
- data/README.md +74 -0
- data/Rakefile +32 -0
- data/assets/images/dkd_logo.png +0 -0
- data/assets/images/logo.png +0 -0
- data/bin/indoctrinatr +146 -0
- data/cucumber.yml +1 -0
- data/features/autocompletion_support.feature +9 -0
- data/features/demo.feature +17 -0
- data/features/documentation.feature +11 -0
- data/features/pack.feature +11 -0
- data/features/parse.feature +6 -0
- data/features/pdf.feature +10 -0
- data/features/scaffold.feature +23 -0
- data/features/step_definitions/common.rb +3 -0
- data/features/step_definitions/indoctrinatr_cli.rb +11 -0
- data/features/support/env.rb +1 -0
- data/features/version.feature +5 -0
- data/features/workflow.feature +8 -0
- data/indoctrinatr-tools.gemspec +39 -0
- data/lib/indoctrinatr/templates/configuration.yaml +17 -0
- data/lib/indoctrinatr/templates/documentation/indoctrinatr-technical-documentation-content.tex.erb +36 -0
- data/lib/indoctrinatr/templates/documentation/indoctrinatr-technical-documentation.sty +195 -0
- data/lib/indoctrinatr/templates/documentation/indoctrinatr-technical-documentation.tex.erb +89 -0
- data/lib/indoctrinatr/templates/documentation/indoctrinatr_letterpaper.pdf +0 -0
- data/lib/indoctrinatr/templates/template.tex.erb +8 -0
- data/lib/indoctrinatr/tools.rb +9 -0
- data/lib/indoctrinatr/tools/configuration_extractor.rb +27 -0
- data/lib/indoctrinatr/tools/default_values.rb +54 -0
- data/lib/indoctrinatr/tools/directory_helpers.rb +18 -0
- data/lib/indoctrinatr/tools/template_documentation_content.rb +52 -0
- data/lib/indoctrinatr/tools/template_documentation_helpers.rb +59 -0
- data/lib/indoctrinatr/tools/template_documentation_source_file.rb +31 -0
- data/lib/indoctrinatr/tools/template_pack_configuration.rb +7 -0
- data/lib/indoctrinatr/tools/template_pack_default_values_compiler.rb +38 -0
- data/lib/indoctrinatr/tools/template_pack_default_values_parser.rb +51 -0
- data/lib/indoctrinatr/tools/template_pack_demo.rb +23 -0
- data/lib/indoctrinatr/tools/template_pack_documentation.rb +111 -0
- data/lib/indoctrinatr/tools/template_pack_helpers.rb +38 -0
- data/lib/indoctrinatr/tools/template_pack_packer.rb +49 -0
- data/lib/indoctrinatr/tools/template_pack_scaffold.rb +57 -0
- data/lib/indoctrinatr/tools/version.rb +5 -0
- data/lib/redcloth_latex_formatter_patch/patch.rb +35 -0
- data/spec/indoctrinatr/templates/configuration_file_spec.rb +9 -0
- data/spec/indoctrinatr/templates/tex_file_spec.rb +9 -0
- data/spec/indoctrinatr/tools/textile_support_spec.rb +18 -0
- data/spec/indoctrinatr/tools/version_spec.rb +8 -0
- data/spec/redcloth_latex_formatter_patch/patch_spec.rb +30 -0
- data/spec/spec_helper.rb +2 -0
- metadata +304 -0
@@ -0,0 +1,38 @@
|
|
1
|
+
module Indoctrinatr
|
2
|
+
module Tools
|
3
|
+
module TemplatePackHelpers # classes that use this model are required to have template_pack_name as instance variable
|
4
|
+
def path_name
|
5
|
+
Pathname.new(Dir.pwd).join template_pack_name
|
6
|
+
end
|
7
|
+
|
8
|
+
def assets_path
|
9
|
+
path_name.join 'assets'
|
10
|
+
end
|
11
|
+
|
12
|
+
def check_for_folder
|
13
|
+
fail 'Please specify a template pack name.' if template_pack_name.empty?
|
14
|
+
fail "A folder with name '#{template_pack_name}' does not exist." unless Dir.exist? path_name
|
15
|
+
end
|
16
|
+
|
17
|
+
def config_file_path
|
18
|
+
path_name.join 'configuration.yaml'
|
19
|
+
end
|
20
|
+
|
21
|
+
def tex_file_path
|
22
|
+
path_name.join template_pack_name + '.tex.erb'
|
23
|
+
end
|
24
|
+
|
25
|
+
def tex_with_default_values_file_path
|
26
|
+
path_name.join template_pack_name + '_with_default_values.tex'
|
27
|
+
end
|
28
|
+
|
29
|
+
def pack_technical_documentation_file_path
|
30
|
+
path_name.join template_pack_name + '_technical_documentation.pdf'
|
31
|
+
end
|
32
|
+
|
33
|
+
def latex_log_file_destination
|
34
|
+
path_name.join template_pack_name + 'documentation_latex_failure.log'
|
35
|
+
end
|
36
|
+
end
|
37
|
+
end
|
38
|
+
end
|
@@ -0,0 +1,49 @@
|
|
1
|
+
require 'indoctrinatr/tools/template_pack_helpers'
|
2
|
+
require 'zip'
|
3
|
+
|
4
|
+
module Indoctrinatr
|
5
|
+
module Tools
|
6
|
+
class TemplatePackPacker
|
7
|
+
include TemplatePackHelpers
|
8
|
+
|
9
|
+
attr_accessor :template_pack_name
|
10
|
+
|
11
|
+
def initialize template_pack_name
|
12
|
+
@template_pack_name = template_pack_name
|
13
|
+
end
|
14
|
+
|
15
|
+
def call
|
16
|
+
check_for_folder
|
17
|
+
remove_existing_zip
|
18
|
+
zip_template_folder
|
19
|
+
show_success
|
20
|
+
end
|
21
|
+
|
22
|
+
private
|
23
|
+
|
24
|
+
def remove_existing_zip
|
25
|
+
FileUtils.rm destination_zip_file, force: true
|
26
|
+
end
|
27
|
+
|
28
|
+
def zip_template_folder
|
29
|
+
Zip::File.open(destination_zip_file, Zip::File::CREATE) do |zipfile|
|
30
|
+
Dir[File.join(path_name, '**', '**')].each do |file|
|
31
|
+
zipfile.add(internal_file_name(file), file)
|
32
|
+
end
|
33
|
+
end
|
34
|
+
end
|
35
|
+
|
36
|
+
def show_success
|
37
|
+
puts "The template pack '#{template_pack_name}.zip' was created successfully."
|
38
|
+
end
|
39
|
+
|
40
|
+
def destination_zip_file
|
41
|
+
Pathname.new(Dir.pwd).join "#{template_pack_name}.zip"
|
42
|
+
end
|
43
|
+
|
44
|
+
def internal_file_name file_name
|
45
|
+
template_pack_name + '/' + file_name.sub(path_name.to_s, '')[1..-1] # remove leading /
|
46
|
+
end
|
47
|
+
end
|
48
|
+
end
|
49
|
+
end
|
@@ -0,0 +1,57 @@
|
|
1
|
+
require 'indoctrinatr/tools/template_pack_helpers'
|
2
|
+
require 'fileutils'
|
3
|
+
|
4
|
+
module Indoctrinatr
|
5
|
+
module Tools
|
6
|
+
class TemplatePackScaffold
|
7
|
+
include TemplatePackHelpers
|
8
|
+
|
9
|
+
attr_accessor :template_pack_name
|
10
|
+
|
11
|
+
def initialize template_pack_name
|
12
|
+
@template_pack_name = template_pack_name
|
13
|
+
end
|
14
|
+
|
15
|
+
def call
|
16
|
+
create_folder
|
17
|
+
create_asset_folder
|
18
|
+
copy_configuration_file
|
19
|
+
copy_tex_file
|
20
|
+
show_success
|
21
|
+
end
|
22
|
+
|
23
|
+
private
|
24
|
+
|
25
|
+
def create_folder
|
26
|
+
fail 'Please specify a template pack name.' if template_pack_name.empty?
|
27
|
+
fail "A folder with name '#{template_pack_name}' already exists." if Dir.exist? path_name
|
28
|
+
|
29
|
+
Dir.mkdir path_name
|
30
|
+
end
|
31
|
+
|
32
|
+
def create_asset_folder
|
33
|
+
Dir.mkdir path_name.join('assets')
|
34
|
+
end
|
35
|
+
|
36
|
+
def copy_configuration_file
|
37
|
+
FileUtils.copy_file source_config_file_path, config_file_path
|
38
|
+
end
|
39
|
+
|
40
|
+
def copy_tex_file
|
41
|
+
FileUtils.copy_file source_tex_file_path, tex_file_path
|
42
|
+
end
|
43
|
+
|
44
|
+
def show_success
|
45
|
+
puts "A template pack scaffold was created in folder '#{template_pack_name}'. Happy templating…"
|
46
|
+
end
|
47
|
+
|
48
|
+
def source_config_file_path
|
49
|
+
Pathname.new(File.expand_path(File.dirname(__FILE__))).join('..', 'templates', 'configuration.yaml')
|
50
|
+
end
|
51
|
+
|
52
|
+
def source_tex_file_path
|
53
|
+
Pathname.new(File.expand_path(File.dirname(__FILE__))).join('..', 'templates', 'template.tex.erb')
|
54
|
+
end
|
55
|
+
end
|
56
|
+
end
|
57
|
+
end
|
@@ -0,0 +1,35 @@
|
|
1
|
+
require 'redcloth'
|
2
|
+
|
3
|
+
module RedCloth
|
4
|
+
module Formatters
|
5
|
+
module LATEX
|
6
|
+
{ h1: 'chapter',
|
7
|
+
h2: 'section',
|
8
|
+
h3: 'subsection',
|
9
|
+
h4: 'subsubsection'
|
10
|
+
}.each do |m, tag|
|
11
|
+
define_method(m) do |opts|
|
12
|
+
case opts[:align]
|
13
|
+
when 'left' then
|
14
|
+
"\\begin{flushleft}\\#{tag}{#{opts[:text]}}\\end{flushleft}\n\n"
|
15
|
+
when 'right' then
|
16
|
+
"\\begin{flushright}\\#{tag}{#{opts[:text]}}\\end{flushright}\n\n"
|
17
|
+
when 'center' then
|
18
|
+
"\\begin{center}\\#{tag}{#{opts[:text]}}\\end{center}\n\n"
|
19
|
+
else
|
20
|
+
"\\#{tag}{#{opts[:text]}}\n\n"
|
21
|
+
end
|
22
|
+
end
|
23
|
+
end
|
24
|
+
|
25
|
+
def table_close _opts
|
26
|
+
output = "\\begin{tabu}{ #{'l ' * @table[0].size}}\n"
|
27
|
+
@table.each do |row|
|
28
|
+
output << " #{row.join(' & ')} \\\\\n"
|
29
|
+
end
|
30
|
+
output << "\\end{tabu}\n"
|
31
|
+
output
|
32
|
+
end
|
33
|
+
end
|
34
|
+
end
|
35
|
+
end
|
@@ -0,0 +1,9 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
require 'pathname'
|
3
|
+
|
4
|
+
describe 'configuration.yaml' do
|
5
|
+
it 'should exist' do
|
6
|
+
configuration_file = Pathname.new(__FILE__).join '..', '..', '..', '..', 'lib', 'indoctrinatr', 'templates', 'configuration.yaml'
|
7
|
+
expect(File.exist? configuration_file).to eq true
|
8
|
+
end
|
9
|
+
end
|
@@ -0,0 +1,9 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
require 'pathname'
|
3
|
+
|
4
|
+
describe 'template.tex.erb' do
|
5
|
+
it 'should exist' do
|
6
|
+
template_file = Pathname.new(__FILE__).join '..', '..', '..', '..', 'lib', 'indoctrinatr', 'templates', 'template.tex.erb'
|
7
|
+
expect(File.exist? template_file).to eq true
|
8
|
+
end
|
9
|
+
end
|
@@ -0,0 +1,18 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
require 'indoctrinatr/tools/default_values'
|
3
|
+
require 'indoctrinatr/tools/template_pack_configuration'
|
4
|
+
|
5
|
+
describe "support for Textile with 'textilize' function" do
|
6
|
+
let(:configuration) do
|
7
|
+
c = Indoctrinatr::Tools::TemplatePackConfiguration.new
|
8
|
+
c.attributes_as_hashes_in_array = []
|
9
|
+
c.template_asset_path = ''
|
10
|
+
c.output_file_name = ''
|
11
|
+
c
|
12
|
+
end
|
13
|
+
let(:default_values) { Indoctrinatr::Tools::DefaultValues.new configuration }
|
14
|
+
|
15
|
+
it 'parses to LaTeX' do
|
16
|
+
expect(default_values.textile2latex('*strong*')).to eq "\\textbf{strong}\n\n"
|
17
|
+
end
|
18
|
+
end
|
@@ -0,0 +1,30 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
require 'redcloth_latex_formatter_patch/patch'
|
3
|
+
|
4
|
+
describe 'patches for RedCloth::LATEX::Formatter' do
|
5
|
+
it 'tranforms a h1. headline to LaTeX chapter notation' do
|
6
|
+
text = 'h1. Headline'
|
7
|
+
expect(RedCloth.new(text).to_latex).to eq "\\chapter{Headline}\n\n"
|
8
|
+
end
|
9
|
+
|
10
|
+
it 'tranforms a h2. headline to LaTeX section notation' do
|
11
|
+
text = 'h2. Headline'
|
12
|
+
expect(RedCloth.new(text).to_latex).to eq "\\section{Headline}\n\n"
|
13
|
+
end
|
14
|
+
|
15
|
+
it 'tranforms a h3. headline to LaTeX subsection notation' do
|
16
|
+
text = 'h3. Headline'
|
17
|
+
expect(RedCloth.new(text).to_latex).to eq "\\subsection{Headline}\n\n"
|
18
|
+
end
|
19
|
+
|
20
|
+
it 'tranforms a h4. headline to LaTeX subsubsection notation' do
|
21
|
+
text = 'h4. Headline'
|
22
|
+
expect(RedCloth.new(text).to_latex).to eq "\\subsubsection{Headline}\n\n"
|
23
|
+
end
|
24
|
+
|
25
|
+
it 'transforms a table to LaTeX tabu notation' do
|
26
|
+
input = "|_.Headerspalte 1|_.Headerspalte 2|\n|Feld 1,1 |Feld 2,1 |\n|Feld 1,2 |Feld 2,2 |"
|
27
|
+
expected_result = "\\begin{tabu}{ l l }\n Headerspalte 1 & Headerspalte 2 \\\\\n Feld 1,1 & Feld 2,1 \\\\\n Feld 1,2 & Feld 2,2 \\\\\n\\end{tabu}\n"
|
28
|
+
expect(RedCloth.new(input).to_latex).to eq expected_result
|
29
|
+
end
|
30
|
+
end
|
data/spec/spec_helper.rb
ADDED
metadata
ADDED
@@ -0,0 +1,304 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: indoctrinatr-tools
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.10.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Nicolai Reuschling
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2015-08-25 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: bundler
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '1.9'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '1.9'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rake
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '10.4'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '10.4'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: rspec
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '3.3'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '3.3'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: cucumber
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - "~>"
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '2.0'
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - "~>"
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '2.0'
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: aruba
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - "~>"
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '0.9'
|
76
|
+
type: :development
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - "~>"
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '0.9'
|
83
|
+
- !ruby/object:Gem::Dependency
|
84
|
+
name: rubocop
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - "~>"
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: '0.33'
|
90
|
+
type: :development
|
91
|
+
prerelease: false
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
93
|
+
requirements:
|
94
|
+
- - "~>"
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: '0.33'
|
97
|
+
- !ruby/object:Gem::Dependency
|
98
|
+
name: pry
|
99
|
+
requirement: !ruby/object:Gem::Requirement
|
100
|
+
requirements:
|
101
|
+
- - "~>"
|
102
|
+
- !ruby/object:Gem::Version
|
103
|
+
version: '0.10'
|
104
|
+
type: :development
|
105
|
+
prerelease: false
|
106
|
+
version_requirements: !ruby/object:Gem::Requirement
|
107
|
+
requirements:
|
108
|
+
- - "~>"
|
109
|
+
- !ruby/object:Gem::Version
|
110
|
+
version: '0.10'
|
111
|
+
- !ruby/object:Gem::Dependency
|
112
|
+
name: coveralls
|
113
|
+
requirement: !ruby/object:Gem::Requirement
|
114
|
+
requirements:
|
115
|
+
- - "~>"
|
116
|
+
- !ruby/object:Gem::Version
|
117
|
+
version: '0.8'
|
118
|
+
type: :development
|
119
|
+
prerelease: false
|
120
|
+
version_requirements: !ruby/object:Gem::Requirement
|
121
|
+
requirements:
|
122
|
+
- - "~>"
|
123
|
+
- !ruby/object:Gem::Version
|
124
|
+
version: '0.8'
|
125
|
+
- !ruby/object:Gem::Dependency
|
126
|
+
name: gli
|
127
|
+
requirement: !ruby/object:Gem::Requirement
|
128
|
+
requirements:
|
129
|
+
- - "~>"
|
130
|
+
- !ruby/object:Gem::Version
|
131
|
+
version: '2.12'
|
132
|
+
type: :runtime
|
133
|
+
prerelease: false
|
134
|
+
version_requirements: !ruby/object:Gem::Requirement
|
135
|
+
requirements:
|
136
|
+
- - "~>"
|
137
|
+
- !ruby/object:Gem::Version
|
138
|
+
version: '2.12'
|
139
|
+
- !ruby/object:Gem::Dependency
|
140
|
+
name: rubyzip
|
141
|
+
requirement: !ruby/object:Gem::Requirement
|
142
|
+
requirements:
|
143
|
+
- - "~>"
|
144
|
+
- !ruby/object:Gem::Version
|
145
|
+
version: '1.1'
|
146
|
+
type: :runtime
|
147
|
+
prerelease: false
|
148
|
+
version_requirements: !ruby/object:Gem::Requirement
|
149
|
+
requirements:
|
150
|
+
- - "~>"
|
151
|
+
- !ruby/object:Gem::Version
|
152
|
+
version: '1.1'
|
153
|
+
- !ruby/object:Gem::Dependency
|
154
|
+
name: erubis
|
155
|
+
requirement: !ruby/object:Gem::Requirement
|
156
|
+
requirements:
|
157
|
+
- - "~>"
|
158
|
+
- !ruby/object:Gem::Version
|
159
|
+
version: '2.7'
|
160
|
+
type: :runtime
|
161
|
+
prerelease: false
|
162
|
+
version_requirements: !ruby/object:Gem::Requirement
|
163
|
+
requirements:
|
164
|
+
- - "~>"
|
165
|
+
- !ruby/object:Gem::Version
|
166
|
+
version: '2.7'
|
167
|
+
- !ruby/object:Gem::Dependency
|
168
|
+
name: to_latex
|
169
|
+
requirement: !ruby/object:Gem::Requirement
|
170
|
+
requirements:
|
171
|
+
- - "~>"
|
172
|
+
- !ruby/object:Gem::Version
|
173
|
+
version: '0.5'
|
174
|
+
type: :runtime
|
175
|
+
prerelease: false
|
176
|
+
version_requirements: !ruby/object:Gem::Requirement
|
177
|
+
requirements:
|
178
|
+
- - "~>"
|
179
|
+
- !ruby/object:Gem::Version
|
180
|
+
version: '0.5'
|
181
|
+
- !ruby/object:Gem::Dependency
|
182
|
+
name: RedCloth
|
183
|
+
requirement: !ruby/object:Gem::Requirement
|
184
|
+
requirements:
|
185
|
+
- - "~>"
|
186
|
+
- !ruby/object:Gem::Version
|
187
|
+
version: '4.2'
|
188
|
+
type: :runtime
|
189
|
+
prerelease: false
|
190
|
+
version_requirements: !ruby/object:Gem::Requirement
|
191
|
+
requirements:
|
192
|
+
- - "~>"
|
193
|
+
- !ruby/object:Gem::Version
|
194
|
+
version: '4.2'
|
195
|
+
description:
|
196
|
+
email:
|
197
|
+
- nicolai.reuschling@dkd.de
|
198
|
+
executables:
|
199
|
+
- indoctrinatr
|
200
|
+
extensions: []
|
201
|
+
extra_rdoc_files: []
|
202
|
+
files:
|
203
|
+
- ".arcconfig"
|
204
|
+
- ".coveralls.yml"
|
205
|
+
- ".gitignore"
|
206
|
+
- ".rubocop.yml"
|
207
|
+
- ".rvmrc"
|
208
|
+
- ".travis.yml"
|
209
|
+
- Gemfile
|
210
|
+
- LICENSE
|
211
|
+
- README.md
|
212
|
+
- Rakefile
|
213
|
+
- assets/images/dkd_logo.png
|
214
|
+
- assets/images/logo.png
|
215
|
+
- bin/indoctrinatr
|
216
|
+
- cucumber.yml
|
217
|
+
- features/autocompletion_support.feature
|
218
|
+
- features/demo.feature
|
219
|
+
- features/documentation.feature
|
220
|
+
- features/pack.feature
|
221
|
+
- features/parse.feature
|
222
|
+
- features/pdf.feature
|
223
|
+
- features/scaffold.feature
|
224
|
+
- features/step_definitions/common.rb
|
225
|
+
- features/step_definitions/indoctrinatr_cli.rb
|
226
|
+
- features/support/env.rb
|
227
|
+
- features/version.feature
|
228
|
+
- features/workflow.feature
|
229
|
+
- indoctrinatr-tools.gemspec
|
230
|
+
- lib/indoctrinatr/templates/configuration.yaml
|
231
|
+
- lib/indoctrinatr/templates/documentation/indoctrinatr-technical-documentation-content.tex.erb
|
232
|
+
- lib/indoctrinatr/templates/documentation/indoctrinatr-technical-documentation.sty
|
233
|
+
- lib/indoctrinatr/templates/documentation/indoctrinatr-technical-documentation.tex.erb
|
234
|
+
- lib/indoctrinatr/templates/documentation/indoctrinatr_letterpaper.pdf
|
235
|
+
- lib/indoctrinatr/templates/template.tex.erb
|
236
|
+
- lib/indoctrinatr/tools.rb
|
237
|
+
- lib/indoctrinatr/tools/configuration_extractor.rb
|
238
|
+
- lib/indoctrinatr/tools/default_values.rb
|
239
|
+
- lib/indoctrinatr/tools/directory_helpers.rb
|
240
|
+
- lib/indoctrinatr/tools/template_documentation_content.rb
|
241
|
+
- lib/indoctrinatr/tools/template_documentation_helpers.rb
|
242
|
+
- lib/indoctrinatr/tools/template_documentation_source_file.rb
|
243
|
+
- lib/indoctrinatr/tools/template_pack_configuration.rb
|
244
|
+
- lib/indoctrinatr/tools/template_pack_default_values_compiler.rb
|
245
|
+
- lib/indoctrinatr/tools/template_pack_default_values_parser.rb
|
246
|
+
- lib/indoctrinatr/tools/template_pack_demo.rb
|
247
|
+
- lib/indoctrinatr/tools/template_pack_documentation.rb
|
248
|
+
- lib/indoctrinatr/tools/template_pack_helpers.rb
|
249
|
+
- lib/indoctrinatr/tools/template_pack_packer.rb
|
250
|
+
- lib/indoctrinatr/tools/template_pack_scaffold.rb
|
251
|
+
- lib/indoctrinatr/tools/version.rb
|
252
|
+
- lib/redcloth_latex_formatter_patch/patch.rb
|
253
|
+
- spec/indoctrinatr/templates/configuration_file_spec.rb
|
254
|
+
- spec/indoctrinatr/templates/tex_file_spec.rb
|
255
|
+
- spec/indoctrinatr/tools/textile_support_spec.rb
|
256
|
+
- spec/indoctrinatr/tools/version_spec.rb
|
257
|
+
- spec/redcloth_latex_formatter_patch/patch_spec.rb
|
258
|
+
- spec/spec_helper.rb
|
259
|
+
homepage: ''
|
260
|
+
licenses:
|
261
|
+
- MIT
|
262
|
+
metadata: {}
|
263
|
+
post_install_message:
|
264
|
+
rdoc_options: []
|
265
|
+
require_paths:
|
266
|
+
- lib
|
267
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
268
|
+
requirements:
|
269
|
+
- - "~>"
|
270
|
+
- !ruby/object:Gem::Version
|
271
|
+
version: '2.0'
|
272
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
273
|
+
requirements:
|
274
|
+
- - ">="
|
275
|
+
- !ruby/object:Gem::Version
|
276
|
+
version: '0'
|
277
|
+
requirements:
|
278
|
+
- xelatex
|
279
|
+
rubyforge_project:
|
280
|
+
rubygems_version: 2.4.8
|
281
|
+
signing_key:
|
282
|
+
specification_version: 4
|
283
|
+
summary: indoctrinatr-tools provides a set of command line tools for Indoctrinatr
|
284
|
+
(an Open Source Software project by dkd Internet Service GmbH, Frankfurt am Main,
|
285
|
+
Germany.)
|
286
|
+
test_files:
|
287
|
+
- features/autocompletion_support.feature
|
288
|
+
- features/demo.feature
|
289
|
+
- features/documentation.feature
|
290
|
+
- features/pack.feature
|
291
|
+
- features/parse.feature
|
292
|
+
- features/pdf.feature
|
293
|
+
- features/scaffold.feature
|
294
|
+
- features/step_definitions/common.rb
|
295
|
+
- features/step_definitions/indoctrinatr_cli.rb
|
296
|
+
- features/support/env.rb
|
297
|
+
- features/version.feature
|
298
|
+
- features/workflow.feature
|
299
|
+
- spec/indoctrinatr/templates/configuration_file_spec.rb
|
300
|
+
- spec/indoctrinatr/templates/tex_file_spec.rb
|
301
|
+
- spec/indoctrinatr/tools/textile_support_spec.rb
|
302
|
+
- spec/indoctrinatr/tools/version_spec.rb
|
303
|
+
- spec/redcloth_latex_formatter_patch/patch_spec.rb
|
304
|
+
- spec/spec_helper.rb
|