rwdtinker 1.2

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.
Files changed (96) hide show
  1. data/Readme.txt +57 -0
  2. data/bin/rwdtinker +19 -0
  3. data/code/ag1core/aa0begin.rb +17 -0
  4. data/code/al5languagefiles/alanguagehashbegin.rb +4 -0
  5. data/code/al5languagefiles/languagehash.rb +4 -0
  6. data/code/al5languagefiles/templangfile.rb +6 -0
  7. data/code/al5languagefiles/zlanguagehashend.rb +6 -0
  8. data/code/dd0viewphoto/dd0viewphoto.rb +4 -0
  9. data/code/ll0listapplets/05listinstalledfiles.rb +11 -0
  10. data/code/ll0listapplets/ll1openname.rb +18 -0
  11. data/code/ll0listapplets/mm1removeapplet.rb +28 -0
  12. data/code/lm1installapplets/ll5listzips.rb +14 -0
  13. data/code/lm1installapplets/lm1installapplet.rb +20 -0
  14. data/code/zz0applicationend/zz0end.rb +4 -0
  15. data/configuration/aa0rwdframework.cnf +11 -0
  16. data/ev/browser.rb +109 -0
  17. data/ev/ftools.rb +170 -0
  18. data/ev/net.rb +750 -0
  19. data/ev/ruby.rb +819 -0
  20. data/ev/rwd.rb +1848 -0
  21. data/ev/sgml.rb +236 -0
  22. data/ev/thread.rb +63 -0
  23. data/ev/tree.rb +343 -0
  24. data/ev/xml.rb +4 -0
  25. data/gui/en/aa2core/aa0rwdtop.rwd +3 -0
  26. data/gui/en/cc0viewphoto/cc0openphoto.rwd +17 -0
  27. data/gui/en/ll5listapplets/ll0rwdlistapplets.rwd +42 -0
  28. data/gui/en/ll9rwdlistzips/ll5rwdlistzips.rwd +33 -0
  29. data/gui/en/tt0documentsbegin/tt0documentbegin.rwd +5 -0
  30. data/gui/en/uu5rwddocuments/uu5documents.rwd +13 -0
  31. data/gui/en/ww0documentsend/ww0documentend.rwd +6 -0
  32. data/gui/en/wz6finaltabs/xx0rwdfirsttab.rwd +4 -0
  33. data/gui/en/xx9photoview/xx9photoview.rwd +3 -0
  34. data/gui/en/ya1helpbegin/ya0helpscreenstart.rwd +1 -0
  35. data/gui/en/yg5rwdhelp/yf0helpscreen.rwd +2 -0
  36. data/gui/en/yg5rwdhelp/yf6rwdtinker.rwd +3 -0
  37. data/gui/en/yg5rwdhelp/yg0helpscreen.rwd +1 -0
  38. data/gui/en/za1applicationend/yy9rwdend.rwd +2 -0
  39. data/gui/es/aa2core/aa0rwdtop.rwd +3 -0
  40. data/gui/es/cc0viewphoto/cc0openphoto.rwd +17 -0
  41. data/gui/es/ll5listapplets/ll0rwdlistapplets.rwd +41 -0
  42. data/gui/es/ll9rwdlistzips/ll5rwdlistzips.rwd +33 -0
  43. data/gui/es/tt0documentsbegin/tt0documentbegin.rwd +5 -0
  44. data/gui/es/uu5rwddocuments/uu5documents.rwd +13 -0
  45. data/gui/es/ww0documentsend/ww0documentend.rwd +6 -0
  46. data/gui/es/wz6finaltabs/xx0rwdfirsttab.rwd +4 -0
  47. data/gui/es/xx9photoview/xx9photoview.rwd +3 -0
  48. data/gui/es/ya1helpbegin/ya0helpscreenstart.rwd +1 -0
  49. data/gui/es/yg5rwdhelp/yf0helpscreen.rwd +2 -0
  50. data/gui/es/yg5rwdhelp/yf6rwdtinker.rwd +3 -0
  51. data/gui/es/yg5rwdhelp/yg0helpscreen.rwd +1 -0
  52. data/gui/es/za1applicationend/yy9rwdend.rwd +2 -0
  53. data/gui/nl/aa2core/aa0rwdtop.rwd +3 -0
  54. data/gui/nl/cc0viewphoto/cc0openphoto.rwd +17 -0
  55. data/gui/nl/ll5listapplets/ll0rwdlistapplets.rwd +41 -0
  56. data/gui/nl/ll9rwdlistzips/ll5rwdlistzips.rwd +33 -0
  57. data/gui/nl/tt0documentsbegin/tt0documentbegin.rwd +5 -0
  58. data/gui/nl/uu5rwddocuments/uu5documents.rwd +13 -0
  59. data/gui/nl/ww0documentsend/ww0documentend.rwd +6 -0
  60. data/gui/nl/wz6finaltabs/xx0rwdfirsttab.rwd +4 -0
  61. data/gui/nl/xx9photoview/xx9photoview.rwd +3 -0
  62. data/gui/nl/ya1helpbegin/ya0helpscreenstart.rwd +1 -0
  63. data/gui/nl/yg5rwdhelp/yf0helpscreen.rwd +2 -0
  64. data/gui/nl/yg5rwdhelp/yf6rwdtinker.rwd +3 -0
  65. data/gui/nl/yg5rwdhelp/yg0helpscreen.rwd +1 -0
  66. data/gui/nl/za1applicationend/yy9rwdend.rwd +2 -0
  67. data/init.rb +164 -0
  68. data/installed/rwdlistapplets-0.4.inf +5 -0
  69. data/installed/rwdlistzips-0.4.inf +4 -0
  70. data/installed/rwdviewphoto-0.3.inf +9 -0
  71. data/lang/en/rwdcore/languagefile.rb +6 -0
  72. data/lang/es/rwdcore/languagefile.rb +4 -0
  73. data/lang/nl/rwdcore/languagefile.rb +4 -0
  74. data/lib/temp.rb +1 -0
  75. data/rwd_files/HowTo_Tinker.html +365 -0
  76. data/rwd_files/HowTo_Tinker.txt +234 -0
  77. data/rwd_files/Readme.txt +57 -0
  78. data/rwd_files/favicon.ico +0 -0
  79. data/rwd_files/rdoc-style.css +175 -0
  80. data/rwd_files/rwdapplications.html +54 -0
  81. data/rwd_files/rwdindex.html +6 -0
  82. data/rwd_files/tinker.png +0 -0
  83. data/tests/rubyslippers-0.92.gemspec +17 -0
  84. data/tests/rwdtinker-1.2.gemspec +17 -0
  85. data/tests/rwdtinkertestEN.rb +87 -0
  86. data/tests/temptest.out +18 -0
  87. data/tests/totranslate.lang +93 -0
  88. data/zips/arubyslippers-0.7.zip +0 -0
  89. data/zips/rwdamovies-0.5.zip +0 -0
  90. data/zips/rwdaschedule-0.3.zip +0 -0
  91. data/zips/rwdaviewphoto-0.3.zip +0 -0
  92. data/zips/rwdhelloworld-0.2.zip +0 -0
  93. data/zips/rwdlistapplets-0.4.zip +0 -0
  94. data/zips/rwdlistzips-0.4.zip +0 -0
  95. data/zips/rwdrefreshacpi-0.1.zip +0 -0
  96. metadata +134 -0
@@ -0,0 +1,175 @@
1
+
2
+ body {
3
+ margin: 0;
4
+ padding: 0;
5
+ background: white;
6
+ }
7
+
8
+ h1,h2,h3,h4 { margin: 0; color: #efefef; background: transparent; }
9
+ h1 { font-size: 120%; }
10
+ h2,h3,h4 { margin-top: 1em; }
11
+
12
+ a { background: #eef; color: #039; text-decoration: none; }
13
+ a:hover { background: #039; color: #eef; }
14
+
15
+ /* Override the base stylesheet's Anchor inside a table cell */
16
+ td > a {
17
+ background: transparent;
18
+ color: #039;
19
+ text-decoration: none;
20
+ }
21
+
22
+ /* === Structural elements =================================== */
23
+
24
+ div#index {
25
+ margin: 0;
26
+ padding: 0;
27
+ font-size: 0.9em;
28
+ }
29
+
30
+ div#index a {
31
+ margin-left: 0.7em;
32
+ }
33
+
34
+ div#classHeader {
35
+ width: auto;
36
+ background: #039;
37
+ color: white;
38
+ padding: 0.5em 1.5em 0.5em 1.5em;
39
+ margin: 0;
40
+ border-bottom: 3px solid #006;
41
+ }
42
+
43
+ div#classHeader a {
44
+ background: inherit;
45
+ color: white;
46
+ }
47
+
48
+ div#classHeader td {
49
+ background: inherit;
50
+ color: white;
51
+ }
52
+
53
+ div#fileHeader {
54
+ width: auto;
55
+ background: #039;
56
+ color: white;
57
+ padding: 0.5em 1.5em 0.5em 1.5em;
58
+ margin: 0;
59
+ border-bottom: 3px solid #006;
60
+ }
61
+
62
+ div#fileHeader a {
63
+ background: inherit;
64
+ color: white;
65
+ }
66
+
67
+ div#fileHeader td {
68
+ background: inherit;
69
+ color: white;
70
+ }
71
+
72
+ div#bodyContent {
73
+ padding: 0 1.5em 0 1.5em;
74
+ }
75
+
76
+ div#description {
77
+ padding: 0.5em 1.5em;
78
+ background: #efefef;
79
+ border: 1px dotted #999;
80
+ }
81
+
82
+ div#description h1,h2,h3,h4,h5,h6 {
83
+ color: black;
84
+ background: transparent;
85
+ }
86
+
87
+ div#validator-badges {
88
+ text-align: center;
89
+ }
90
+ div#validator-badges img { border: 0; }
91
+
92
+ div#copyright {
93
+ color: #333;
94
+ background: #efefef;
95
+ font: 0.75em sans-serif;
96
+ margin-top: 5em;
97
+ margin-bottom: 0;
98
+ padding: 0.5em 2em;
99
+ }
100
+
101
+
102
+ /* === Classes =================================== */
103
+
104
+ table.header-table {
105
+ color: white;
106
+ font-size: small;
107
+ }
108
+
109
+ .type-note {
110
+ font-size: small;
111
+ color: #DEDEDE;
112
+ }
113
+
114
+ .section-bar {
115
+ background: #eee;
116
+ color: #333;
117
+ padding: 3px;
118
+ border: 1px solid #999;
119
+ }
120
+
121
+ .top-aligned-row { vertical-align: vertical-align: top }
122
+
123
+ /* --- Context section classes ----------------------- */
124
+
125
+ .context-row { }
126
+ .context-item-name { font-family: monospace; font-weight: bold; color: black; }
127
+ .context-item-value { font-size: x-small; color: #448; }
128
+ .context-item-desc { background: #efefef; }
129
+
130
+ /* --- Method classes -------------------------- */
131
+ .method-detail {
132
+ background: #EFEFEF;
133
+ padding: 0;
134
+ margin-top: 0.5em;
135
+ margin-bottom: 0.5em;
136
+ border: 1px dotted #DDD;
137
+ }
138
+ .method-heading {
139
+ color: black;
140
+ background: #AAA;
141
+ border-bottom: 1px solid #666;
142
+ padding: 0.2em 0.5em 0 0.5em;
143
+ }
144
+ .method-signature { color: black; background: inherit; }
145
+ .method-name { font-weight: bold; }
146
+ .method-args { font-style: italic; }
147
+ .method-description { padding: 0 0.5em 0 0.5em; }
148
+
149
+ /* --- Source code sections -------------------- */
150
+
151
+ a.source-toggle { font-size: 90%; }
152
+ div.method-source-code {
153
+ background: #262626;
154
+ color: #ffdead;
155
+ margin: 1em;
156
+ padding: 0.5em;
157
+ border: 1px dashed #999;
158
+ overflow: hidden;
159
+ }
160
+
161
+ div.method-source-code pre { color: #ffdead; overflow: hidden; }
162
+
163
+ /* --- Ruby keyword styles --------------------- */
164
+
165
+ .standalone-code { background: #221111; color: #ffdead; overflow: hidden; }
166
+
167
+ .ruby-constant { color: #7fffd4; background: transparent; }
168
+ .ruby-keyword { color: #00ffff; background: transparent; }
169
+ .ruby-ivar { color: #eedd82; background: transparent; }
170
+ .ruby-operator { color: #00ffee; background: transparent; }
171
+ .ruby-identifier { color: #ffdead; background: transparent; }
172
+ .ruby-node { color: #ffa07a; background: transparent; }
173
+ .ruby-comment { color: #b22222; font-weight: bold; background: transparent; }
174
+ .ruby-regexp { color: #ffa07a; background: transparent; }
175
+ .ruby-value { color: #7fffd4; background: transparent; }
@@ -0,0 +1,54 @@
1
+ <html>
2
+ <head>
3
+ <title>
4
+ rwdapplications information
5
+ </title>
6
+ </head>
7
+ <body>
8
+ <h1>
9
+ rwdapplications information (rwdshell)
10
+ </h1>
11
+ <br>
12
+ <h2>
13
+
14
+ Some additional programs in this series
15
+ </h2>
16
+ <h3>
17
+ <br><blockquote>
18
+ rwdaddresses a little address book
19
+ <br><br>
20
+ rwdmovies a database for tracking your dvds and vhs movie collection
21
+ <br><br>
22
+
23
+ you can find these on rubyforge.org
24
+
25
+ </blockquote>
26
+ <br>
27
+
28
+ <br><blockquote>
29
+ Also look for a program called redpimp on rubyforge.org
30
+
31
+ <br><br>
32
+ It is planned to be a pim using RubyWebDialogs
33
+ <br><br>
34
+
35
+ you can find this at http://redpimp.rubyforge.org
36
+
37
+ </blockquote>
38
+ <br>
39
+
40
+
41
+ <br><br>
42
+ For more information see:<br>
43
+ <a href=http://rwdapplications.rubyforge.org/wiki/wiki.pl>http://rwdapplications.rubyforge.org/wiki/wiki.pl</a>
44
+ <br>
45
+ <br>
46
+ For more information about RubyWebDialogs see:<br>
47
+ <a href=http://www.erikveen.dds.nl/rubywebdialogs/index.html>http://www.erikveen.dds.nl/rubywebdialogs/index.html</a>
48
+ <br><br>
49
+ Thanks, Steven Gibson
50
+
51
+
52
+
53
+ </body>
54
+ </html>
@@ -0,0 +1,6 @@
1
+ <HTML>
2
+ <META http-equiv="refresh" content="0; url=http://www.erikveen.dds.nl/rubywebdialogs/index.html">
3
+ <SCRIPT language="javascript1.0">
4
+ location.href="http://www.erikveen.dds.nl/rubywebdialogs/index.html";
5
+ </SCRIPT>
6
+ </HTML>
Binary file
@@ -0,0 +1,17 @@
1
+ Gem::Specification.new do |s|
2
+ s.name = %q{rubyslippers}
3
+ s.version = "0.92"
4
+ s.date = %q{2004-12-21}
5
+ s.summary = %q{rwdtinker application.}
6
+ s.require_paths = ["."]
7
+ s.email = %q{whitton@atlantic.net}
8
+ s.homepage = %q{http://grub.ath.cx/formvalidator/}
9
+ s.autorequire = %q{formvalidator}
10
+ s.has_rdoc = true
11
+ s.files = [ "README.rdoc", "code", "code/ag1core", "code/ag1core/aa0begin.rb", "code/ii6rubyslippers", "code/ii6rubyslippers/gemserve.rb", "code/ii6rubyslippers/ii3viewgemdata.rb", "code/ii6rubyslippers/ii4listgemrecord.rb", "code/ii6rubyslippers/ii6installgem.rb", "code/ii6rubyslippers/ii7listgemsremote.rb", "code/ii6rubyslippers/ii9gemcommands.rb", "code/ii6rubyslippers/ii9gemenvironment.rb", "code/ii6rubyslippers/ii9gemfilesinstalled.rb", "code/ii6rubyslippers/ii9listgemdirs.rb", "code/ii6rubyslippers/ij9execgemserve.rb", "code/ll0listapplets", "code/ll0listapplets/05listinstalledfiles.rb", "code/ll0listapplets/ll1openname.rb", "code/ll0listapplets/mm1removeapplet.rb", "code/lm1installapplets", "code/lm1installapplets/ll5listzips.rb", "code/lm1installapplets/lm1installapplet.rb", "code/zz0applicationend", "code/zz0applicationend/zz0end.rb", "configuration", "configuration/aa0rwdframework.cnf", "configuration/ii3rubyslippers.cnf", "ev", "ev/browser.rb", "ev/ftools.rb", "ev/net.rb", "ev/ruby.rb", "ev/rwd.rb", "ev/sgml.rb", "ev/thread.rb", "ev/tree.rb", "ev/xml.rb", "gui", "gui/en", "gui/en/aa2core", "gui/en/aa2core/aa0rwdtop.rwd", "gui/en/ii6rubyslippers", "gui/en/ii6rubyslippers/ii3viewgemdata.rwd", "gui/en/ii6rubyslippers/ii4listgemrecordfiles.rwd", "gui/en/ii6rubyslippers/ii6installgem.rwd", "gui/en/ii6rubyslippers/ii7listgemsremote.rwd", "gui/en/ii6rubyslippers/ii9gemcommands.rwd", "gui/en/ii6rubyslippers/ij1gemfilesinstalled.rwd", "gui/en/ii6rubyslippers/ij4gemserverscan.rwd", "gui/en/ll5listapplets", "gui/en/ll5listapplets/ll0rwdlistapplets.rwd", "gui/en/ll9rwdlistzips", "gui/en/ll9rwdlistzips/ll5rwdlistzips.rwd", "gui/en/tt0documentsbegin", "gui/en/tt0documentsbegin/tt0documentbegin.rwd", "gui/en/ui3rubyslippers", "gui/en/ui3rubyslippers/ui3rubyslippers.rwd", "gui/en/ui3rubyslippers/ui4rubyslippers.rwd", "gui/en/uu5rwddocuments", "gui/en/uu5rwddocuments/uu5documents.rwd", "gui/en/ww0documentsend", "gui/en/ww0documentsend/ww0documentend.rwd", "gui/en/wz6finaltabs", "gui/en/wz6finaltabs/xx0rwdfirsttab.rwd", "gui/en/ya1helpbegin", "gui/en/ya1helpbegin/ya0helpscreenstart.rwd", "gui/en/yg5rwdhelp", "gui/en/yg5rwdhelp/yf0helpscreen.rwd", "gui/en/yg5rwdhelp/yf6rwdtinker.rwd", "gui/en/yg5rwdhelp/yg0helpscreen.rwd", "gui/en/yi2rubyslippers", "gui/en/yi2rubyslippers/yi2rubyslippers.rwd", "gui/en/yi2rubyslippers/yi6rubyslippers.rwd", "gui/en/yi2rubyslippers/yi8rubyslippers.rwd", "gui/en/yy5helpend", "gui/en/yy5helpend/yy5helpscreenend,rwd", "gui/en/za1applicationend", "gui/en/za1applicationend/yy9rwdend.rwd", "gui/nl", "gui/nl/aa2core", "gui/nl/aa2core/aa0rwdtop.rwd", "gui/nl/ii6rubyslippers", "gui/nl/ii6rubyslippers/ii3viewgemdata.rwd", "gui/nl/ii6rubyslippers/ii4listgemrecordfiles.rwd", "gui/nl/ii6rubyslippers/ii6installgem.rwd", "gui/nl/ii6rubyslippers/ii7listgemsremote.rwd", "gui/nl/ii6rubyslippers/ii9gemcommands.rwd", "gui/nl/ii6rubyslippers/ij1gemfilesinstalled.rwd", "gui/nl/ii6rubyslippers/ij4gemserverscan.rwd", "gui/nl/ll5listapplets", "gui/nl/ll5listapplets/ll0rwdlistapplets.rwd", "gui/nl/ll9rwdlistzips", "gui/nl/ll9rwdlistzips/ll5rwdlistzips.rwd", "gui/nl/tt0documentsbegin", "gui/nl/tt0documentsbegin/tt0documentbegin.rwd", "gui/nl/ui3rubyslippers", "gui/nl/ui3rubyslippers/ui3rubyslippers.rwd", "gui/nl/ui3rubyslippers/ui4rubyslippers.rwd", "gui/nl/uu5rwddocuments", "gui/nl/uu5rwddocuments/uu5documents.rwd", "gui/nl/ww0documentsend", "gui/nl/ww0documentsend/ww0documentend.rwd", "gui/nl/wz6finaltabs", "gui/nl/wz6finaltabs/xx0rwdfirsttab.rwd", "gui/nl/ya1helpbegin", "gui/nl/ya1helpbegin/ya0helpscreenstart.rwd", "gui/nl/yg5rwdhelp", "gui/nl/yg5rwdhelp/yf0helpscreen.rwd", "gui/nl/yg5rwdhelp/yf6rwdtinker.rwd", "gui/nl/yg5rwdhelp/yg0helpscreen.rwd", "gui/nl/yi2rubyslippers", "gui/nl/yi2rubyslippers/yi2rubyslippers.rwd", "gui/nl/yi2rubyslippers/yi6rubyslippers.rwd", "gui/nl/yi2rubyslippers/yi8rubyslippers.rwd", "gui/nl/yy5helpend", "gui/nl/yy5helpend/yy5helpscreenend,rwd", "gui/nl/za1applicationend", "gui/nl/za1applicationend/yy9rwdend.rwd", "init.rb", "installed", "installed/fullrubyslippers-0.91.inf", "installed/rwdlistapplets-0.4.inf", "installed/rwdlistzips-0.4.inf", "Readme.txt", "rwd_files", "rwd_files/COPYING", "rwd_files/favicon.ico", "rwd_files/GemDocuments.html", "rwd_files/HowTo_RubySlippers.html", "rwd_files/HowTo_Tinker.html", "rwd_files/HowTo_Tinker.txt", "rwd_files/Readme.txt", "rwd_files/rwdapplications.html", "rwd_files/rwdindex.html", "rwd_files/tinker.png", "zips"]
12
+ s.rdoc_options = ["--main", "README.rdoc", "rwd_files/HowTo_RubySlippers.html"]
13
+ s.extra_rdoc_files = ["README.rdoc"]
14
+ end.description = %q{rwdtinker.}
15
+
16
+
17
+
@@ -0,0 +1,17 @@
1
+ Gem::Specification.new do |s|
2
+ s.name = %q{rwdtinker}
3
+ s.version = "1.1"
4
+ s.date = %q{2004-12-24}
5
+ s.summary = %q{rwdtinker application.}
6
+ s.require_paths = ["."]
7
+ s.email = %q{steven@superant.com}
8
+ s.homepage = %q{http://rubyforge.net/projects/rwdapplications/}
9
+ s.autorequire = %q{rwdtinker}
10
+ s.has_rdoc = true
11
+ s.files = [ "code", "code/ag1core", "code/ag1core/aa0begin.rb", "code/ll0listapplets", "code/ll0listapplets/05listinstalledfiles.rb", "code/ll0listapplets/ll1openname.rb", "code/ll0listapplets/mm1removeapplet.rb", "code/lm1installapplets", "code/lm1installapplets/ll5listzips.rb", "code/lm1installapplets/lm1installapplet.rb", "code/zz0applicationend", "code/zz0applicationend/zz0end.rb", "configuration", "configuration/aa0rwdframework.cnf", "ev", "ev/browser.rb", "ev/ftools.rb", "ev/net.rb", "ev/ruby.rb", "ev/rwd.rb", "ev/sgml.rb", "ev/thread.rb", "ev/tree.rb", "ev/xml.rb", "gui", "gui/en", "gui/en/aa2core", "gui/en/aa2core/aa0rwdtop.rwd", "gui/en/ll5listapplets", "gui/en/ll5listapplets/ll0rwdlistapplets.rwd", "gui/en/ll9rwdlistzips", "gui/en/ll9rwdlistzips/ll5rwdlistzips.rwd", "gui/en/tt0documentsbegin", "gui/en/tt0documentsbegin/tt0documentbegin.rwd", "gui/en/uu5rwddocuments", "gui/en/uu5rwddocuments/uu5documents.rwd", "gui/en/ww0documentsend", "gui/en/ww0documentsend/ww0documentend.rwd", "gui/en/wz6finaltabs", "gui/en/wz6finaltabs/xx0rwdfirsttab.rwd", "gui/en/ya1helpbegin", "gui/en/ya1helpbegin/ya0helpscreenstart.rwd", "gui/en/yg5rwdhelp", "gui/en/yg5rwdhelp/yf0helpscreen.rwd", "gui/en/yg5rwdhelp/yf6rwdtinker.rwd", "gui/en/yg5rwdhelp/yg0helpscreen.rwd", "gui/en/yy5helpend", "gui/en/yy5helpend/yy5helpscreenend,rwd", "gui/en/za1applicationend", "gui/en/za1applicationend/yy9rwdend.rwd", "gui/nl", "gui/nl/aa2core", "gui/nl/aa2core/aa0rwdtop.rwd", "gui/nl/ll5listapplets", "gui/nl/ll5listapplets/ll0rwdlistapplets.rwd", "gui/nl/ll9rwdlistzips", "gui/nl/ll9rwdlistzips/ll5rwdlistzips.rwd", "gui/nl/tt0documentsbegin", "gui/nl/tt0documentsbegin/tt0documentbegin.rwd", "gui/nl/uu5rwddocuments", "gui/nl/uu5rwddocuments/uu5documents.rwd", "gui/nl/ww0documentsend", "gui/nl/ww0documentsend/ww0documentend.rwd", "gui/nl/wz6finaltabs", "gui/nl/wz6finaltabs/xx0rwdfirsttab.rwd", "gui/nl/ya1helpbegin", "gui/nl/ya1helpbegin/ya0helpscreenstart.rwd", "gui/nl/yg5rwdhelp", "gui/nl/yg5rwdhelp/yf0helpscreen.rwd", "gui/nl/yg5rwdhelp/yf6rwdtinker.rwd", "gui/nl/yg5rwdhelp/yg0helpscreen.rwd", "gui/nl/yy5helpend", "gui/nl/yy5helpend/yy5helpscreenend,rwd", "gui/nl/za1applicationend", "gui/nl/za1applicationend/yy9rwdend.rwd", "init.rb", "installed", "installed/rwdlistapplets-0.4.inf", "installed/rwdlistzips-0.4.inf", "Readme.txt", "rwd_files", "rwd_files/COPYING", "rwd_files/favicon.ico", "rwd_files/HowTo_Tinker.html", "rwd_files/HowTo_Tinker.txt", "rwd_files/Readme.txt", "rwd_files/rwdapplications.html", "rwd_files/rwdindex.html", "rwd_files/tinker.png", "zips"]
12
+ s.rdoc_options = ["--main", "rwd_files/HowTo_Tinker.txt"]
13
+ s.extra_rdoc_files = ["README.txt"]
14
+ end.description = %q{rwdtinker.}
15
+
16
+
17
+
@@ -0,0 +1,87 @@
1
+ #-------------------------------------------------------------------------------------------------------------#
2
+ # test with the WATIR controller
3
+ #
4
+ # Simple test based on Google/watir demo
5
+ #
6
+ #------------------------------------------------------------------------------------------------------------ #
7
+
8
+ #includes
9
+ require '../watir' # the controller
10
+
11
+ #test::unit includes
12
+ require 'test/unit'
13
+ require 'test/unit/ui/console/testrunner'
14
+ require '../unittests/testUnitAddons'
15
+
16
+ #code to set your current path in Windows
17
+ $myDir = File.dirname(__FILE__)
18
+ $LOAD_PATH << $myDir
19
+
20
+ class TC_rwdtinker_suite < Test::Unit::TestCase
21
+
22
+
23
+
24
+ def test_a_Open1
25
+ #--------------------------------------------------------
26
+ # test case that shows basic WATIR functionality:
27
+ # * enter text in a field
28
+ # * click a button
29
+ #
30
+
31
+ #variables
32
+ testSite = 'http://localhost:7705'
33
+
34
+ #open the IE browser
35
+ $ie = IE.new
36
+
37
+ puts '## Beginning of test: rwdtinker'
38
+ puts ' '
39
+
40
+ $ie.goto(testSite)
41
+ puts ' Action: entered ' + testSite + 'in the address bar.'
42
+ sleep 1
43
+
44
+ $ie.button(:caption, "View Photo").click
45
+ puts ' Action: clicked the View Photo link'
46
+
47
+ sleep 1
48
+ $ie.link(:url, 'javascript:document.bodyform.rwd_action.value="rwd_main";document.bodyform.submit();').click
49
+ puts ' Action: clicked the main top link'
50
+ end
51
+
52
+ def test_b_Buttons1
53
+ sleep 1
54
+ $ie.link(:url, 'javascript:document.bodyform.rwd_action.value="rwd_tab_filelister";document.bodyform.submit();').click
55
+ puts ' Action: clicked the file lister tab'
56
+
57
+ sleep 1
58
+
59
+ $ie.button(:caption, "List Files").click
60
+ puts ' Action: clicked the List Files button.'
61
+
62
+ sleep 1
63
+
64
+ assert($ie.pageContainsText("File Name") )
65
+ sleep 1
66
+
67
+ $ie.button(:caption, "View Install Text").click
68
+ puts ' Action: clicked the View Install Text button.'
69
+
70
+ sleep 1
71
+ $ie.link(:url, 'javascript:document.bodyform.rwd_action.value="rwd_tab_zipslister";document.bodyform.submit();').click
72
+
73
+ puts ' '
74
+ puts '## End of 2st test: '
75
+
76
+ end # end of test_b_buttons1
77
+
78
+ def test_c_tabs
79
+
80
+ $ie.button(:caption, "List applets available for installing").click
81
+ puts ' Action: clicked the List applets available for installing button.'
82
+
83
+ end
84
+
85
+
86
+
87
+ end #end of class TC_google_suite
@@ -0,0 +1,18 @@
1
+ Loaded suite C:/ruby/sample/watir/examples/rwdtinkertestEN
2
+ Started
3
+ ## Beginning of test: rwdtinker
4
+
5
+ Action: entered http://localhost:7705in the address bar.
6
+ Action: clicked the View Photo link
7
+ Action: clicked the main top link
8
+ Action: clicked the file lister tab
9
+ Action: clicked the List Files button.
10
+ pageContainsText: Looking for: File Name (string) - found it ok
11
+ Action: clicked the View Install Text button.
12
+
13
+ ## End of 2st test:
14
+ Action: clicked the List applets available for installing button.
15
+
16
+ Finished in 18.676 seconds.
17
+
18
+ 3 tests, 1 assertions, 0 failures, 0 errors
@@ -0,0 +1,93 @@
1
+ code/ag1core/rwdtinkercore.rb: @result = "idle"
2
+ code/ag1core/rwdtinkercore.rb: @display= "idle"
3
+ code/ag1core/rwdtinkercore.rb: "Rwdtinker Application "
4
+ code/ll0listapplets/ll1openname.rb: @displaytext = "\n" + "error"
5
+ code/ll0listapplets/mm1removeapplet.rb: fileName = "installed/" + nametext + ".inf"
6
+ code/ll0listapplets/mm1removeapplet.rb: @removeapplettext = "applet files removed! - restart rwd to finish uninstalling"
7
+ code/ll0listapplets/mm1removeapplet.rb: @removeapplettext = "\n" + "error"
8
+ code/lm1installapplets/lm1installapplet.rb: @installapplettext = "Done! - Check applet list - restart rwd to activate the new applet"
9
+ code/bb2viewphoto/dd0viewphoto.rb: @rwd_window = "photo"
10
+ gui/en/aa2core/aa0rwdtop.rwd: <window name="main" title="Tinker - RubyWebDialogs">
11
+ gui/en/ll5listapplets/ll0rwdlistapplets.rwd: <tab name="filelister" caption="List Applets">
12
+ gui/en/ll5listapplets/ll0rwdlistapplets.rwd: <row> <p align="right">View the list of installation files </row>
13
+ gui/en/ll5listapplets/ll0rwdlistapplets.rwd: <button caption="List Files" action="listinstalledfiles"/>
14
+ gui/en/ll5listapplets/ll0rwdlistapplets.rwd: <button caption="Cancel" action="main"/>
15
+ gui/en/ll5listapplets/ll0rwdlistapplets.rwd: <row> <p align="right">File Name:</p> <text name="a_installlist"/> </row>
16
+ gui/en/ll5listapplets/ll0rwdlistapplets.rwd: <button caption="View Install Text" action="openname"/>
17
+ gui/en/ll5listapplets/ll0rwdlistapplets.rwd: <button caption="Cancel" action="main"/>
18
+ gui/en/ll5listapplets/ll0rwdlistapplets.rwd: <row> <p align="right">File Name:</p> <text name="a_removeapplet"/> </row>
19
+ gui/en/ll5listapplets/ll0rwdlistapplets.rwd: <button caption="remove applet" action="removeapplet"/>
20
+ gui/en/ll5listapplets/ll0rwdlistapplets.rwd: <button caption="Cancel" action="main"/>
21
+ gui/en/yg5rwdhelp/yg0helpscreen.rwd: <row> <p align="center">copyright s. gibson 2004</p></row>
22
+ gui/en/yg5rwdhelp/yf6rwdtinker.rwd: <row> <p align="center">version 1.1</p></row>
23
+ gui/en/yg5rwdhelp/yf0helpscreen.rwd: <row> <p align="center">rwdtinker</p></row>
24
+ gui/en/ya1helpbegin/ya0helpscreenstart.rwd:<helpwindow name="main" title="Help About">
25
+ gui/en/ww0documentsend/ww0documentend.rwd: <row> <p align="left"><a href=.>Spawn a clone Dialog window</a></p></row>
26
+ gui/en/tt0documentsbegin/tt0documentbegin.rwd: <tab name="one" caption="Documents">
27
+ gui/en/ll9rwdlistzips/ll5rwdlistzips.rwd: <tab name="zipslister" caption="List Zips">
28
+ gui/en/ll9rwdlistzips/ll5rwdlistzips.rwd: <row> <p align="right">File Name:</p> <text name="a_installapplet"/> </row>
29
+ gui/en/ll9rwdlistzips/ll5rwdlistzips.rwd: <button caption="install applet" action="installapplet"/>
30
+ gui/en/ll9rwdlistzips/ll5rwdlistzips.rwd: <button caption="Cancel" action="main"/>
31
+ gui/en/ll9rwdlistzips/ll5rwdlistzips.rwd: <row> <p align="right">Click below to view the list of zip files </row>
32
+ gui/en/ll9rwdlistzips/ll5rwdlistzips.rwd: <button caption="List applets available for installing" action="listzipfilestoinstall"/>
33
+ gui/en/bbviewphoto/cc0openphoto.rwd: <tab name="View frames" caption="Tinker">
34
+ gui/en/bbviewphoto/cc0openphoto.rwd: <row> <p align="right">Tinker </row>
35
+ gui/en/bbviewphoto/cc0openphoto.rwd: <button caption="View Photo" action="viewphoto"/>
36
+ gui/en/xx7viewphoto/xx9photoview.rwd:<window name="photo" title="Frames">
37
+ gui/en/xx7viewphoto/xx9photoview.rwd:<image src="tinker.png"> frames </image>
38
+ gui/es/aa2core/aa0rwdtop.rwd: <window name="main" title="Tinker - RubyWebDialogs">
39
+ gui/es/ll5listapplets/ll0rwdlistapplets.rwd: <tab name="filelister" caption="List Applets">
40
+ gui/es/ll5listapplets/ll0rwdlistapplets.rwd: <row> <p align="right">View the list of installation files </row>
41
+ gui/es/ll5listapplets/ll0rwdlistapplets.rwd: <button caption="List Files" action="listinstalledfiles"/>
42
+ gui/es/ll5listapplets/ll0rwdlistapplets.rwd: <button caption="Cancel" action="main"/>
43
+ gui/es/ll5listapplets/ll0rwdlistapplets.rwd: <row> <p align="right">File Name:</p> <text name="a_installlist"/> </row>
44
+ gui/es/ll5listapplets/ll0rwdlistapplets.rwd: <button caption="View Install Text" action="openname"/>
45
+ gui/es/ll5listapplets/ll0rwdlistapplets.rwd: <button caption="Cancel" action="main"/>
46
+ gui/es/ll5listapplets/ll0rwdlistapplets.rwd: <row> <p align="right">File Name:</p> <text name="a_removeapplet"/> </row>
47
+ gui/es/ll5listapplets/ll0rwdlistapplets.rwd: <button caption="remove applet" action="removeapplet"/>
48
+ gui/es/ll5listapplets/ll0rwdlistapplets.rwd: <button caption="Cancel" action="main"/>
49
+ gui/es/yg5rwdhelp/yg0helpscreen.rwd: <row> <p align="center">copyright s. gibson 2004</p></row>
50
+ gui/es/yg5rwdhelp/yf6rwdtinker.rwd: <row> <p align="center">version 1.1</p></row>
51
+ gui/es/yg5rwdhelp/yf0helpscreen.rwd: <row> <p align="center">rwdtinker</p></row>
52
+ gui/es/ya1helpbegin/ya0helpscreenstart.rwd:<helpwindow name="main" title="Help About">
53
+ gui/es/ww0documentsend/ww0documentend.rwd: <row> <p align="left"><a href=.>Spawn a clone Dialog window</a></p></row>
54
+ gui/es/tt0documentsbegin/tt0documentbegin.rwd: <tab name="one" caption="Documents">
55
+ gui/es/ll9rwdlistzips/ll5rwdlistzips.rwd: <tab name="zipslister" caption="List Zips">
56
+ gui/es/ll9rwdlistzips/ll5rwdlistzips.rwd: <row> <p align="right">File Name:</p> <text name="a_installapplet"/> </row>
57
+ gui/es/ll9rwdlistzips/ll5rwdlistzips.rwd: <button caption="install applet" action="installapplet"/>
58
+ gui/es/ll9rwdlistzips/ll5rwdlistzips.rwd: <button caption="Cancel" action="main"/>
59
+ gui/es/ll9rwdlistzips/ll5rwdlistzips.rwd: <row> <p align="right">Click below to view the list of zip files </row>
60
+ gui/es/ll9rwdlistzips/ll5rwdlistzips.rwd: <button caption="List applets available for installing" action="listzipfilestoinstall"/>
61
+ gui/es/bbviewphoto/cc0openphoto.rwd: <tab name="View frames" caption="Tinker">
62
+ gui/es/bbviewphoto/cc0openphoto.rwd: <row> <p align="right">Tinker </row>
63
+ gui/es/bbviewphoto/cc0openphoto.rwd: <button caption="View Photo" action="viewphoto"/>
64
+ gui/es/xx7viewphoto/xx9photoview.rwd:<window name="photo" title="Frames">
65
+ gui/es/xx7viewphoto/xx9photoview.rwd:<image src="tinker.png"> frames </image>
66
+ gui/nl/aa2core/aa0rwdtop.rwd: <window name="main" title="Tinker - RubyWebDialogs">
67
+ gui/nl/ll5listapplets/ll0rwdlistapplets.rwd: <tab name="filelister" caption="List Applets">
68
+ gui/nl/ll5listapplets/ll0rwdlistapplets.rwd: <row> <p align="right">View the list of installation files </row>
69
+ gui/nl/ll5listapplets/ll0rwdlistapplets.rwd: <button caption="List Files" action="listinstalledfiles"/>
70
+ gui/nl/ll5listapplets/ll0rwdlistapplets.rwd: <button caption="Cancel" action="main"/>
71
+ gui/nl/ll5listapplets/ll0rwdlistapplets.rwd: <row> <p align="right">File Name:</p> <text name="a_installlist"/> </row>
72
+ gui/nl/ll5listapplets/ll0rwdlistapplets.rwd: <button caption="View Install Text" action="openname"/>
73
+ gui/nl/ll5listapplets/ll0rwdlistapplets.rwd: <button caption="Cancel" action="main"/>
74
+ gui/nl/ll5listapplets/ll0rwdlistapplets.rwd: <row> <p align="right">File Name:</p> <text name="a_removeapplet"/> </row>
75
+ gui/nl/ll5listapplets/ll0rwdlistapplets.rwd: <button caption="remove applet" action="removeapplet"/>
76
+ gui/nl/ll5listapplets/ll0rwdlistapplets.rwd: <button caption="Cancel" action="main"/>
77
+ gui/nl/yg5rwdhelp/yg0helpscreen.rwd: <row> <p align="center">copyright s. gibson 2004</p></row>
78
+ gui/nl/yg5rwdhelp/yf6rwdtinker.rwd: <row> <p align="center">version 1.1</p></row>
79
+ gui/nl/yg5rwdhelp/yf0helpscreen.rwd: <row> <p align="center">rwdtinker</p></row>
80
+ gui/nl/ya1helpbegin/ya0helpscreenstart.rwd:<helpwindow name="main" title="Help About">
81
+ gui/nl/ww0documentsend/ww0documentend.rwd: <row> <p align="left"><a href=.>Spawn a clone Dialog window</a></p></row>
82
+ gui/nl/tt0documentsbegin/tt0documentbegin.rwd: <tab name="one" caption="Documents">
83
+ gui/nl/ll9rwdlistzips/ll5rwdlistzips.rwd: <tab name="zipslister" caption="List Zips">
84
+ gui/nl/ll9rwdlistzips/ll5rwdlistzips.rwd: <row> <p align="right">File Name:</p> <text name="a_installapplet"/> </row>
85
+ gui/nl/ll9rwdlistzips/ll5rwdlistzips.rwd: <button caption="install applet" action="installapplet"/>
86
+ gui/nl/ll9rwdlistzips/ll5rwdlistzips.rwd: <button caption="Cancel" action="main"/>
87
+ gui/nl/ll9rwdlistzips/ll5rwdlistzips.rwd: <row> <p align="right">Click below to view the list of zip files </row>
88
+ gui/nl/ll9rwdlistzips/ll5rwdlistzips.rwd: <button caption="List applets available for installing" action="listzipfilestoinstall"/>
89
+ gui/nl/bbviewphoto/cc0openphoto.rwd: <tab name="View frames" caption="Tinker">
90
+ gui/nl/bbviewphoto/cc0openphoto.rwd: <row> <p align="right">Tinker </row>
91
+ gui/nl/bbviewphoto/cc0openphoto.rwd: <button caption="View Photo" action="viewphoto"/>
92
+ gui/nl/xx7viewphoto/xx9photoview.rwd:<window name="photo" title="Frames">
93
+ gui/nl/xx7viewphoto/xx9photoview.rwd:<image src="tinker.png"> frames </image>
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
metadata ADDED
@@ -0,0 +1,134 @@
1
+ --- !ruby/object:Gem::Specification
2
+ rubygems_version: 0.8.3
3
+ specification_version: 1
4
+ name: rwdtinker
5
+ version: !ruby/object:Gem::Version
6
+ version: "1.2"
7
+ date: 2004-10-24
8
+ summary: rwdtinker application is a framework to program for RubyWebDialogs.
9
+ require_paths:
10
+ - "."
11
+ email: steven@superant.com
12
+ homepage: http://rubyforge.org/projects/rwdapplications/
13
+ rubyforge_project: rwdapplications
14
+ description: rwdtinker application is a framework to program for RubyWebDialogs.
15
+ autorequire:
16
+ default_executable:
17
+ bindir: bin
18
+ has_rdoc: true
19
+ required_ruby_version: !ruby/object:Gem::Version::Requirement
20
+ requirements:
21
+ -
22
+ - ">"
23
+ - !ruby/object:Gem::Version
24
+ version: 0.0.0
25
+ version:
26
+ platform: ruby
27
+ authors: []
28
+ files:
29
+ - lib/temp.rb
30
+ - code/ag1core/aa0begin.rb
31
+ - code/ll0listapplets/ll1openname.rb
32
+ - code/ll0listapplets/mm1removeapplet.rb
33
+ - code/ll0listapplets/05listinstalledfiles.rb
34
+ - code/lm1installapplets/ll5listzips.rb
35
+ - code/lm1installapplets/lm1installapplet.rb
36
+ - code/zz0applicationend/zz0end.rb
37
+ - code/al5languagefiles/languagehash.rb
38
+ - code/al5languagefiles/templangfile.rb
39
+ - code/al5languagefiles/zlanguagehashend.rb
40
+ - code/al5languagefiles/alanguagehashbegin.rb
41
+ - code/dd0viewphoto/dd0viewphoto.rb
42
+ - configuration/aa0rwdframework.cnf
43
+ - ev/sgml.rb
44
+ - ev/xml.rb
45
+ - ev/net.rb
46
+ - ev/ruby.rb
47
+ - ev/tree.rb
48
+ - ev/browser.rb
49
+ - ev/ftools.rb
50
+ - ev/rwd.rb
51
+ - ev/thread.rb
52
+ - lang/es/rwdcore/languagefile.rb
53
+ - lang/en/rwdcore/languagefile.rb
54
+ - lang/nl/rwdcore/languagefile.rb
55
+ - gui/en/aa2core/aa0rwdtop.rwd
56
+ - gui/en/ll5listapplets/ll0rwdlistapplets.rwd
57
+ - gui/en/yg5rwdhelp/yg0helpscreen.rwd
58
+ - gui/en/yg5rwdhelp/yf6rwdtinker.rwd
59
+ - gui/en/yg5rwdhelp/yf0helpscreen.rwd
60
+ - gui/en/za1applicationend/yy9rwdend.rwd
61
+ - gui/en/ya1helpbegin/ya0helpscreenstart.rwd
62
+ - gui/en/wz6finaltabs/xx0rwdfirsttab.rwd
63
+ - gui/en/ww0documentsend/ww0documentend.rwd
64
+ - gui/en/uu5rwddocuments/uu5documents.rwd
65
+ - gui/en/tt0documentsbegin/tt0documentbegin.rwd
66
+ - gui/en/ll9rwdlistzips/ll5rwdlistzips.rwd
67
+ - gui/en/cc0viewphoto/cc0openphoto.rwd
68
+ - gui/en/xx9photoview/xx9photoview.rwd
69
+ - gui/es/aa2core/aa0rwdtop.rwd
70
+ - gui/es/ll5listapplets/ll0rwdlistapplets.rwd
71
+ - gui/es/yg5rwdhelp/yg0helpscreen.rwd
72
+ - gui/es/yg5rwdhelp/yf6rwdtinker.rwd
73
+ - gui/es/yg5rwdhelp/yf0helpscreen.rwd
74
+ - gui/es/za1applicationend/yy9rwdend.rwd
75
+ - gui/es/ya1helpbegin/ya0helpscreenstart.rwd
76
+ - gui/es/wz6finaltabs/xx0rwdfirsttab.rwd
77
+ - gui/es/ww0documentsend/ww0documentend.rwd
78
+ - gui/es/uu5rwddocuments/uu5documents.rwd
79
+ - gui/es/tt0documentsbegin/tt0documentbegin.rwd
80
+ - gui/es/ll9rwdlistzips/ll5rwdlistzips.rwd
81
+ - gui/es/cc0viewphoto/cc0openphoto.rwd
82
+ - gui/es/xx9photoview/xx9photoview.rwd
83
+ - gui/nl/aa2core/aa0rwdtop.rwd
84
+ - gui/nl/ll5listapplets/ll0rwdlistapplets.rwd
85
+ - gui/nl/yg5rwdhelp/yg0helpscreen.rwd
86
+ - gui/nl/yg5rwdhelp/yf6rwdtinker.rwd
87
+ - gui/nl/yg5rwdhelp/yf0helpscreen.rwd
88
+ - gui/nl/za1applicationend/yy9rwdend.rwd
89
+ - gui/nl/ya1helpbegin/ya0helpscreenstart.rwd
90
+ - gui/nl/wz6finaltabs/xx0rwdfirsttab.rwd
91
+ - gui/nl/ww0documentsend/ww0documentend.rwd
92
+ - gui/nl/uu5rwddocuments/uu5documents.rwd
93
+ - gui/nl/tt0documentsbegin/tt0documentbegin.rwd
94
+ - gui/nl/ll9rwdlistzips/ll5rwdlistzips.rwd
95
+ - gui/nl/cc0viewphoto/cc0openphoto.rwd
96
+ - gui/nl/xx9photoview/xx9photoview.rwd
97
+ - installed/rwdlistapplets-0.4.inf
98
+ - installed/rwdlistzips-0.4.inf
99
+ - installed/rwdviewphoto-0.3.inf
100
+ - rwd_files/HowTo_Tinker.html
101
+ - rwd_files/Readme.txt
102
+ - rwd_files/rwdapplications.html
103
+ - rwd_files/rwdindex.html
104
+ - rwd_files/favicon.ico
105
+ - rwd_files/HowTo_Tinker.txt
106
+ - rwd_files/tinker.png
107
+ - rwd_files/rdoc-style.css
108
+ - zips/rwdhelloworld-0.2.zip
109
+ - zips/rwdlistzips-0.4.zip
110
+ - zips/rwdaschedule-0.3.zip
111
+ - zips/rwdrefreshacpi-0.1.zip
112
+ - zips/arubyslippers-0.7.zip
113
+ - zips/rwdlistapplets-0.4.zip
114
+ - zips/rwdaviewphoto-0.3.zip
115
+ - zips/rwdamovies-0.5.zip
116
+ - tests/temptest.out
117
+ - tests/rwdtinkertestEN.rb
118
+ - tests/totranslate.lang
119
+ - tests/rubyslippers-0.92.gemspec
120
+ - tests/rwdtinker-1.2.gemspec
121
+ - Readme.txt
122
+ - init.rb
123
+ test_files: []
124
+ rdoc_options:
125
+ - "--main"
126
+ - rwd_files/HowTo_Tinker.txt
127
+ extra_rdoc_files:
128
+ - Readme.txt
129
+ - rwd_files/HowTo_Tinker.txt
130
+ executables:
131
+ - rwdtinker
132
+ extensions: []
133
+ requirements: []
134
+ dependencies: []