Skip to content

Commit 85ab35e

Browse files
committed
Add README; corrections in Rakefile, index.txt
1 parent bbe9185 commit 85ab35e

File tree

3 files changed

+20
-2
lines changed

3 files changed

+20
-2
lines changed

README.txt

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
h1 Ruby Hacking Guide English Translation
2+
3+
This project aims to translate the Ruby hacking guide by Minero Aoki.
4+
5+
h2 Making the HTML Pages
6+
7+
Create the HTML-Pages in the en/ subdirectory with rake.
8+
9+
$ cd ruby-hacking-guide
10+
$ cd en
11+
$ rake
12+
$ firefox index.html
13+
$ rake clean #remove the html-files
14+

en/Rakefile

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
require 'generate_html'
1+
load 'generate_html.rb'
22

33
SRC= FileList['*.txt']
44
HTML=SRC.ext( 'html')
@@ -24,3 +24,7 @@ PNG.zip( SVG).each{|png, svg|
2424
sh "#{INKSCAPE} -z --export-png=#{png} --export-dpi=#{DPI} --file=#{svg}"
2525
}
2626
}
27+
28+
task :clean do
29+
system("rm *.html")
30+
end

en/index.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ to post suggestions on the mailing list.
6666

6767
h3. Part 1: Objects
6868

69-
* Chapter 1: Ruby language minimum
69+
* "Chapter 1: Ruby language minimum":chapter01.html
7070
* "Chapter 2: Objects":chapter02.html
7171
* "Chapter 3: Names and name tables":chapter03.html
7272
* "Chapter 4: Classes and modules":chapter04.html

0 commit comments

Comments
 (0)