rubylabs 0.9.0 → 0.9.1

Sign up to get free protection for your applications and to get access to all the features.
data/README.rdoc CHANGED
@@ -1,7 +1,7 @@
1
1
  == Description
2
2
 
3
- RubyLabs is a collection of modules used for tutorial exercises in the textbook
4
- <em>{Explorations in Computing: An Introduction to Computer Science}[http://www.cs.uoregon.edu]</em>.
3
+ RubyLabs is a collection of modules used for lab exercises in the textbook
4
+ <em>{Explorations in Computing: An Introduction to Computer Science}[http://www.cs.uoregon.edu/eic]</em>.
5
5
  There is one module for each chapter in the text:
6
6
 
7
7
  <b>IntroLab[link:classes/RubyLabs/IntroLab.html]</b>:: A quick introduction to Ruby, with an exercise leading to the definition of a method to convert temperatures from Fahrenheit to Celsius.
@@ -18,13 +18,22 @@ There is one module for each chapter in the text:
18
18
 
19
19
  The main *RubyLabs* module has some common methods (e.g. min and max) used throughout the book.
20
20
 
21
- == Installing
21
+ == Installation
22
22
 
23
- == Examples
23
+ Install the gem:
24
+ gem install rubylabs -n .
25
+
26
+ Run the setup script (RubyLabs will be included with each new IRB session):
27
+ ruby ./lab-setup.rb
28
+
29
+ Projects that generate interactive visualizations require ActiveState Tcl, which needs to be downloaded from http://www.activestate.com/activetcl/downloads (install it in the default location for your operating system).
24
30
 
25
31
  == Documentation
26
32
 
27
- A lab manual is available from http://ix.cs.uoregon.edu/~conery/eic.
33
+ Additional instructions for installing and trouble-shooting are in a lab manual available from http://www.cs.uoregon.edu/eic.
34
+
35
+ == Feedback
36
+
37
+ Send e-mail with the word RubyLabs in the subject line to conery (at) cs.uoregon.edu.
28
38
 
29
- == Questions
30
39
 
data/Rakefile CHANGED
@@ -60,5 +60,8 @@ Rake::RDocTask.new do |rdoc|
60
60
  rdoc.title = "rubylabs #{version}"
61
61
  rdoc.rdoc_files.include('README*')
62
62
  rdoc.rdoc_files.include('lib/**/*.rb')
63
+ # rdoc.rdoc_files.include('lib/rubylabs.rb')
64
+ # rdoc.rdoc_files.include('lib/bitlab.rb')
65
+ # rdoc.rdoc_files.include('lib/tsplab.rb')
63
66
  end
64
67
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.9.0
1
+ 0.9.1