hoe-manns 1.6.0 → 1.6.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,30 @@
1
+ <?xml version='1.0' encoding='utf-8' ?>
2
+ <!DOCTYPE appendix [
3
+ <!ENTITY % sgml.features "IGNORE">
4
+ <!ENTITY % xml.features "INCLUDE">
5
+ <!ENTITY % DOCBOOK_ENTS PUBLIC "-//OASIS//ENTITIES DocBook Character Entities V4.5//EN" "/usr/share/xml/docbook/schema/dtd/4.5/dbcentx.mod">
6
+ %DOCBOOK_ENTS;
7
+ ]>
8
+ <appendix>
9
+ <title>Versionsgeschichte</title>
10
+ <revhistory>
11
+ <revision>
12
+ <revnumber>1.6.0-0</revnumber>
13
+ <date>Wed Aug 24 2016</date>
14
+ <author>
15
+ <personname>
16
+ <firstname>Sascha</firstname>
17
+ <surname>Manns</surname>
18
+ </personname>
19
+ <email>samannsml@directbox.com</email>
20
+ </author>
21
+ <revdescription>
22
+ <simplelist>
23
+ <member>fixed HM-2: Simplify copy_wiki method (dropped)</member>
24
+ <member>fixed HM-3: manns.rb (Code cleanup)</member>
25
+ <member>removed pandoc dependency</member>
26
+ </simplelist>
27
+ </revdescription>
28
+ </revision>
29
+ </revhistory>
30
+ </appendix>
@@ -0,0 +1,5 @@
1
+ <!ENTITY PRODUCT "Documentation">
2
+ <!ENTITY BOOKID "hoe-manns">
3
+ <!ENTITY YEAR "2016">
4
+ <!ENTITY HOLDER "Sascha Manns">
5
+ <!ENTITY VERSION "1.6.0">
@@ -0,0 +1,144 @@
1
+ <?xml version='1.0' encoding='utf-8' ?>
2
+ <!DOCTYPE article [
3
+ <!ENTITY % sgml.features "IGNORE">
4
+ <!ENTITY % xml.features "INCLUDE">
5
+ <!ENTITY % myents SYSTEM "hoe-manns.ent">
6
+ %myents;
7
+ ]>
8
+ <article xmlns="http://docbook.org/ns/docbook" version="5.0">
9
+ <xi:include href="Article_Info.xml" xmlns:xi="http://www.w3.org/2001/XInclude"></xi:include>
10
+ <info>
11
+ <title>hoe-manns</title>
12
+ </info>
13
+ <section>
14
+ <info>
15
+ <title>Einführung zur Version &VERSION;</title>
16
+ </info>
17
+ <para>hoe-manns ist eine Erweiterung der Ruby Projektsoftware hoe (siehe <link xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="https://github.com/seattlerb/hoe"/> ). Es erweitert die Standard Rake-Tasks der Software um einige weitere nützliche.</para>
18
+ <para>Die Benutzung erfordert eine installierte Ruby Version (Höher oder gleich 2.2.0), parseconfig, bundler-audit sowie ein installiertes und eingerichtetes hoe.</para>
19
+ </section>
20
+ <section>
21
+ <info>
22
+ <title>Installation</title>
23
+ </info>
24
+ <para>Die Installation erfolgt in der Konsole via: <command>gem install
25
+ hoe-manns</command>.</para>
26
+ </section>
27
+ <section>
28
+ <info>
29
+ <title>Einbindung</title>
30
+ </info>
31
+ <para>Zum Einbinden von hoe-manns öffnen Sie das Rakefile Ihres Projektes und schreiben
32
+ folgendes oberhalb der hoe spec Zeile:</para>
33
+ <para><code>Hoe.plugin :manns </code></para>
34
+ <para><code>Hoe.spec 'yourproject' do ... </code></para>
35
+ <para><code>end</code></para>
36
+ <para>Selbstverständlich tragen Sie hoe-manns auch als Abhängigkeit in Ihr Rakefile ein, und
37
+ generieren ein neues Gemfile. Anschließend steht Ihnen hoe-manns zur Verfügung.</para>
38
+ <para>Züsätzlich müssen Sie folgende Eintragungen in Ihre ~/.hoerc Datei machen:</para>
39
+ <para><code>manns:</code></para>
40
+ <para><code> docpath: /home/youruser/IhrProjektordner/PfadZuIhrenDokumenten/</code></para>
41
+ <para><code> develpath: /home/youruser/IhrProjektordner</code></para>
42
+ <para>Der "<emphasis>docpath</emphasis>" bezeichnet einen Pfad, zu Ihrem
43
+ Dokumentationsverzeichnis. Nehmen wir an, Sie haben mittels hoe-manualgen eine
44
+ gerenderte statische Version Ihrer Projektdokumentation erstellt. So kann hoe-manns aus
45
+ dem Projekt-Verzeichnis "manual/output" alles in dieses Dokumentationsverzeichnis
46
+ kopieren. Innerhalb des docpath legt (sofern nicht vorhanden) hoe-manns ein Verzeichnis
47
+ mit dem Projektnamen an. Sie können diese dann ganz bequem in das Internet
48
+ hochladen.</para>
49
+ <para>Der "<emphasis>develpath</emphasis>" ist der Pfad zu Ihrem Hauptverzeichnis, in dem
50
+ Sie alle Softwareprojekte anlegen. Er wird aktuell nicht mehr benutzt, und kann leer
51
+ gelassen werden.</para>
52
+ </section>
53
+ <section>
54
+ <info>
55
+ <title>Benutzung</title>
56
+ </info>
57
+ <para>hoe-manns integriert eine Reihe zusätzlicher Rake-Tasks, die in der folgenden Tabelle
58
+ erläutert werden.</para>
59
+ <para>
60
+ <table frame="all">
61
+ <title>Die Rake Tasks</title>
62
+ <tgroup cols="2">
63
+ <colspec colname="c1" colnum="1" colwidth="1.0*"/>
64
+ <colspec colname="c2" colnum="2" colwidth="1.0*"/>
65
+ <thead>
66
+ <row>
67
+ <entry>Task</entry>
68
+ <entry>Wirkung</entry>
69
+ </row>
70
+ </thead>
71
+ <tbody>
72
+ <row>
73
+ <entry><command>rake bundler:gemfile_lock</command></entry>
74
+ <entry>generiert eine neue Gemfile.lock Datei</entry>
75
+ </row>
76
+ <row>
77
+ <entry><command>rake bundle-audit:run</command></entry>
78
+ <entry>lädt die aktuellen Sicherheitswarnungen von bundle-audit
79
+ herunter, und prüft auf eventuelle Schwachstellen bei den
80
+ Abhängigkeiten.</entry>
81
+ </row>
82
+ <row>
83
+ <entry><command>rake clean-pkg</command></entry>
84
+ <entry>prüft das Vorhandensein eines "pkg" Verzeichnisses, und löscht
85
+ es.</entry>
86
+ </row>
87
+ <row>
88
+ <entry><command>rake copy_manuals</command></entry>
89
+ <entry>kopiert den Inhalt von manuals/output in den in der
90
+ Konfigurationsdatei festgelegten docpath, im Unterverzeichnis des
91
+ aktuellen Projektnamens.</entry>
92
+ </row>
93
+ <row>
94
+ <entry><command>rake copy_master</command></entry>
95
+ <entry>geht vom Vorhandensein eines Entwicklungsbranches "develop" aus.
96
+ Er merged den develop Branch mit dem master Branch, führt ein rake
97
+ git:tag aus, und wechselt wieder in den develop Branch.</entry>
98
+ </row>
99
+ <row>
100
+ <entry><command>rake remove_pre_gemspec</command></entry>
101
+ <entry>prüft das Vorhandensein einer Pre-Gemspec (ein zu Testzwecken
102
+ generiertes Gemspec), und löscht es.</entry>
103
+ </row>
104
+ <row>
105
+ <entry><command>rake run_before_release</command></entry>
106
+ <entry>führt der Reihe nach folgende Tasks aus: git:manifest,
107
+ bundler:gemfile, bundler:gemfile_lock, gem:spec_remove,
108
+ bundle_audit:run, update_workspace, copy_master.</entry>
109
+ </row>
110
+ <row>
111
+ <entry><command>rake run_after_release</command></entry>
112
+ <entry>führt der Reihe nach folgende Tasks aus:
113
+ send_email,clean_pkg</entry>
114
+ </row>
115
+ <row>
116
+ <entry><command>rake update_workspace</command></entry>
117
+ <entry>checkt alles in den aktuellen Branch ein.</entry>
118
+ </row>
119
+ </tbody>
120
+ </tgroup>
121
+ </table>
122
+ </para>
123
+ </section>
124
+ <section>
125
+ <title>Weitere Informationen</title>
126
+ <para>Die API-Dokumentation von hoe-manns liegt hier: <link
127
+ xmlns:xlink="http://www.w3.org/1999/xlink"
128
+ xlink:href="http://www.rubydoc.info/gems/hoe-manns">http://www.rubydoc.info/gems/hoe-manns</link>.</para>
129
+ <para>Bugreports und Feature Requests können gerne hier eingereicht werden: <link
130
+ xmlns:xlink="http://www.w3.org/1999/xlink"
131
+ xlink:href="https://saigkill.myjetbrains.com/youtrack/issues"
132
+ >https://saigkill.myjetbrains.com/youtrack/issues</link>.</para>
133
+ <para>
134
+ <caution>
135
+ <para>Diese Software wurde auf einem Linux-System mit RVM als Rubymanager entworfen
136
+ und getestet. Sollte jemand eine Idee haben, wie man die Software auch unter
137
+ anderen Betriebssystemen oder Rubymanagern lauffähig macht, kann er gerne einen
138
+ Pull-Request im Github Projekt einreichen.</para>
139
+ </caution>
140
+ </para>
141
+ </section>
142
+ <xi:include href="Revision_History.xml" xmlns:xi="http://www.w3.org/2001/XInclude"></xi:include>
143
+ <index></index>
144
+ </article>
@@ -0,0 +1,19 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <svg xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.0" width="32" height="32" id="svg3017">
3
+ <defs id="defs3019">
4
+ <linearGradient id="linearGradient2381">
5
+ <stop id="stop2383" style="stop-color:#ffffff;stop-opacity:1" offset="0"/>
6
+ <stop id="stop2385" style="stop-color:#ffffff;stop-opacity:0" offset="1"/>
7
+ </linearGradient>
8
+ <linearGradient x1="296.4996" y1="188.81061" x2="317.32471" y2="209.69398" id="linearGradient2371" xlink:href="#linearGradient2381" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.90776,0,0,0.90776,24.35648,49.24131)"/>
9
+ </defs>
10
+ <g transform="matrix(0.437808,-0.437808,0.437808,0.437808,-220.8237,43.55311)" id="g5089">
11
+ <path d="m 8.4382985,-6.28125 c -0.6073916,0 -4.3132985,5.94886271 -4.3132985,8.25 l 0,26.71875 c 0,0.846384 0.5818159,1.125 1.15625,1.125 l 25.5625,0 c 0.632342,0 1.125001,-0.492658 1.125,-1.125 l 0,-5.21875 0.28125,0 c 0.49684,0 0.906249,-0.409411 0.90625,-0.90625 l 0,-27.9375 c 0,-0.4968398 -0.40941,-0.90625 -0.90625,-0.90625 l -23.8117015,0 z" transform="translate(282.8327,227.1903)" id="path5091" style="fill:#5c5c4f;stroke:#000000;stroke-width:3.23021388;stroke-miterlimit:4;stroke-dasharray:none"/>
12
+ <rect width="27.85074" height="29.369793" rx="1.1414107" ry="1.1414107" x="286.96509" y="227.63805" id="rect5093" style="fill:#032c87"/>
13
+ <path d="m 288.43262,225.43675 25.2418,0 0,29.3698 -26.37615,0.0241 1.13435,-29.39394 z" id="rect5095" style="fill:#ffffff"/>
14
+ <path d="m 302.44536,251.73726 c 1.38691,7.85917 -0.69311,11.28365 -0.69311,11.28365 2.24384,-1.60762 3.96426,-3.47694 4.90522,-5.736 0.96708,2.19264 1.83294,4.42866 4.27443,5.98941 0,0 -1.59504,-7.2004 -1.71143,-11.53706 l -6.77511,0 z" id="path5097" style="fill:#a70000;fill-opacity:1;stroke-width:2"/>
15
+ <rect width="25.241802" height="29.736675" rx="0.89682275" ry="0.89682275" x="290.73544" y="220.92249" id="rect5099" style="fill:#809cc9"/>
16
+ <path d="m 576.47347,725.93939 6.37084,0.41502 0.4069,29.51809 c -1.89202,-1.31785 -6.85427,-3.7608 -8.26232,-1.68101 l 0,-26.76752 c 0,-0.82246 0.66212,-1.48458 1.48458,-1.48458 z" transform="matrix(0.499065,-0.866565,0,1,0,0)" id="rect5101" style="fill:#4573b3;fill-opacity:1"/>
17
+ <path d="m 293.2599,221.89363 20.73918,0 c 0.45101,0 0.8141,0.3631 0.8141,0.81411 0.21547,6.32836 -19.36824,21.7635 -22.36739,17.59717 l 0,-17.59717 c 0,-0.45101 0.3631,-0.81411 0.81411,-0.81411 z" id="path5103" style="opacity:0.65536726;fill:url(#linearGradient2371);fill-opacity:1"/>
18
+ </g>
19
+ </svg>
Binary file
@@ -0,0 +1,24 @@
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: 0\n"
4
+ "POT-Creation-Date: 2016-08-25 15:02+0200\n"
5
+ "PO-Revision-Date: 2016-08-25 15:51+0200\n"
6
+ "Last-Translator: Automatically generated\n"
7
+ "Language-Team: None\n"
8
+ "Language: de_DE\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 1.8.7.1\n"
13
+
14
+ msgid "hoe-manns"
15
+ msgstr "hoe-manns"
16
+
17
+ msgid "Integration nützlicher Rake-Tasks in hoe"
18
+ msgstr "Integration of some useful Rake-Tasks into hoe."
19
+
20
+ msgid "Documentation"
21
+ msgstr "Documentation"
22
+
23
+ msgid "hoe-manns erweitert den Umfang der Ruby Software hoe um einige nützliche Rake-Tasks."
24
+ msgstr "hoe-manns extends the standard Rake-Task with some useful new tasks."
Binary file
@@ -0,0 +1,18 @@
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: 0\n"
4
+ "POT-Creation-Date: 2016-08-25 15:02+0200\n"
5
+ "PO-Revision-Date: 2016-08-25 15:51+0200\n"
6
+ "Last-Translator: Automatically generated\n"
7
+ "Language-Team: None\n"
8
+ "Language: de_DE\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 1.8.7.1\n"
13
+
14
+ msgid "Sascha"
15
+ msgstr "Sascha"
16
+
17
+ msgid "Manns"
18
+ msgstr "Manns"
Binary file
@@ -0,0 +1,30 @@
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: 0\n"
4
+ "POT-Creation-Date: 2016-08-25 15:02+0200\n"
5
+ "PO-Revision-Date: 2016-08-25 15:52+0200\n"
6
+ "Last-Translator: Automatically generated\n"
7
+ "Language-Team: None\n"
8
+ "Language: de_DE\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 1.8.7.1\n"
13
+
14
+ msgid "Versionsgeschichte"
15
+ msgstr "Version History"
16
+
17
+ msgid "Sascha"
18
+ msgstr "Sascha"
19
+
20
+ msgid "Manns"
21
+ msgstr "Manns"
22
+
23
+ msgid "fixed HM-2: Simplify copy_wiki method (dropped)"
24
+ msgstr "fixed HM-2: Simplify copy_wiki method (dropped)"
25
+
26
+ msgid "fixed HM-3: manns.rb (Code cleanup)"
27
+ msgstr "fixed HM-3: manns.rb (Code cleanup)"
28
+
29
+ msgid "removed pandoc dependency"
30
+ msgstr "removed pandoc dependency"
@@ -0,0 +1,29 @@
1
+ <?xml version='1.0' encoding='utf-8' ?>
2
+ <!DOCTYPE appendix [
3
+ <!ENTITY % sgml.features "IGNORE">
4
+ <!ENTITY % xml.features "INCLUDE">
5
+ <!ENTITY % DOCBOOK_ENTS PUBLIC "-//OASIS//ENTITIES DocBook Character Entities V4.5//EN" "/usr/share/xml/docbook/schema/dtd/4.5/dbcentx.mod">
6
+ %DOCBOOK_ENTS;
7
+ ]>
8
+ <appendix version="5.0" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
9
+ <title>Revision History</title>
10
+ <simpara>
11
+ <revhistory>
12
+ <revision>
13
+ <revnumber>0.0-0.1</revnumber>
14
+ <date>Thu Aug 25 2016</date>
15
+ <author>
16
+ <firstname>Sascha</firstname>
17
+ <surname>Manns</surname>
18
+ <email>Sascha.Manns@bdvb.de</email>
19
+ </author>
20
+ <revdescription>
21
+ <simplelist>
22
+ <member>Translation files synchronised with XML sources 0.0-0</member>
23
+ </simplelist>
24
+ </revdescription>
25
+ </revision>
26
+ </revhistory>
27
+ </simpara>
28
+ </appendix>
29
+
Binary file
@@ -0,0 +1,244 @@
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: 0\n"
4
+ "POT-Creation-Date: 2016-08-25 15:02+0200\n"
5
+ "PO-Revision-Date: 2016-08-25 15:49+0200\n"
6
+ "Language-Team: None\n"
7
+ "MIME-Version: 1.0\n"
8
+ "Content-Type: text/plain; charset=UTF-8\n"
9
+ "Content-Transfer-Encoding: 8bit\n"
10
+ "X-Generator: Poedit 1.8.7.1\n"
11
+ "Last-Translator: \n"
12
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
13
+ "Language: en_US\n"
14
+
15
+ msgid "hoe-manns"
16
+ msgstr "hoe-manns"
17
+
18
+ msgid "Einführung zur Version &VERSION;"
19
+ msgstr "Introduction to version &VERSION;"
20
+
21
+ msgid ""
22
+ "hoe-manns ist eine Erweiterung der Ruby Projektsoftware hoe (siehe <link "
23
+ "xlink:href=\"https://github.com/seattlerb/hoe\" xmlns:xlink=\"http://www.w3."
24
+ "org/1999/xlink\"></link> ). Es erweitert die Standard Rake-Tasks der "
25
+ "Software um einige weitere nützliche."
26
+ msgstr ""
27
+ "hoe-manns is a extension of the Ruby projectsoftware hoe (see <link xlink:"
28
+ "href=\"https://github.com/seattlerb/hoe\" xmlns:xlink=\"http://www.w3."
29
+ "org/1999/xlink\"></link>.) It extends the standard Ruby tasks to some new "
30
+ "useful tasks."
31
+
32
+ msgid ""
33
+ "Die Benutzung erfordert eine installierte Ruby Version (Höher oder gleich "
34
+ "2.2.0), parseconfig, bundler-audit sowie ein installiertes und "
35
+ "eingerichtetes hoe."
36
+ msgstr ""
37
+ "To use the software you will need a installed Ruby version (Higher or equal "
38
+ "2.2.0), parseconfig, bundler-audit and a installed and already configured "
39
+ "hoe."
40
+
41
+ msgid "Installation"
42
+ msgstr "Installation"
43
+
44
+ msgid ""
45
+ "Die Installation erfolgt in der Konsole via: <command>gem install hoe-manns</"
46
+ "command>."
47
+ msgstr ""
48
+ "For installing you have to type in your Shell/Console: <command>gem install "
49
+ "hoe-manns</command>."
50
+
51
+ msgid "Einbindung"
52
+ msgstr "How to use hoe-manns in your projects"
53
+
54
+ msgid ""
55
+ "Zum Einbinden von hoe-manns öffnen Sie das Rakefile Ihres Projektes und "
56
+ "schreiben folgendes oberhalb der hoe spec Zeile:"
57
+ msgstr ""
58
+ "First you have to open the Rakefile of your project and writes there near "
59
+ "the Hoe.spec line:"
60
+
61
+ msgid "<code>Hoe.plugin :manns </code>"
62
+ msgstr "<code>Hoe.plugin :manns </code>"
63
+
64
+ msgid "<code>Hoe.spec 'yourproject' do ... </code>"
65
+ msgstr "<code>Hoe.spec 'yourproject' do ... </code>"
66
+
67
+ msgid "<code>end</code>"
68
+ msgstr "<code>end</code>"
69
+
70
+ msgid ""
71
+ "Selbstverständlich tragen Sie hoe-manns auch als Abhängigkeit in Ihr "
72
+ "Rakefile ein, und generieren ein neues Gemfile. Anschließend steht Ihnen hoe-"
73
+ "manns zur Verfügung."
74
+ msgstr ""
75
+ "Sure now you have to add hoe-manns as dependency in your Rakefile and "
76
+ "generate a new Gemfile now. Then hoe-manns is ready to work."
77
+
78
+ msgid ""
79
+ "Züsätzlich müssen Sie folgende Eintragungen in Ihre ~/.hoerc Datei machen:"
80
+ msgstr "Additional you have to add these points into your ~/.hoerc:"
81
+
82
+ msgid "<code>manns:</code>"
83
+ msgstr "<code>manns:</code>"
84
+
85
+ msgid ""
86
+ "<code> docpath: /home/youruser/IhrProjektordner/PfadZuIhrenDokumenten/</code>"
87
+ msgstr "<code> docpath: /home/youruser/PathToYourDocuments/</code>"
88
+
89
+ msgid "<code> develpath: /home/youruser/IhrProjektordner</code>"
90
+ msgstr "<code> develpath: /home/youruser/YourProjectdirectory</code>"
91
+
92
+ msgid ""
93
+ "Der \"<emphasis>docpath</emphasis>\" bezeichnet einen Pfad, zu Ihrem "
94
+ "Dokumentationsverzeichnis. Nehmen wir an, Sie haben mittels hoe-manualgen "
95
+ "eine gerenderte statische Version Ihrer Projektdokumentation erstellt. So "
96
+ "kann hoe-manns aus dem Projekt-Verzeichnis \"manual/output\" alles in dieses "
97
+ "Dokumentationsverzeichnis kopieren. Innerhalb des docpath legt (sofern nicht "
98
+ "vorhanden) hoe-manns ein Verzeichnis mit dem Projektnamen an. Sie können "
99
+ "diese dann ganz bequem in das Internet hochladen."
100
+ msgstr ""
101
+ "The \"<emphasis>docpath</emphasis>\" is the path where you store all "
102
+ "documentations of all your projects. Let me think you have used hoe-"
103
+ "manualgen to produce a static version of your manuals. Now hoe-manns can get "
104
+ "the things inside \"manual/output\" ans copies that into your docpath. "
105
+ "Inside the docpath it creates a new subdirectory named as your project. So "
106
+ "you just can upload that stuff into your website."
107
+
108
+ msgid ""
109
+ "Der \"<emphasis>develpath</emphasis>\" ist der Pfad zu Ihrem "
110
+ "Hauptverzeichnis, in dem Sie alle Softwareprojekte anlegen. Er wird aktuell "
111
+ "nicht mehr benutzt, und kann leer gelassen werden."
112
+ msgstr ""
113
+ "The \"<emphasis>develpath</emphasis>\" is the path to your directory where "
114
+ "all your projects live. Actually it isn't used anymore and can left blank."
115
+
116
+ msgid "Benutzung"
117
+ msgstr "Usage"
118
+
119
+ msgid ""
120
+ "hoe-manns integriert eine Reihe zusätzlicher Rake-Tasks, die in der "
121
+ "folgenden Tabelle erläutert werden."
122
+ msgstr ""
123
+ "hoe-manns integrates some additional Rake-Taks as explained in the next "
124
+ "table."
125
+
126
+ msgid "Die Rake Tasks"
127
+ msgstr "The Rake Tasks"
128
+
129
+ msgid "Task"
130
+ msgstr "Task"
131
+
132
+ msgid "Wirkung"
133
+ msgstr "Effect"
134
+
135
+ msgid "<command>rake bundler:gemfile_lock</command>"
136
+ msgstr "<command>rake bundler:gemfile_lock</command>"
137
+
138
+ msgid "generiert eine neue Gemfile.lock Datei"
139
+ msgstr "generates a new Gemfile.lock"
140
+
141
+ msgid "<command>rake bundle-audit:run</command>"
142
+ msgstr "<command>rake bundle-audit:run</command>"
143
+
144
+ msgid ""
145
+ "lädt die aktuellen Sicherheitswarnungen von bundle-audit herunter, und prüft "
146
+ "auf eventuelle Schwachstellen bei den Abhängigkeiten."
147
+ msgstr ""
148
+ "downloads the actual security warnings from bundle-audit and checks possible "
149
+ "problems by the dependencies."
150
+
151
+ msgid "<command>rake clean-pkg</command>"
152
+ msgstr "<command>rake clean-pkg</command>"
153
+
154
+ msgid "prüft das Vorhandensein eines \"pkg\" Verzeichnisses, und löscht es."
155
+ msgstr "checks if a \"pkg\" directory is present, if then it will be deleted."
156
+
157
+ msgid "<command>rake copy_manuals</command>"
158
+ msgstr "<command>rake copy_manuals</command>"
159
+
160
+ msgid ""
161
+ "kopiert den Inhalt von manuals/output in den in der Konfigurationsdatei "
162
+ "festgelegten docpath, im Unterverzeichnis des aktuellen Projektnamens."
163
+ msgstr ""
164
+ "copies the content of manuals/output into the predefined docpath. It creates "
165
+ "there a new subfolder named as your project and stores the content into it."
166
+
167
+ msgid "<command>rake copy_master</command>"
168
+ msgstr "<command>rake copy_master</command>"
169
+
170
+ msgid ""
171
+ "geht vom Vorhandensein eines Entwicklungsbranches \"develop\" aus. Er merged "
172
+ "den develop Branch mit dem master Branch, führt ein rake git:tag aus, und "
173
+ "wechselt wieder in den develop Branch."
174
+ msgstr ""
175
+ "it expects a branch \"develop\" and merges the new stuff into the master "
176
+ "branch. Then it runs a rake git:tag and returns again into the develop "
177
+ "branch."
178
+
179
+ msgid "<command>rake remove_pre_gemspec</command>"
180
+ msgstr "<command>rake remove_pre_gemspec</command>"
181
+
182
+ msgid ""
183
+ "prüft das Vorhandensein einer Pre-Gemspec (ein zu Testzwecken generiertes "
184
+ "Gemspec), und löscht es."
185
+ msgstr ""
186
+ "checks the presence of a Pre-Gemspec (a generated file for test cases) and "
187
+ "deletes them."
188
+
189
+ msgid "<command>rake run_before_release</command>"
190
+ msgstr "<command>rake run_before_release</command>"
191
+
192
+ msgid ""
193
+ "führt der Reihe nach folgende Tasks aus: git:manifest, bundler:gemfile, "
194
+ "bundler:gemfile_lock, gem:spec_remove, bundle_audit:run, update_workspace, "
195
+ "copy_master."
196
+ msgstr ""
197
+ "runs the task in that order: git:manifest, bundler:gemfile, bundler:"
198
+ "gemfile_lock, gem:spec_remove, bundle_audit:run, update_workspace, "
199
+ "copy_master."
200
+
201
+ msgid "<command>rake run_after_release</command>"
202
+ msgstr "<command>rake run_after_release</command>"
203
+
204
+ msgid "führt der Reihe nach folgende Tasks aus: send_email,clean_pkg"
205
+ msgstr "runs the tasks: send_email and clean_pkg"
206
+
207
+ msgid "<command>rake update_workspace</command>"
208
+ msgstr "<command>rake update_workspace</command>"
209
+
210
+ msgid "checkt alles in den aktuellen Branch ein."
211
+ msgstr "checks in the current workspace."
212
+
213
+ msgid "Weitere Informationen"
214
+ msgstr "Additional Informations"
215
+
216
+ msgid ""
217
+ "Die API-Dokumentation von hoe-manns liegt hier: <link xlink:href=\"http://"
218
+ "www.rubydoc.info/gems/hoe-manns\" xmlns:xlink=\"http://www.w3.org/1999/xlink"
219
+ "\">http://www.rubydoc.info/gems/hoe-manns</link>."
220
+ msgstr ""
221
+ "The API-Dokumentation is placed there: <link xlink:href=\"http://www.rubydoc."
222
+ "info/gems/hoe-manns\" xmlns:xlink=\"http://www.w3.org/1999/xlink\">http://"
223
+ "www.rubydoc.info/gems/hoe-manns</link>."
224
+
225
+ msgid ""
226
+ "Bugreports und Feature Requests können gerne hier eingereicht werden: <link "
227
+ "xlink:href=\"https://saigkill.myjetbrains.com/youtrack/issues\" xmlns:xlink="
228
+ "\"http://www.w3.org/1999/xlink\">https://saigkill.myjetbrains.com/youtrack/"
229
+ "issues</link>."
230
+ msgstr ""
231
+ "You can place Bugreports and Feature Requests there: <link xlink:href="
232
+ "\"https://saigkill.myjetbrains.com/youtrack/issues\" xmlns:xlink=\"http://"
233
+ "www.w3.org/1999/xlink\">https://saigkill.myjetbrains.com/youtrack/issues</"
234
+ "link>."
235
+
236
+ msgid ""
237
+ "Diese Software wurde auf einem Linux-System mit RVM als Rubymanager "
238
+ "entworfen und getestet. Sollte jemand eine Idee haben, wie man die Software "
239
+ "auch unter anderen Betriebssystemen oder Rubymanagern lauffähig macht, kann "
240
+ "er gerne einen Pull-Request im Github Projekt einreichen."
241
+ msgstr ""
242
+ "This software was developed and tested on a Linux system with RVM as "
243
+ "Rubymanager. If anyone has any idea to make the software fit for other OS "
244
+ "and Rubymanagers, then you can send a Pull-Request on Github."