<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -1,17 +1,18 @@
-bin/simplesem
-test/test_helper.rb
-test/simplesem_test.rb
-sample_programs/case-statement.txt
-sample_programs/while-loop.txt
-sample_programs/gcd.txt
-sample_programs/hello-world.txt
-simplesem.gemspec
 LICENSE
+Manifest
+README.textile
 Rakefile
+bin/simplesem
 lib/simplesem.rb
-lib/simplesem/arithmetic_node_classes.rb
 lib/simplesem/arithmetic.treetop
+lib/simplesem/arithmetic_node_classes.rb
 lib/simplesem/simple_sem.treetop
 lib/simplesem/simplesem_program.rb
-README.textile
-Manifest
+lib/simplesem/version.rb
+lib/trollop/trollop.rb
+sample_programs/case-statement.txt
+sample_programs/gcd.txt
+sample_programs/hello-world.txt
+sample_programs/while-loop.txt
+test/simplesem_test.rb
+test/test_helper.rb</diff>
      <filename>Manifest</filename>
    </modified>
    <modified>
      <diff>@@ -24,9 +24,9 @@ h3. Command Line Options
 
 The simplesem executable accepts a couple optional command line options which will display the values in the Data array at the time the program exits.
 
-pre.  --help              Print help message
-  --inspect           Print values in the data array on exit
-  --inspect-history   Print values in the data array with change history on exit
+pre. --help              Print help message
+--inspect           Print values in the data array on exit
+--inspect-history   Print values in the data array with change history on exit
 
 Use @--inspect@ if you only want to see the ending value at each position in the Data array, otherwise use @--inspect-history@ to see each data location's history.
 
@@ -81,7 +81,7 @@ h3. Comments
 SIMPLESEM comments begin with two forward slashes. Everything on the line following @//@ is considered a comment and is ignored by the interpreter. *Important*: Comments still consume line numbers! Keep this in mind when writing jump statements.
 
 bc. // This is line number 0.
-    set write, &quot;foo&quot;  // a comment after a statement
+set write, &quot;foo&quot;  // a comment after a statement
 
 h2. Slightly More Advanced Features of SIMPLESEM
 
@@ -123,8 +123,7 @@ h3. A Sample SIMPLESEM Program
 
 The following SIMPLESEM program calculates the &quot;GCD&quot;:http://en.wikipedia.org/wiki/Greatest_common_divisor of two numbers. The program prompts the user to enter the two numbers when the program is executed. This program is also included in the @sample_programs@ folder.
 
-&lt;pre&gt;
-&lt;code&gt;
+&lt;pre&gt;&lt;code&gt;
 set 0, read               // first number 'n'
 set 1, read               // second number 'm'
 set 2, ip + 1             // return pointer for call to GCD
@@ -137,10 +136,11 @@ set 1, D[1]-D[0]
 jump 13
 set 0, D[0]-D[1]
 jump 8
-&lt;/code&gt;
-&lt;/pre&gt;
+&lt;/code&gt;&lt;/pre&gt;
 
-pre.. $ simplesem --inspect-history sample_programs/gcd.txt
+Running the above program on the command line will give the following output:
+&lt;pre&gt;
+$ simplesem --inspect-history sample_programs/gcd.txt
 input: 15
 input: 35
 5
@@ -149,4 +149,4 @@ DATA:
 0: [15, 10, 5]
 1: [35, 20, 5]
 2: [4]
-
+&lt;/pre&gt;</diff>
      <filename>README.textile</filename>
    </modified>
    <modified>
      <diff>@@ -1,7 +1,7 @@
 require 'rake'
 require 'echoe'
 
-Echoe.new('simplesem', '0.1.3') do |p|
+Echoe.new('simplesem', '0.1.4') do |p|
   p.summary = &quot;SIMPLESEM Interpreter&quot;
   p.description = &quot;Interpreter for parsing and executing SIMPLESEM programs&quot;
   p.url = &quot;http://github.com/robolson/simplesem&quot;</diff>
      <filename>Rakefile</filename>
    </modified>
    <modified>
      <diff>@@ -1,5 +1,5 @@
 module SimpleSem
   unless defined? SimpleSem::VERSION
-    VERSION = '0.1.3'
+    VERSION = '0.1.4'
   end
 end</diff>
      <filename>lib/simplesem/version.rb</filename>
    </modified>
    <modified>
      <diff>@@ -2,29 +2,28 @@
 
 Gem::Specification.new do |s|
   s.name = %q{simplesem}
-  s.version = &quot;0.1.3&quot;
+  s.version = &quot;0.1.4&quot;
 
   s.required_rubygems_version = Gem::Requirement.new(&quot;&gt;= 1.2&quot;) if s.respond_to? :required_rubygems_version=
   s.authors = [&quot;Rob Olson&quot;]
-  s.date = %q{2009-04-01}
+  s.date = %q{2009-09-27}
   s.default_executable = %q{simplesem}
-  s.description = %q{SIMPLESEM Interpreter}
-  s.email = %q{rko618@gmail.com}
+  s.description = %q{Interpreter for parsing and executing SIMPLESEM programs}
+  s.email = %q{rob@thinkingdigitally.com}
   s.executables = [&quot;simplesem&quot;]
-  s.extra_rdoc_files = [&quot;LICENSE&quot;, &quot;README.textile&quot;, &quot;bin/simplesem&quot;, &quot;lib/simplesem/arithmetic.treetop&quot;, &quot;lib/simplesem/arithmetic_node_classes.rb&quot;, &quot;lib/simplesem/simple_sem.treetop&quot;, &quot;lib/simplesem/simplesem_program.rb&quot;, &quot;lib/simplesem.rb&quot;]
-  s.files = [&quot;LICENSE&quot;, &quot;Manifest&quot;, &quot;README.textile&quot;, &quot;Rakefile&quot;, &quot;bin/simplesem&quot;, &quot;lib/simplesem/arithmetic.treetop&quot;, &quot;lib/simplesem/arithmetic_node_classes.rb&quot;, &quot;lib/simplesem/simple_sem.treetop&quot;, &quot;lib/simplesem/simplesem_program.rb&quot;, &quot;lib/simplesem.rb&quot;, &quot;sample_programs/case-statement.txt&quot;, &quot;sample_programs/gcd.txt&quot;, &quot;sample_programs/hello-world.txt&quot;, &quot;sample_programs/while-loop.txt&quot;, &quot;simplesem.gemspec&quot;, &quot;simplesem.tmproj&quot;, &quot;test/simplesem_test.rb&quot;, &quot;test/test_helper.rb&quot;]
-  s.has_rdoc = true
+  s.extra_rdoc_files = [&quot;LICENSE&quot;, &quot;README.textile&quot;, &quot;bin/simplesem&quot;, &quot;lib/simplesem.rb&quot;, &quot;lib/simplesem/arithmetic.treetop&quot;, &quot;lib/simplesem/arithmetic_node_classes.rb&quot;, &quot;lib/simplesem/simple_sem.treetop&quot;, &quot;lib/simplesem/simplesem_program.rb&quot;, &quot;lib/simplesem/version.rb&quot;, &quot;lib/trollop/trollop.rb&quot;]
+  s.files = [&quot;LICENSE&quot;, &quot;Manifest&quot;, &quot;README.textile&quot;, &quot;Rakefile&quot;, &quot;bin/simplesem&quot;, &quot;lib/simplesem.rb&quot;, &quot;lib/simplesem/arithmetic.treetop&quot;, &quot;lib/simplesem/arithmetic_node_classes.rb&quot;, &quot;lib/simplesem/simple_sem.treetop&quot;, &quot;lib/simplesem/simplesem_program.rb&quot;, &quot;lib/simplesem/version.rb&quot;, &quot;lib/trollop/trollop.rb&quot;, &quot;sample_programs/case-statement.txt&quot;, &quot;sample_programs/gcd.txt&quot;, &quot;sample_programs/hello-world.txt&quot;, &quot;sample_programs/while-loop.txt&quot;, &quot;simplesem.gemspec&quot;, &quot;test/simplesem_test.rb&quot;, &quot;test/test_helper.rb&quot;]
   s.homepage = %q{http://github.com/robolson/simplesem}
   s.rdoc_options = [&quot;--line-numbers&quot;, &quot;--inline-source&quot;, &quot;--title&quot;, &quot;Simplesem&quot;, &quot;--main&quot;, &quot;README.textile&quot;]
   s.require_paths = [&quot;lib&quot;]
   s.rubyforge_project = %q{simplesem}
-  s.rubygems_version = %q{1.3.1}
+  s.rubygems_version = %q{1.3.5}
   s.summary = %q{SIMPLESEM Interpreter}
-  s.test_files = [&quot;test/simplesem_test.rb&quot;, &quot;test/test_helper.rb&quot;]
+  s.test_files = [&quot;test/test_helper.rb&quot;, &quot;test/simplesem_test.rb&quot;]
 
   if s.respond_to? :specification_version then
     current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
-    s.specification_version = 2
+    s.specification_version = 3
 
     if Gem::Version.new(Gem::RubyGemsVersion) &gt;= Gem::Version.new('1.2.0') then
       s.add_runtime_dependency(%q&lt;treetop&gt;, [&quot;&gt;= 1.2.4&quot;])</diff>
      <filename>simplesem.gemspec</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>130b723df4e6410fad13139cb4b228887b857b61</id>
    </parent>
  </parents>
  <author>
    <name>Rob Olson</name>
    <email>rob@thinkingdigitally.com</email>
  </author>
  <url>http://github.com/robolson/simplesem/commit/39b51c9c108e16d54f49b0f0e7c376593d6475fd</url>
  <id>39b51c9c108e16d54f49b0f0e7c376593d6475fd</id>
  <committed-date>2009-09-27T00:13:24-07:00</committed-date>
  <authored-date>2009-09-27T00:13:24-07:00</authored-date>
  <message>Releasing version 0.1.4

Note: The command line arguments have changed in this release!</message>
  <tree>93481ccb4b0f325612e8e3f7c895bb80f7edcac0</tree>
  <committer>
    <name>Rob Olson</name>
    <email>rob@thinkingdigitally.com</email>
  </committer>
</commit>
