ripxplore 0.7.1 → 0.7.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.
- data/bin/ripxplore.rb +1 -1
- data/doc/classes/RipXplore.html +1 -1
- data/doc/created.rid +1 -1
- data/doc/files/bin/ripxplore_rb.html +2 -2
- data/doc/files/lib/LibRipXplore_rb.html +1 -1
- data/doc/fr_class_index.html +0 -1
- data/doc/fr_file_index.html +1 -1
- data/doc/fr_method_index.html +1 -0
- data/doc/index.html +1 -1
- data/lib/LibRipXplore.rb +3 -2
- data/lib/blank_images/beautiful_boot_blank.dsk.gz +0 -0
- metadata +2 -1
data/bin/ripxplore.rb
CHANGED
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
# -h | --help display this message
|
|
19
19
|
# -I | --init FILESYSTEM initialise the disk with the specified filesytem
|
|
20
20
|
# DSK will be created if it doesn't exist.
|
|
21
|
-
# FILESYSTEM can be :
|
|
21
|
+
# FILESYSTEM can be : AppleDos, AppleCPM, BeautifulBoot
|
|
22
22
|
# -l | --list FILENAME BASIC files are listed, binary files are disassembled
|
|
23
23
|
# -o | --output FILENAME specify name to save extracted file as
|
|
24
24
|
# -r | --raw don't convert files to ASCII
|
data/doc/classes/RipXplore.html
CHANGED
|
@@ -99,7 +99,7 @@
|
|
|
99
99
|
<tr class="top-aligned-row context-row">
|
|
100
100
|
<td class="context-item-name">VERSION</td>
|
|
101
101
|
<td>=</td>
|
|
102
|
-
<td class="context-item-value">"0.7.
|
|
102
|
+
<td class="context-item-value">"0.7.2"</td>
|
|
103
103
|
</tr>
|
|
104
104
|
</table>
|
|
105
105
|
</div>
|
data/doc/created.rid
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
Sun, 08 Feb 2009
|
|
1
|
+
Sun, 08 Feb 2009 20:50:44 +1100
|
|
@@ -56,7 +56,7 @@
|
|
|
56
56
|
</tr>
|
|
57
57
|
<tr class="top-aligned-row">
|
|
58
58
|
<td><strong>Last Update:</strong></td>
|
|
59
|
-
<td>Sun Feb 08
|
|
59
|
+
<td>Sun Feb 08 20:50:37 +1100 2009</td>
|
|
60
60
|
</tr>
|
|
61
61
|
</table>
|
|
62
62
|
</div>
|
|
@@ -90,7 +90,7 @@ ripxplore.rb [switches] <filename.dsk>
|
|
|
90
90
|
-h | --help display this message
|
|
91
91
|
-I | --init FILESYSTEM initialise the disk with the specified filesytem
|
|
92
92
|
DSK will be created if it doesn't exist.
|
|
93
|
-
FILESYSTEM can be :
|
|
93
|
+
FILESYSTEM can be : AppleDos, AppleCPM, BeautifulBoot
|
|
94
94
|
-l | --list FILENAME BASIC files are listed, binary files are disassembled
|
|
95
95
|
-o | --output FILENAME specify name to save extracted file as
|
|
96
96
|
-r | --raw don't convert files to ASCII
|
data/doc/fr_class_index.html
CHANGED
data/doc/fr_file_index.html
CHANGED
data/doc/fr_method_index.html
CHANGED
data/doc/index.html
CHANGED
|
@@ -19,6 +19,6 @@
|
|
|
19
19
|
<frame src="fr_class_index.html" name="Classes" />
|
|
20
20
|
<frame src="fr_method_index.html" name="Methods" />
|
|
21
21
|
</frameset>
|
|
22
|
-
<frame src="files/
|
|
22
|
+
<frame src="files/bin/ripxplore_rb.html" name="docwin" />
|
|
23
23
|
</frameset>
|
|
24
24
|
</html>
|
data/lib/LibRipXplore.rb
CHANGED
|
@@ -4,7 +4,7 @@ $:.unshift(File.dirname(__FILE__)) unless
|
|
|
4
4
|
require 'open-uri'
|
|
5
5
|
class RipXplore
|
|
6
6
|
|
|
7
|
-
VERSION="0.7.
|
|
7
|
+
VERSION="0.7.2"
|
|
8
8
|
|
|
9
9
|
private
|
|
10
10
|
def RipXplore.require_files_in_subdir(dirname)
|
|
@@ -54,9 +54,10 @@ def RipXplore.create_new(filesystem)
|
|
|
54
54
|
blank_image_filename=case filesystem
|
|
55
55
|
when :AppleCPM
|
|
56
56
|
then File.dirname(__FILE__)+"/blank_images/applecpm_blank.dsk.gz"
|
|
57
|
-
|
|
58
57
|
when :AppleDos
|
|
59
58
|
then File.dirname(__FILE__)+"/blank_images/dos33_blank.dsk.gz"
|
|
59
|
+
when :BeautifulBoot
|
|
60
|
+
then File.dirname(__FILE__)+"/blank_images/beautiful_boot_blank.dsk.gz"
|
|
60
61
|
else
|
|
61
62
|
raise "initialisation of #{filesystem} file system not currently supported"
|
|
62
63
|
end
|
|
Binary file
|
metadata
CHANGED
|
@@ -3,7 +3,7 @@ rubygems_version: 0.9.4
|
|
|
3
3
|
specification_version: 1
|
|
4
4
|
name: ripxplore
|
|
5
5
|
version: !ruby/object:Gem::Version
|
|
6
|
-
version: 0.7.
|
|
6
|
+
version: 0.7.2
|
|
7
7
|
date: 2009-02-08 00:00:00 +11:00
|
|
8
8
|
summary: a command line tool + libraries for manipulating disk images as used by vintage computer emulators
|
|
9
9
|
require_paths:
|
|
@@ -950,6 +950,7 @@ files:
|
|
|
950
950
|
- doc/rdoc-style.css
|
|
951
951
|
- lib/blank_images
|
|
952
952
|
- lib/blank_images/applecpm_blank.dsk.gz
|
|
953
|
+
- lib/blank_images/beautiful_boot_blank.dsk.gz
|
|
953
954
|
- lib/blank_images/dos33_blank.dsk.gz
|
|
954
955
|
- lib/disassemblers
|
|
955
956
|
- lib/disassemblers/D65.rb
|