indoctrinatr-tools 0.15.0 → 0.16.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- checksums.yaml.gz.sig +0 -0
- data.tar.gz.sig +0 -0
- data/.rubocop.yml +10 -4
- data/.travis.yml +8 -7
- data/CHANGELOG.md +6 -0
- data/LICENSE +1 -1
- data/README.md +1 -1
- data/bin/indoctrinatr +30 -33
- data/certs/dkd-reuschling.pem +18 -20
- data/features/demo.feature +11 -11
- data/features/doc_keepauxfiles.feature +6 -6
- data/features/documentation.feature +10 -10
- data/features/fieldnames_pdf.feature +2 -2
- data/features/fieldnames_pdf_auxfiles.feature +3 -3
- data/features/pdf.feature +6 -6
- data/features/pdf_keepauxfiles.feature +4 -4
- data/features/pdf_with_timestamp.feature +2 -2
- data/features/scaffold.feature +1 -1
- data/features/version.feature +1 -1
- data/features/workflow.feature +4 -4
- data/indoctrinatr-tools.gemspec +14 -15
- data/lib/indoctrinatr/tools/content_for_tex_files.rb +1 -1
- data/lib/indoctrinatr/tools/directory_helpers.rb +2 -1
- data/lib/indoctrinatr/tools/field_name_values.rb +1 -0
- data/lib/indoctrinatr/tools/template_documentation_helpers.rb +1 -1
- data/lib/indoctrinatr/tools/template_pack_configuration.rb +2 -1
- data/lib/indoctrinatr/tools/template_pack_documentation.rb +2 -2
- data/lib/indoctrinatr/tools/template_pack_error_checker.rb +8 -4
- data/lib/indoctrinatr/tools/template_pack_helpers.rb +2 -1
- data/lib/indoctrinatr/tools/template_pack_scaffold.rb +2 -2
- data/lib/indoctrinatr/tools/version.rb +1 -1
- data/lib/redcloth_latex_formatter_patch/patch.rb +3 -3
- data/spec/indoctrinatr/templates/configuration_file_spec.rb +1 -1
- data/spec/indoctrinatr/templates/tex_file_spec.rb +1 -1
- data/spec/indoctrinatr/tools/textile_support_spec.rb +1 -1
- data/spec/indoctrinatr/tools/version_spec.rb +1 -1
- data/spec/redcloth_latex_formatter_patch/patch_spec.rb +1 -1
- metadata +77 -67
- metadata.gz.sig +0 -0
- data/.arcconfig +0 -9
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 6a20a3417d2320bbee925716116c0abe837b378e4de871a4e90784435be78a69
|
4
|
+
data.tar.gz: 25119cb987c05ab753652ce16beca1a19e345bfa87fe6bfd957129bd8074ab1f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fce3a5ed1d1ba3ddce352de0c068046867bf63b75e003e532c8c0f3b4ba2affaa1d1b6d1ef9a3115d522c37615f08f80d751d4e67c96f3639f7b82bc0631131b
|
7
|
+
data.tar.gz: 4d126f8b3d4394b869a67bb76330dc16617980ccbd163cbe79e790eeace8b5c4412997b7d87c517894813fb8a8f3619be499bbe3bb2ca3195c50a998a0ae0fa6
|
checksums.yaml.gz.sig
CHANGED
Binary file
|
data.tar.gz.sig
CHANGED
Binary file
|
data/.rubocop.yml
CHANGED
@@ -1,12 +1,18 @@
|
|
1
|
-
require:
|
1
|
+
require:
|
2
|
+
- rubocop-performance
|
3
|
+
- rubocop-rspec
|
2
4
|
|
3
5
|
AllCops:
|
4
|
-
|
5
|
-
|
6
|
+
TargetRubyVersion: 2.5
|
7
|
+
ExtraDetails: true
|
8
|
+
DisplayStyleGuide: true
|
9
|
+
DisplayCopNames: true
|
6
10
|
Exclude:
|
7
11
|
- tmp/**/*
|
8
12
|
- vendor/**/*
|
9
|
-
|
13
|
+
Style/FrozenStringLiteralComment:
|
14
|
+
Enabled: false
|
15
|
+
Layout/LineLength:
|
10
16
|
Max: 240
|
11
17
|
Style/MethodDefParentheses:
|
12
18
|
EnforcedStyle: require_no_parentheses
|
data/.travis.yml
CHANGED
@@ -1,15 +1,16 @@
|
|
1
1
|
sudo: false
|
2
2
|
language: ruby
|
3
|
-
rvm:
|
4
|
-
- '2.4.1'
|
5
|
-
- '2.3.4'
|
6
|
-
- '2.2.7'
|
7
3
|
cache: bundler
|
4
|
+
rvm:
|
5
|
+
- 2.7
|
6
|
+
- 2.6
|
7
|
+
- 2.5
|
8
8
|
|
9
9
|
before_install:
|
10
|
-
- gem install bundler --no-
|
10
|
+
- gem install bundler --version=2.1.4 --no-doc
|
11
|
+
- gem install bundler-audit --no-doc
|
11
12
|
|
12
13
|
script:
|
13
|
-
- bundle
|
14
|
-
- bundle exec rubocop
|
14
|
+
- bundle-audit check --update
|
15
|
+
- bundle exec rubocop .
|
15
16
|
- bundle exec indoctrinatr new demo
|
data/CHANGELOG.md
CHANGED
data/LICENSE
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
The MIT License (MIT)
|
2
2
|
|
3
|
-
Copyright (c) 2014-
|
3
|
+
Copyright (c) 2014-2020 Indoctrinatr Development Team, dkd Internet Service GmbH, Frankfurt am Main
|
4
4
|
|
5
5
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
6
|
of this software and associated documentation files (the "Software"), to deal
|
data/README.md
CHANGED
@@ -6,7 +6,7 @@
|
|
6
6
|
|
7
7
|
## Installation
|
8
8
|
|
9
|
-
[![Gem Version](https://badge.fury.io/rb/indoctrinatr-tools.svg)](http://badge.fury.io/rb/indoctrinatr-tools) [![Coverage Status](https://coveralls.io/repos/dkd/indoctrinatr-tools/badge.svg?branch=development&service=github)](https://coveralls.io/github/dkd/indoctrinatr-tools?branch=development)
|
9
|
+
[![Gem Version](https://badge.fury.io/rb/indoctrinatr-tools.svg)](http://badge.fury.io/rb/indoctrinatr-tools) [![Coverage Status](https://coveralls.io/repos/dkd/indoctrinatr-tools/badge.svg?branch=development&service=github)](https://coveralls.io/github/dkd/indoctrinatr-tools?branch=development) master [![Travis CI Status: master](https://travis-ci.org/dkd/indoctrinatr-tools.svg?branch=master)](https://travis-ci.org/dkd/indoctrinatr-tools) development [![Travis CI Status: development](https://travis-ci.org/dkd/indoctrinatr-tools.svg?branch=development)](https://travis-ci.org/dkd/indoctrinatr-tools)
|
10
10
|
|
11
11
|
|
12
12
|
1. Install XeTeX:
|
data/bin/indoctrinatr
CHANGED
@@ -1,5 +1,4 @@
|
|
1
1
|
#!/usr/bin/env ruby
|
2
|
-
|
3
2
|
require 'gli'
|
4
3
|
require 'indoctrinatr/tools/version'
|
5
4
|
require 'indoctrinatr/tools/template_pack_demo'
|
@@ -11,8 +10,10 @@ require 'indoctrinatr/tools/template_pack_fieldnames_creator'
|
|
11
10
|
require 'indoctrinatr/tools/template_pack_documentation'
|
12
11
|
require 'indoctrinatr/tools/template_pack_error_checker'
|
13
12
|
|
13
|
+
# rubocop:disable Style/MixinUsage
|
14
14
|
include GLI::App
|
15
15
|
include Indoctrinatr::Tools
|
16
|
+
# rubocop:enable Style/MixinUsage
|
16
17
|
|
17
18
|
program_desc 'Create and manage Template Packs for Indoctrinatr'
|
18
19
|
version Indoctrinatr::Tools::VERSION
|
@@ -28,29 +29,29 @@ end
|
|
28
29
|
desc 'Display the suggested workflow'
|
29
30
|
command :workflow do |c|
|
30
31
|
c.action do
|
31
|
-
puts
|
32
|
-
|
33
|
-
1. Run in shell: indoctrinatr new demo
|
34
|
-
Creates a new Indoctrinatr Template Pack in the folder demo
|
32
|
+
puts <<~HEREDOC
|
33
|
+
The workflow for a project (e.g. demo) typically looks like this:
|
35
34
|
|
36
|
-
|
35
|
+
1. Run in shell: indoctrinatr new demo
|
36
|
+
Creates a new Indoctrinatr Template Pack in the folder demo
|
37
37
|
|
38
|
-
|
39
|
-
Parses tex file demo_with_default_values.tex with ERB and default values from configuration.yaml
|
38
|
+
2. Edit demo.tex.erb and configuration.yaml according to needs
|
40
39
|
|
41
|
-
|
42
|
-
|
40
|
+
3. Run in shell: indoctrinatr parse demo
|
41
|
+
Parses tex file demo_with_default_values.tex with ERB and default values from configuration.yaml
|
43
42
|
|
44
|
-
|
45
|
-
|
43
|
+
4. Run in shell: indoctrinatr pdf demo
|
44
|
+
Compiles PDF from demo_with_default_values.tex
|
46
45
|
|
47
|
-
|
48
|
-
|
46
|
+
5. Run in shell: indoctrinatr check demo
|
47
|
+
Analyzes your Template Pack for potential errors
|
49
48
|
|
50
|
-
|
51
|
-
|
49
|
+
6. Run in shell: indoctrinatr doc demo
|
50
|
+
Creates a technical documentation for the Template Pack
|
52
51
|
|
53
|
-
|
52
|
+
7. Run in shell: indoctrinatr pack demo
|
53
|
+
Creates demo.zip with all required file for upload to Indoctrinatr server
|
54
|
+
HEREDOC
|
54
55
|
end
|
55
56
|
end
|
56
57
|
|
@@ -143,19 +144,18 @@ end
|
|
143
144
|
desc 'Display instructions for bash completion'
|
144
145
|
command :bashcompletion do |c|
|
145
146
|
c.action do
|
146
|
-
puts
|
147
|
-
|
148
|
-
complete -F get_indoctrinatr_targets indoctrinatr
|
149
|
-
function get_indoctrinatr_targets()
|
150
|
-
{
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
|
155
|
-
|
156
|
-
}
|
157
|
-
|
158
|
-
'
|
147
|
+
puts <<~HEREDOC
|
148
|
+
Add this to your .bashrc (and open up a new shell):
|
149
|
+
complete -F get_indoctrinatr_targets indoctrinatr
|
150
|
+
function get_indoctrinatr_targets()
|
151
|
+
{
|
152
|
+
if [ -z $2 ] ; then
|
153
|
+
COMPREPLY=(`indoctrinatr help -c`)
|
154
|
+
else
|
155
|
+
COMPREPLY=(`indoctrinatr help -c $2`)
|
156
|
+
fi
|
157
|
+
}
|
158
|
+
HEREDOC
|
159
159
|
end
|
160
160
|
end
|
161
161
|
|
@@ -164,11 +164,9 @@ desc 'Display instructions for zsh completion'
|
|
164
164
|
command :zshcompletion do |c|
|
165
165
|
c.action do
|
166
166
|
puts 'Add this to your .zshrc (and open up a new shell):
|
167
|
-
|
168
167
|
if [[ -n ${ZSH_VERSION-} ]]; then
|
169
168
|
autoload -U +X bashcompinit && bashcompinit
|
170
169
|
fi
|
171
|
-
|
172
170
|
complete -F get_indoctrinatr_commands indoctrinatr
|
173
171
|
function get_indoctrinatr_commands()
|
174
172
|
{
|
@@ -177,7 +175,6 @@ function get_indoctrinatr_commands()
|
|
177
175
|
clean_params=${help_params//-*([^ ])?( )}
|
178
176
|
COMPREPLY=(`$binary help -c $clean_params`)
|
179
177
|
}
|
180
|
-
|
181
178
|
'
|
182
179
|
end
|
183
180
|
end
|
data/certs/dkd-reuschling.pem
CHANGED
@@ -1,22 +1,20 @@
|
|
1
1
|
-----BEGIN CERTIFICATE-----
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
HOu/JTkMVu8oWst3Fhxdqaqw1a1uFYiG5VkcX0hsPUFS+ZDJhAhi1eu5Pea1dZq4
|
21
|
-
CZs=
|
2
|
+
MIIDVjCCAj6gAwIBAgIBATANBgkqhkiG9w0BAQsFADAqMSgwJgYDVQQDDB9uaWNv
|
3
|
+
bGFpLnJldXNjaGxpbmcvREM9ZGtkL0RDPWRlMB4XDTIwMDIxNDE1MTcwNloXDTIx
|
4
|
+
MDIxMzE1MTcwNlowKjEoMCYGA1UEAwwfbmljb2xhaS5yZXVzY2hsaW5nL0RDPWRr
|
5
|
+
ZC9EQz1kZTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL5RzbjnDuqA
|
6
|
+
rb+fbMKmHdfNZcX9rAlcGo5i7lwtBImH8DAikZXpS5pmDh+tWq0wiYlGqBjghPRw
|
7
|
+
rdWcVZDf23EiKjDuDDW0bqtqNg6wbClkjGgr1GEyYuhficipS/1xWD3PTaCMk9RS
|
8
|
+
eVJwwtzNJQbLyTnUZI8biuaSJr/pXot2WqyC/+0z+ddXzI00W686NRpbRb3DNR2l
|
9
|
+
5P59g1NiHrwiPjzWj+viIgCXt4j5wxJcZmEDuJQIZLdkcLcp7XGMpFnNsOcr7BMv
|
10
|
+
w4/5NJS/7QG/n7j3xMOrCRpred346xlUoG5seVuu7mvChkOFleEkkKomvAEdiC5Y
|
11
|
+
wB2Zd1EptkkCAwEAAaOBhjCBgzAJBgNVHRMEAjAAMAsGA1UdDwQEAwIEsDAdBgNV
|
12
|
+
HQ4EFgQUbCmdTAu9t3RJwYPe9hOJ3JWBlfowJAYDVR0RBB0wG4EZbmljb2xhaS5y
|
13
|
+
ZXVzY2hsaW5nQGRrZC5kZTAkBgNVHRIEHTAbgRluaWNvbGFpLnJldXNjaGxpbmdA
|
14
|
+
ZGtkLmRlMA0GCSqGSIb3DQEBCwUAA4IBAQBk1mExobXS3Uljuvadir5gAWkGQSRt
|
15
|
+
queISF2e9iQKmuXV3auAy0UWbHTBqjwu8dJtzQTX5UOtfG/Jt1QIU3X6sEBuMY76
|
16
|
+
Zbyu2NYp54ESAAyZFpt2prs7oDkRiDYk6FdZ7mHLTjPgr8nZV0qqONRfzmWmpImG
|
17
|
+
PxsXUcEiEZej8d8C5vcHy3bwXb/+CjzcKrcqN67lkXwrA9jzqMuqnjVuhx+JMXJ5
|
18
|
+
kHAKYJXqSQLXcRmkRlqCNGKAJSy6FmpClVbei309Yg3dl4PmFSc8GdLcWD1keOvE
|
19
|
+
qzeIYbdD18i9ZRk4hfm8vEpevt+xRgM+3ughiJIaiWI3eO3C+VRszvqU
|
22
20
|
-----END CERTIFICATE-----
|
data/features/demo.feature
CHANGED
@@ -4,14 +4,14 @@ Feature: Running the "demo" command
|
|
4
4
|
Given the default aruba exit timeout is 60 seconds
|
5
5
|
|
6
6
|
Scenario:
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
7
|
+
When I successfully run `indoctrinatr demo`
|
8
|
+
Then a file named "demo/doc/demo_technical_documentation.pdf" should exist
|
9
|
+
And a directory named "demo" should exist
|
10
|
+
And a directory named "demo/assets" should exist
|
11
|
+
And the following files should exist:
|
12
|
+
| demo/configuration.yaml |
|
13
|
+
| demo/demo.tex.erb |
|
14
|
+
| demo/doc/examples/demo_with_default_values.tex |
|
15
|
+
| demo/doc/examples/demo_with_default_values.pdf |
|
16
|
+
| demo/doc/demo_technical_documentation.pdf |
|
17
|
+
| demo.zip |
|
@@ -5,9 +5,9 @@ Feature: Running the 'doc' command with keepauxfiles
|
|
5
5
|
|
6
6
|
Scenario: creating documentation for given project
|
7
7
|
Given I do not have a 'demo' project
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
8
|
+
When I successfully run `indoctrinatr new demo`
|
9
|
+
And I successfully run `indoctrinatr doc demo --keep-aux-files`
|
10
|
+
Then the output should match /A documentation for 'demo' has been successfully generated/
|
11
|
+
And a file named "demo/doc/demo_technical_documentation.pdf" should exist
|
12
|
+
And a file named "demo/doc/indoctrinatr-technical-documentation.log" should exist
|
13
|
+
And a file named "demo/doc/indoctrinatr-technical-documentation.tex" should exist
|
@@ -2,19 +2,19 @@ Feature: Running the 'doc' command
|
|
2
2
|
|
3
3
|
Background:
|
4
4
|
Given the default aruba exit timeout is 40 seconds
|
5
|
-
|
6
|
-
|
5
|
+
And I do not have a 'demo' project
|
6
|
+
And I successfully run `indoctrinatr new demo`
|
7
7
|
|
8
8
|
Scenario: creating documentation for given project
|
9
|
-
|
9
|
+
When I successfully run `indoctrinatr doc demo`
|
10
10
|
Then the output should match /Example with field names has been automatically generated for the documentation/
|
11
|
-
|
12
|
-
|
11
|
+
And the output should match /A documentation for 'demo' has been successfully generated/
|
12
|
+
And a file named "demo/doc/demo_technical_documentation.pdf" should exist
|
13
13
|
|
14
14
|
Scenario: creating the documentation without overwriting a FieldNames PDF example
|
15
|
-
|
15
|
+
When I successfully run `indoctrinatr pdf_with_field_names demo`
|
16
16
|
Then a file named "demo/doc/examples/demo_with_fieldname_values.pdf" should exist
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
17
|
+
And I successfully run `indoctrinatr doc demo`
|
18
|
+
And the output should not match /Example with field names has been automatically generated for the documentation/
|
19
|
+
And the output should match /A documentation for 'demo' has been successfully generated/
|
20
|
+
And a file named "demo/doc/demo_technical_documentation.pdf" should exist
|
@@ -5,5 +5,5 @@ Feature: Running the 'pdf_with_field_names' command
|
|
5
5
|
|
6
6
|
Scenario: for a given 'demo' project
|
7
7
|
Given I have an Indoctrinatr project 'demo'
|
8
|
-
|
9
|
-
|
8
|
+
When I run `indoctrinatr pdf_with_field_names demo`
|
9
|
+
Then a file named "demo/doc/examples/demo_with_fieldname_values.pdf" should exist
|
@@ -5,6 +5,6 @@ Feature: Running the 'pdf_with_field_names' command with keepauxfiles
|
|
5
5
|
|
6
6
|
Scenario: for a given 'demo' project
|
7
7
|
Given I have an Indoctrinatr project 'demo'
|
8
|
-
|
9
|
-
|
10
|
-
|
8
|
+
When I run `indoctrinatr pdf_with_field_names demo --keep-aux-files`
|
9
|
+
Then a file named "demo/doc/examples/demo_with_fieldname_values.pdf" should exist
|
10
|
+
And a file named "demo/doc/examples/demo_with_fieldname_values.log" should exist
|
data/features/pdf.feature
CHANGED
@@ -2,14 +2,14 @@ Feature: Running the 'pdf' command
|
|
2
2
|
|
3
3
|
Background:
|
4
4
|
Given the default aruba exit timeout is 20 seconds
|
5
|
-
|
6
|
-
|
5
|
+
And I have an Indoctrinatr project 'demo'
|
6
|
+
And I successfully run `indoctrinatr parse demo`
|
7
7
|
|
8
8
|
Scenario: for a given 'demo' project
|
9
|
-
|
10
|
-
|
9
|
+
When I run `indoctrinatr pdf demo`
|
10
|
+
Then a file named "demo/doc/examples/demo_with_default_values.pdf" should exist
|
11
11
|
|
12
12
|
Scenario: for a given 'demo' project and usage with tab-completion
|
13
|
-
|
14
|
-
|
13
|
+
When I run `indoctrinatr pdf demo/`
|
14
|
+
Then a file named "demo/doc/examples/demo_with_default_values.pdf" should exist
|
15
15
|
|
@@ -5,7 +5,7 @@ Feature: Running the 'pdf' command with keepauxfiles option
|
|
5
5
|
|
6
6
|
Scenario: for a given 'demo' project
|
7
7
|
Given I have an Indoctrinatr project 'demo'
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
8
|
+
When I run `indoctrinatr pdf demo --keep-aux-files`
|
9
|
+
Then a file named "demo/doc/examples/demo_with_default_values.pdf" should exist
|
10
|
+
And a file named "demo/doc/examples/demo_with_default_values.log" should exist
|
11
|
+
# there is not (an easy) way to use the current timestamp. Therefore the template for the 'new' command should not be static
|
@@ -2,7 +2,7 @@ Feature: Running the 'pdf' command with timestamp in filename
|
|
2
2
|
Scenario: using the test fixture
|
3
3
|
Given I use the fixture named "test"
|
4
4
|
When I cd to "../"
|
5
|
-
|
5
|
+
And I run the Indoctrinatr command 'parse test'
|
6
6
|
And I run `indoctrinatr pdf test`
|
7
|
-
|
7
|
+
# String interpolation for "file named should exist" does not work. Therefore less strict regexp matching:
|
8
8
|
Then a file matching %r<test/doc/examples/\d{4}_hello_world\.pdf> should exist
|
data/features/scaffold.feature
CHANGED
@@ -8,7 +8,7 @@ Feature: Running the 'new' command
|
|
8
8
|
And a directory named "demo/assets" should exist
|
9
9
|
And the following files should exist:
|
10
10
|
| demo/configuration.yaml |
|
11
|
-
| demo/demo.tex.erb
|
11
|
+
| demo/demo.tex.erb |
|
12
12
|
|
13
13
|
Scenario: with an empty name
|
14
14
|
Given I do not have a 'demo' project
|
data/features/version.feature
CHANGED
data/features/workflow.feature
CHANGED
@@ -3,7 +3,7 @@ Feature: Running the "workflow" command
|
|
3
3
|
Scenario:
|
4
4
|
When I successfully run `indoctrinatr workflow`
|
5
5
|
Then the output should contain "new"
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
6
|
+
And the output should contain "parse"
|
7
|
+
And the output should contain "pdf"
|
8
|
+
And the output should contain "check"
|
9
|
+
And the output should contain "pack"
|
data/indoctrinatr-tools.gemspec
CHANGED
@@ -1,10 +1,8 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
lib = File.expand_path('../lib', __FILE__)
|
1
|
+
lib = File.expand_path('lib', __dir__)
|
4
2
|
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
5
3
|
require 'indoctrinatr/tools/version'
|
6
4
|
|
7
|
-
Gem::Specification.new do |spec|
|
5
|
+
Gem::Specification.new do |spec|
|
8
6
|
spec.name = 'indoctrinatr-tools'
|
9
7
|
spec.version = Indoctrinatr::Tools::VERSION
|
10
8
|
spec.authors = ['Nicolai Reuschling', 'Luka Lüdicke']
|
@@ -14,28 +12,29 @@ Gem::Specification.new do |spec| # rubocop:disable Metrics/BlockLength
|
|
14
12
|
spec.homepage = ''
|
15
13
|
spec.license = 'MIT'
|
16
14
|
|
17
|
-
spec.required_ruby_version = '~> 2.
|
15
|
+
spec.required_ruby_version = '~> 2.5'
|
18
16
|
|
19
17
|
spec.files = `git ls-files -z`.split("\x0")
|
20
18
|
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
21
19
|
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
22
20
|
spec.require_paths = ['lib']
|
23
21
|
|
24
|
-
spec.add_development_dependency 'bundler', '~> 1.14'
|
25
|
-
spec.add_development_dependency 'rake', '~> 12.0'
|
26
|
-
spec.add_development_dependency 'rspec', '~> 3.5'
|
27
|
-
spec.add_development_dependency 'cucumber', '~> 2.4'
|
28
22
|
spec.add_development_dependency 'aruba', '~> 0.14'
|
29
|
-
spec.add_development_dependency '
|
30
|
-
spec.add_development_dependency 'rubocop-rspec', '~> 1.15'
|
31
|
-
spec.add_development_dependency 'pry', '~> 0.10'
|
23
|
+
spec.add_development_dependency 'bundler', '~> 2.0'
|
32
24
|
spec.add_development_dependency 'coveralls', '~> 0.8'
|
25
|
+
spec.add_development_dependency 'cucumber', '~> 3.0'
|
26
|
+
spec.add_development_dependency 'pry', '~> 0.11'
|
27
|
+
spec.add_development_dependency 'rake', '~> 13.0'
|
28
|
+
spec.add_development_dependency 'rspec', '~> 3.7'
|
29
|
+
spec.add_development_dependency 'rubocop', '~> 0.79'
|
30
|
+
spec.add_development_dependency 'rubocop-performance', '~> 1.3'
|
31
|
+
spec.add_development_dependency 'rubocop-rspec', '~> 1.22'
|
33
32
|
|
34
|
-
spec.add_dependency 'gli', '~> 2.16'
|
35
|
-
spec.add_dependency 'rubyzip', '~> 1.2'
|
36
33
|
spec.add_dependency 'erubis', '~> 2.7'
|
37
|
-
spec.add_dependency '
|
34
|
+
spec.add_dependency 'gli', '~> 2.16'
|
38
35
|
spec.add_dependency 'RedCloth', '~> 4.3'
|
36
|
+
spec.add_dependency 'rubyzip', '~> 2'
|
37
|
+
spec.add_dependency 'to_latex', '~> 0.5'
|
39
38
|
|
40
39
|
spec.cert_chain = ['certs/dkd-reuschling.pem']
|
41
40
|
spec.signing_key = File.expand_path('~/.ssh/gem-private_key.pem') if $PROGRAM_NAME.end_with?('gem')
|
@@ -19,7 +19,7 @@ module Indoctrinatr
|
|
19
19
|
end
|
20
20
|
|
21
21
|
def customized_output_file_name
|
22
|
-
@_customized_output_file_name ||= eval('"' + @_output_file_name + '"') # rubocop:disable Security/Eval
|
22
|
+
@_customized_output_file_name ||= eval('"' + @_output_file_name + '"') # rubocop:disable Security/Eval, Naming/MemoizedInstanceVariableName
|
23
23
|
end
|
24
24
|
|
25
25
|
def template_asset_path
|
@@ -9,7 +9,8 @@ module Indoctrinatr
|
|
9
9
|
end
|
10
10
|
end
|
11
11
|
|
12
|
-
|
12
|
+
# default file types for template docs
|
13
|
+
def list_files_of_type directory = '.', types = %w[erb rb yaml sty tex]
|
13
14
|
# found and modified from http://stackoverflow.com/a/3504307/1796645
|
14
15
|
Dir.glob("#{directory}/**/*.{#{types.join(',')}}") # recursively list files of type in types array
|
15
16
|
end
|
@@ -33,6 +33,7 @@ module Indoctrinatr
|
|
33
33
|
attributes_as_hashes.each do |attribute_hash|
|
34
34
|
# search for typical picture file endings
|
35
35
|
next unless detect_picture_file_names attribute_hash['default_value']
|
36
|
+
|
36
37
|
instance_variable_set("@_#{attribute_hash['name']}", attribute_hash['default_value'])
|
37
38
|
|
38
39
|
define_singleton_method "raw_#{attribute_hash['name']}".to_sym do
|
@@ -65,7 +65,7 @@ module Indoctrinatr
|
|
65
65
|
private
|
66
66
|
|
67
67
|
def documentation_files_path
|
68
|
-
Pathname.new(File.expand_path(
|
68
|
+
Pathname.new(File.expand_path(__dir__)).join('..', 'templates', 'documentation')
|
69
69
|
end
|
70
70
|
end
|
71
71
|
end
|
@@ -1,6 +1,7 @@
|
|
1
1
|
module Indoctrinatr
|
2
2
|
module Tools
|
3
|
-
|
3
|
+
# wrapper class for config. See ConfigurationExtractor for details
|
4
|
+
class TemplatePackConfiguration
|
4
5
|
attr_accessor :template_asset_path, :default_file_name, :template_name, :textual_description, :output_file_name, :attributes_as_hashes_in_array
|
5
6
|
end
|
6
7
|
end
|
@@ -55,8 +55,8 @@ module Indoctrinatr
|
|
55
55
|
configuration = ConfigurationExtractor.new(template_pack_name).call
|
56
56
|
begin
|
57
57
|
@documentation_content = TemplateDocumentationContent.new template_pack_name, configuration
|
58
|
-
rescue IOError =>
|
59
|
-
abort
|
58
|
+
rescue IOError => e
|
59
|
+
abort e.message
|
60
60
|
end
|
61
61
|
end
|
62
62
|
|
@@ -24,18 +24,20 @@ module Indoctrinatr
|
|
24
24
|
|
25
25
|
def check_config_file_existence
|
26
26
|
return true if File.exist? config_file_path
|
27
|
+
|
27
28
|
puts 'The file configuration.yaml does not exist in the template_pack directory'
|
28
29
|
false
|
29
30
|
end
|
30
31
|
|
31
|
-
|
32
|
+
# YAML syntax check
|
33
|
+
def check_config_file_syntax
|
32
34
|
puts 'Checking YAML syntax...'
|
33
35
|
YAML.parse_file config_file_path
|
34
36
|
puts 'YAML syntax ok!'
|
35
37
|
true
|
36
|
-
rescue YAML::SyntaxError =>
|
38
|
+
rescue YAML::SyntaxError => e # no program abort when this exception is thrown
|
37
39
|
puts 'YAML syntax error in configuration.yaml, see error for details:'
|
38
|
-
puts
|
40
|
+
puts e.message
|
39
41
|
false
|
40
42
|
end
|
41
43
|
|
@@ -57,7 +59,8 @@ module Indoctrinatr
|
|
57
59
|
end
|
58
60
|
end
|
59
61
|
|
60
|
-
|
62
|
+
# false if something wrong, otherwise returns the key value
|
63
|
+
def check_field_attribute attribute_hash, field_identifier, key
|
61
64
|
unless attribute_hash.key? key
|
62
65
|
puts "The #{field_identifier} has no #{key} type set!"
|
63
66
|
return false
|
@@ -73,6 +76,7 @@ module Indoctrinatr
|
|
73
76
|
def check_presentation attribute_hash, identifier
|
74
77
|
presentation = check_field_attribute attribute_hash, identifier, 'presentation'
|
75
78
|
return false unless presentation
|
79
|
+
|
76
80
|
# check if it is one of the options
|
77
81
|
puts "Not an allowed presentation option set for #{identifier}" unless VALID_PRESENTATIONS.include? presentation
|
78
82
|
check_available_options attribute_hash, identifier, presentation if REQUIRES_AVAILABLE_OPTIONS.include? presentation
|
@@ -2,7 +2,8 @@ require 'indoctrinatr/tools/default_values'
|
|
2
2
|
|
3
3
|
module Indoctrinatr
|
4
4
|
module Tools
|
5
|
-
|
5
|
+
# classes that use this model are required to have template_pack_name as instance variable
|
6
|
+
module TemplatePackHelpers
|
6
7
|
def path_name
|
7
8
|
Pathname.new(Dir.pwd).join template_pack_name
|
8
9
|
end
|
@@ -46,11 +46,11 @@ module Indoctrinatr
|
|
46
46
|
end
|
47
47
|
|
48
48
|
def source_config_file_path
|
49
|
-
Pathname.new(File.expand_path(
|
49
|
+
Pathname.new(File.expand_path(__dir__)).join('..', 'templates', 'configuration.yaml')
|
50
50
|
end
|
51
51
|
|
52
52
|
def source_tex_file_path
|
53
|
-
Pathname.new(File.expand_path(
|
53
|
+
Pathname.new(File.expand_path(__dir__)).join('..', 'templates', 'template.tex.erb')
|
54
54
|
end
|
55
55
|
end
|
56
56
|
end
|
@@ -11,11 +11,11 @@ module RedCloth
|
|
11
11
|
}.each do |m, tag|
|
12
12
|
define_method(m) do |opts|
|
13
13
|
case opts[:align]
|
14
|
-
when 'left'
|
14
|
+
when 'left'
|
15
15
|
"\\begin{flushleft}\\#{tag}{#{opts[:text]}}\\end{flushleft}\n\n"
|
16
|
-
when 'right'
|
16
|
+
when 'right'
|
17
17
|
"\\begin{flushright}\\#{tag}{#{opts[:text]}}\\end{flushright}\n\n"
|
18
|
-
when 'center'
|
18
|
+
when 'center'
|
19
19
|
"\\begin{center}\\#{tag}{#{opts[:text]}}\\end{center}\n\n"
|
20
20
|
else
|
21
21
|
"\\#{tag}{#{opts[:text]}}\n\n"
|
@@ -1,7 +1,7 @@
|
|
1
1
|
require 'spec_helper'
|
2
2
|
require 'pathname'
|
3
3
|
|
4
|
-
context 'configuration.yaml' do
|
4
|
+
context 'with configuration.yaml' do
|
5
5
|
it 'exists' do
|
6
6
|
configuration_file = Pathname.new(__FILE__).join '..', '..', '..', '..', 'lib', 'indoctrinatr', 'templates', 'configuration.yaml'
|
7
7
|
expect(File.exist?(configuration_file)).to eq true
|
@@ -1,7 +1,7 @@
|
|
1
1
|
require 'spec_helper'
|
2
2
|
require 'pathname'
|
3
3
|
|
4
|
-
context 'template.tex.erb' do
|
4
|
+
context 'with template.tex.erb' do
|
5
5
|
it 'exists' do
|
6
6
|
template_file = Pathname.new(__FILE__).join '..', '..', '..', '..', 'lib', 'indoctrinatr', 'templates', 'template.tex.erb'
|
7
7
|
expect(File.exist?(template_file)).to eq true
|
@@ -2,7 +2,7 @@ require 'spec_helper'
|
|
2
2
|
require 'indoctrinatr/tools/default_values'
|
3
3
|
require 'indoctrinatr/tools/template_pack_configuration'
|
4
4
|
|
5
|
-
context "
|
5
|
+
context "when supporting Textile with 'textilize' function" do
|
6
6
|
let(:configuration) do
|
7
7
|
c = Indoctrinatr::Tools::TemplatePackConfiguration.new
|
8
8
|
c.attributes_as_hashes_in_array = []
|
@@ -1,7 +1,7 @@
|
|
1
1
|
require 'spec_helper'
|
2
2
|
require 'redcloth_latex_formatter_patch/patch'
|
3
3
|
|
4
|
-
context 'patches for RedCloth::LATEX::Formatter' do
|
4
|
+
context 'with patches for RedCloth::LATEX::Formatter' do
|
5
5
|
it 'tranforms a h1. headline to LaTeX chapter notation' do
|
6
6
|
text = 'h1. Headline'
|
7
7
|
expect(RedCloth.new(text).to_latex).to eq "\\chapter{Headline}\n\n"
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: indoctrinatr-tools
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.16.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Nicolai Reuschling
|
@@ -11,225 +11,237 @@ bindir: bin
|
|
11
11
|
cert_chain:
|
12
12
|
- |
|
13
13
|
-----BEGIN CERTIFICATE-----
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
HOu/JTkMVu8oWst3Fhxdqaqw1a1uFYiG5VkcX0hsPUFS+ZDJhAhi1eu5Pea1dZq4
|
33
|
-
CZs=
|
14
|
+
MIIDVjCCAj6gAwIBAgIBATANBgkqhkiG9w0BAQsFADAqMSgwJgYDVQQDDB9uaWNv
|
15
|
+
bGFpLnJldXNjaGxpbmcvREM9ZGtkL0RDPWRlMB4XDTIwMDIxNDE1MTcwNloXDTIx
|
16
|
+
MDIxMzE1MTcwNlowKjEoMCYGA1UEAwwfbmljb2xhaS5yZXVzY2hsaW5nL0RDPWRr
|
17
|
+
ZC9EQz1kZTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL5RzbjnDuqA
|
18
|
+
rb+fbMKmHdfNZcX9rAlcGo5i7lwtBImH8DAikZXpS5pmDh+tWq0wiYlGqBjghPRw
|
19
|
+
rdWcVZDf23EiKjDuDDW0bqtqNg6wbClkjGgr1GEyYuhficipS/1xWD3PTaCMk9RS
|
20
|
+
eVJwwtzNJQbLyTnUZI8biuaSJr/pXot2WqyC/+0z+ddXzI00W686NRpbRb3DNR2l
|
21
|
+
5P59g1NiHrwiPjzWj+viIgCXt4j5wxJcZmEDuJQIZLdkcLcp7XGMpFnNsOcr7BMv
|
22
|
+
w4/5NJS/7QG/n7j3xMOrCRpred346xlUoG5seVuu7mvChkOFleEkkKomvAEdiC5Y
|
23
|
+
wB2Zd1EptkkCAwEAAaOBhjCBgzAJBgNVHRMEAjAAMAsGA1UdDwQEAwIEsDAdBgNV
|
24
|
+
HQ4EFgQUbCmdTAu9t3RJwYPe9hOJ3JWBlfowJAYDVR0RBB0wG4EZbmljb2xhaS5y
|
25
|
+
ZXVzY2hsaW5nQGRrZC5kZTAkBgNVHRIEHTAbgRluaWNvbGFpLnJldXNjaGxpbmdA
|
26
|
+
ZGtkLmRlMA0GCSqGSIb3DQEBCwUAA4IBAQBk1mExobXS3Uljuvadir5gAWkGQSRt
|
27
|
+
queISF2e9iQKmuXV3auAy0UWbHTBqjwu8dJtzQTX5UOtfG/Jt1QIU3X6sEBuMY76
|
28
|
+
Zbyu2NYp54ESAAyZFpt2prs7oDkRiDYk6FdZ7mHLTjPgr8nZV0qqONRfzmWmpImG
|
29
|
+
PxsXUcEiEZej8d8C5vcHy3bwXb/+CjzcKrcqN67lkXwrA9jzqMuqnjVuhx+JMXJ5
|
30
|
+
kHAKYJXqSQLXcRmkRlqCNGKAJSy6FmpClVbei309Yg3dl4PmFSc8GdLcWD1keOvE
|
31
|
+
qzeIYbdD18i9ZRk4hfm8vEpevt+xRgM+3ughiJIaiWI3eO3C+VRszvqU
|
34
32
|
-----END CERTIFICATE-----
|
35
|
-
date:
|
33
|
+
date: 2020-02-14 00:00:00.000000000 Z
|
36
34
|
dependencies:
|
37
35
|
- !ruby/object:Gem::Dependency
|
38
|
-
name:
|
36
|
+
name: aruba
|
39
37
|
requirement: !ruby/object:Gem::Requirement
|
40
38
|
requirements:
|
41
39
|
- - "~>"
|
42
40
|
- !ruby/object:Gem::Version
|
43
|
-
version: '
|
41
|
+
version: '0.14'
|
44
42
|
type: :development
|
45
43
|
prerelease: false
|
46
44
|
version_requirements: !ruby/object:Gem::Requirement
|
47
45
|
requirements:
|
48
46
|
- - "~>"
|
49
47
|
- !ruby/object:Gem::Version
|
50
|
-
version: '
|
48
|
+
version: '0.14'
|
51
49
|
- !ruby/object:Gem::Dependency
|
52
|
-
name:
|
50
|
+
name: bundler
|
53
51
|
requirement: !ruby/object:Gem::Requirement
|
54
52
|
requirements:
|
55
53
|
- - "~>"
|
56
54
|
- !ruby/object:Gem::Version
|
57
|
-
version: '
|
55
|
+
version: '2.0'
|
58
56
|
type: :development
|
59
57
|
prerelease: false
|
60
58
|
version_requirements: !ruby/object:Gem::Requirement
|
61
59
|
requirements:
|
62
60
|
- - "~>"
|
63
61
|
- !ruby/object:Gem::Version
|
64
|
-
version: '
|
62
|
+
version: '2.0'
|
65
63
|
- !ruby/object:Gem::Dependency
|
66
|
-
name:
|
64
|
+
name: coveralls
|
67
65
|
requirement: !ruby/object:Gem::Requirement
|
68
66
|
requirements:
|
69
67
|
- - "~>"
|
70
68
|
- !ruby/object:Gem::Version
|
71
|
-
version: '
|
69
|
+
version: '0.8'
|
72
70
|
type: :development
|
73
71
|
prerelease: false
|
74
72
|
version_requirements: !ruby/object:Gem::Requirement
|
75
73
|
requirements:
|
76
74
|
- - "~>"
|
77
75
|
- !ruby/object:Gem::Version
|
78
|
-
version: '
|
76
|
+
version: '0.8'
|
79
77
|
- !ruby/object:Gem::Dependency
|
80
78
|
name: cucumber
|
81
79
|
requirement: !ruby/object:Gem::Requirement
|
82
80
|
requirements:
|
83
81
|
- - "~>"
|
84
82
|
- !ruby/object:Gem::Version
|
85
|
-
version: '
|
83
|
+
version: '3.0'
|
86
84
|
type: :development
|
87
85
|
prerelease: false
|
88
86
|
version_requirements: !ruby/object:Gem::Requirement
|
89
87
|
requirements:
|
90
88
|
- - "~>"
|
91
89
|
- !ruby/object:Gem::Version
|
92
|
-
version: '
|
90
|
+
version: '3.0'
|
93
91
|
- !ruby/object:Gem::Dependency
|
94
|
-
name:
|
92
|
+
name: pry
|
95
93
|
requirement: !ruby/object:Gem::Requirement
|
96
94
|
requirements:
|
97
95
|
- - "~>"
|
98
96
|
- !ruby/object:Gem::Version
|
99
|
-
version: '0.
|
97
|
+
version: '0.11'
|
100
98
|
type: :development
|
101
99
|
prerelease: false
|
102
100
|
version_requirements: !ruby/object:Gem::Requirement
|
103
101
|
requirements:
|
104
102
|
- - "~>"
|
105
103
|
- !ruby/object:Gem::Version
|
106
|
-
version: '0.
|
104
|
+
version: '0.11'
|
107
105
|
- !ruby/object:Gem::Dependency
|
108
|
-
name:
|
106
|
+
name: rake
|
109
107
|
requirement: !ruby/object:Gem::Requirement
|
110
108
|
requirements:
|
111
109
|
- - "~>"
|
112
110
|
- !ruby/object:Gem::Version
|
113
|
-
version: '0
|
111
|
+
version: '13.0'
|
114
112
|
type: :development
|
115
113
|
prerelease: false
|
116
114
|
version_requirements: !ruby/object:Gem::Requirement
|
117
115
|
requirements:
|
118
116
|
- - "~>"
|
119
117
|
- !ruby/object:Gem::Version
|
120
|
-
version: '0
|
118
|
+
version: '13.0'
|
121
119
|
- !ruby/object:Gem::Dependency
|
122
|
-
name:
|
120
|
+
name: rspec
|
123
121
|
requirement: !ruby/object:Gem::Requirement
|
124
122
|
requirements:
|
125
123
|
- - "~>"
|
126
124
|
- !ruby/object:Gem::Version
|
127
|
-
version: '
|
125
|
+
version: '3.7'
|
128
126
|
type: :development
|
129
127
|
prerelease: false
|
130
128
|
version_requirements: !ruby/object:Gem::Requirement
|
131
129
|
requirements:
|
132
130
|
- - "~>"
|
133
131
|
- !ruby/object:Gem::Version
|
134
|
-
version: '
|
132
|
+
version: '3.7'
|
135
133
|
- !ruby/object:Gem::Dependency
|
136
|
-
name:
|
134
|
+
name: rubocop
|
137
135
|
requirement: !ruby/object:Gem::Requirement
|
138
136
|
requirements:
|
139
137
|
- - "~>"
|
140
138
|
- !ruby/object:Gem::Version
|
141
|
-
version: '0.
|
139
|
+
version: '0.79'
|
142
140
|
type: :development
|
143
141
|
prerelease: false
|
144
142
|
version_requirements: !ruby/object:Gem::Requirement
|
145
143
|
requirements:
|
146
144
|
- - "~>"
|
147
145
|
- !ruby/object:Gem::Version
|
148
|
-
version: '0.
|
146
|
+
version: '0.79'
|
149
147
|
- !ruby/object:Gem::Dependency
|
150
|
-
name:
|
148
|
+
name: rubocop-performance
|
151
149
|
requirement: !ruby/object:Gem::Requirement
|
152
150
|
requirements:
|
153
151
|
- - "~>"
|
154
152
|
- !ruby/object:Gem::Version
|
155
|
-
version: '
|
153
|
+
version: '1.3'
|
156
154
|
type: :development
|
157
155
|
prerelease: false
|
158
156
|
version_requirements: !ruby/object:Gem::Requirement
|
159
157
|
requirements:
|
160
158
|
- - "~>"
|
161
159
|
- !ruby/object:Gem::Version
|
162
|
-
version: '
|
160
|
+
version: '1.3'
|
163
161
|
- !ruby/object:Gem::Dependency
|
164
|
-
name:
|
162
|
+
name: rubocop-rspec
|
165
163
|
requirement: !ruby/object:Gem::Requirement
|
166
164
|
requirements:
|
167
165
|
- - "~>"
|
168
166
|
- !ruby/object:Gem::Version
|
169
|
-
version: '
|
167
|
+
version: '1.22'
|
168
|
+
type: :development
|
169
|
+
prerelease: false
|
170
|
+
version_requirements: !ruby/object:Gem::Requirement
|
171
|
+
requirements:
|
172
|
+
- - "~>"
|
173
|
+
- !ruby/object:Gem::Version
|
174
|
+
version: '1.22'
|
175
|
+
- !ruby/object:Gem::Dependency
|
176
|
+
name: erubis
|
177
|
+
requirement: !ruby/object:Gem::Requirement
|
178
|
+
requirements:
|
179
|
+
- - "~>"
|
180
|
+
- !ruby/object:Gem::Version
|
181
|
+
version: '2.7'
|
170
182
|
type: :runtime
|
171
183
|
prerelease: false
|
172
184
|
version_requirements: !ruby/object:Gem::Requirement
|
173
185
|
requirements:
|
174
186
|
- - "~>"
|
175
187
|
- !ruby/object:Gem::Version
|
176
|
-
version: '2.
|
188
|
+
version: '2.7'
|
177
189
|
- !ruby/object:Gem::Dependency
|
178
|
-
name:
|
190
|
+
name: gli
|
179
191
|
requirement: !ruby/object:Gem::Requirement
|
180
192
|
requirements:
|
181
193
|
- - "~>"
|
182
194
|
- !ruby/object:Gem::Version
|
183
|
-
version: '
|
195
|
+
version: '2.16'
|
184
196
|
type: :runtime
|
185
197
|
prerelease: false
|
186
198
|
version_requirements: !ruby/object:Gem::Requirement
|
187
199
|
requirements:
|
188
200
|
- - "~>"
|
189
201
|
- !ruby/object:Gem::Version
|
190
|
-
version: '
|
202
|
+
version: '2.16'
|
191
203
|
- !ruby/object:Gem::Dependency
|
192
|
-
name:
|
204
|
+
name: RedCloth
|
193
205
|
requirement: !ruby/object:Gem::Requirement
|
194
206
|
requirements:
|
195
207
|
- - "~>"
|
196
208
|
- !ruby/object:Gem::Version
|
197
|
-
version: '
|
209
|
+
version: '4.3'
|
198
210
|
type: :runtime
|
199
211
|
prerelease: false
|
200
212
|
version_requirements: !ruby/object:Gem::Requirement
|
201
213
|
requirements:
|
202
214
|
- - "~>"
|
203
215
|
- !ruby/object:Gem::Version
|
204
|
-
version: '
|
216
|
+
version: '4.3'
|
205
217
|
- !ruby/object:Gem::Dependency
|
206
|
-
name:
|
218
|
+
name: rubyzip
|
207
219
|
requirement: !ruby/object:Gem::Requirement
|
208
220
|
requirements:
|
209
221
|
- - "~>"
|
210
222
|
- !ruby/object:Gem::Version
|
211
|
-
version: '
|
223
|
+
version: '2'
|
212
224
|
type: :runtime
|
213
225
|
prerelease: false
|
214
226
|
version_requirements: !ruby/object:Gem::Requirement
|
215
227
|
requirements:
|
216
228
|
- - "~>"
|
217
229
|
- !ruby/object:Gem::Version
|
218
|
-
version: '
|
230
|
+
version: '2'
|
219
231
|
- !ruby/object:Gem::Dependency
|
220
|
-
name:
|
232
|
+
name: to_latex
|
221
233
|
requirement: !ruby/object:Gem::Requirement
|
222
234
|
requirements:
|
223
235
|
- - "~>"
|
224
236
|
- !ruby/object:Gem::Version
|
225
|
-
version: '
|
237
|
+
version: '0.5'
|
226
238
|
type: :runtime
|
227
239
|
prerelease: false
|
228
240
|
version_requirements: !ruby/object:Gem::Requirement
|
229
241
|
requirements:
|
230
242
|
- - "~>"
|
231
243
|
- !ruby/object:Gem::Version
|
232
|
-
version: '
|
244
|
+
version: '0.5'
|
233
245
|
description:
|
234
246
|
email:
|
235
247
|
- nicolai.reuschling@dkd.de
|
@@ -239,7 +251,6 @@ executables:
|
|
239
251
|
extensions: []
|
240
252
|
extra_rdoc_files: []
|
241
253
|
files:
|
242
|
-
- ".arcconfig"
|
243
254
|
- ".coveralls.yml"
|
244
255
|
- ".gitignore"
|
245
256
|
- ".rubocop.yml"
|
@@ -321,7 +332,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
321
332
|
requirements:
|
322
333
|
- - "~>"
|
323
334
|
- !ruby/object:Gem::Version
|
324
|
-
version: '2.
|
335
|
+
version: '2.5'
|
325
336
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
326
337
|
requirements:
|
327
338
|
- - ">="
|
@@ -329,8 +340,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
329
340
|
version: '0'
|
330
341
|
requirements:
|
331
342
|
- LaTeX development enviroment
|
332
|
-
|
333
|
-
rubygems_version: 2.6.11
|
343
|
+
rubygems_version: 3.1.2
|
334
344
|
signing_key:
|
335
345
|
specification_version: 4
|
336
346
|
summary: indoctrinatr-tools provides a set of command line tools for Indoctrinatr
|
metadata.gz.sig
CHANGED
Binary file
|
data/.arcconfig
DELETED
@@ -1,9 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"phabricator.uri": "https://phabricator.dkd.de/",
|
3
|
-
"project.name": "indoctrinatr-tools",
|
4
|
-
"repository.callsign": "INDOCTRINATRTOOLS",
|
5
|
-
"arc.feature.start.default": "development",
|
6
|
-
"arc.land.onto.default": "development",
|
7
|
-
"history.immutable": true,
|
8
|
-
"base": "git:merge-base(development),arc:upstream"
|
9
|
-
}
|