ripxplore 0.7.1 → 0.7.2

Sign up to get free protection for your applications and to get access to all the features.
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 : AppleDOS, AppleCPM
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
@@ -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">&quot;0.7.1&quot;</td>
102
+ <td class="context-item-value">&quot;0.7.2&quot;</td>
103
103
  </tr>
104
104
  </table>
105
105
  </div>
data/doc/created.rid CHANGED
@@ -1 +1 @@
1
- Sun, 08 Feb 2009 13:01:42 +1100
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 12:59:28 +1100 2009</td>
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] &lt;filename.dsk&gt;
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 : AppleDOS, AppleCPM
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
@@ -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 13:01:39 +1100 2009</td>
59
+ <td>Sun Feb 08 20:49:42 +1100 2009</td>
60
60
  </tr>
61
61
  </table>
62
62
  </div>
@@ -20,7 +20,6 @@
20
20
  <div id="index">
21
21
  <h1 class="section-bar">Classes</h1>
22
22
  <div id="index-entries">
23
- <a href="classes/RipXplore.html">RipXplore</a><br />
24
23
  </div>
25
24
  </div>
26
25
  </body>
@@ -20,7 +20,7 @@
20
20
  <div id="index">
21
21
  <h1 class="section-bar">Files</h1>
22
22
  <div id="index-entries">
23
- <a href="files/lib/LibRipXplore_rb.html">lib/LibRipXplore.rb</a><br />
23
+ <a href="files/bin/ripxplore_rb.html">bin/ripxplore.rb</a><br />
24
24
  </div>
25
25
  </div>
26
26
  </body>
@@ -20,6 +20,7 @@
20
20
  <div id="index">
21
21
  <h1 class="section-bar">Methods</h1>
22
22
  <div id="index-entries">
23
+ <a href="files/bin/ripxplore_rb.html#M000001">show_usage (bin/ripxplore.rb)</a><br />
23
24
  </div>
24
25
  </div>
25
26
  </body>
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/lib/LibRipXplore_rb.html" name="docwin" />
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.1"
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
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.1
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