tuomas-knights_tour 0.3.0 → 0.3.1

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/CHANGELOG.rdoc CHANGED
@@ -1,3 +1,7 @@
1
+ === 0.3.1 released 2009-03-28
2
+
3
+ * Fixed usage documentation.
4
+
1
5
  === 0.3.0 released 2009-03-28
2
6
 
3
7
  * The software is available as a RubyGem from GitHub.
data/README.rdoc CHANGED
@@ -20,10 +20,9 @@ The software is compatible with Ruby 1.9.1.
20
20
 
21
21
  == Usage
22
22
 
23
- Change the working directory of your command line shell into the project's
24
- root directory and enter
23
+ Enter
25
24
 
26
- $ ./bin/knights_tour
25
+ $ knights_tour
27
26
 
28
27
  The command attempts to solve the problem on a board of size 8x8, the knight
29
28
  located initially at position 0,0 (the top-left corner). If the program
@@ -47,10 +46,10 @@ finds a solution, it displays a result similar to the following:
47
46
  | 52| 17| 20| 9| 56| 47| 22| 7|
48
47
  +---+---+---+---+---+---+---+---+
49
48
 
50
- The size of the board and the start position of the knight are configurable.
51
- For all the options, see
49
+ The size of the board and the start position of the knight are configurable,
50
+ however. For all the options, see
52
51
 
53
- $ ./bin/knights_tour -h
52
+ $ knights_tour -h
54
53
 
55
54
  == Contacting
56
55
 
data/lib/knights_tour.rb CHANGED
@@ -3,7 +3,7 @@ module KnightsTour
3
3
  module VERSION #:nodoc:
4
4
  MAJOR = 0
5
5
  MINOR = 3
6
- PATCH = 0
6
+ PATCH = 1
7
7
 
8
8
  def self.to_s
9
9
  [ MAJOR, MINOR, PATCH ].join(".")
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tuomas-knights_tour
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tuomas Kareinen