<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -39,6 +39,10 @@ sphinx_scenario[&quot;thinking_sphinx&quot;] = &quot;0.9.8&quot;&lt;/code&gt;&lt;/pre&gt;
 
 Don't forget to add them to @config@'s scenarios collection, else they're not saved anywhere.
 
+To better discern different defined scenarios you can create them with a name. The name will be output when the scenario runs as the title. 
+
+&lt;pre&gt;&lt;code&gt;sphinx_scenario = Ginger::Scenario.new('Thinking Sphinx 0.9.8')&lt;/code&gt;&lt;/pre&gt;
+
 And finally, you'll want to run the tests or specs for each scenario. This is done using the @ginger@ CLI tool, which parrots whatever parameters you give it onto @rake@. So just do something like:
 
 &lt;pre&gt;&lt;code&gt;ginger spec</diff>
      <filename>README.textile</filename>
    </modified>
    <modified>
      <diff>@@ -1,5 +1,11 @@
 module Ginger
   class Scenario &lt; Hash
+    attr_accessor :name
+
+    def initialize(name=nil)
+      @name = name
+    end
+
     def add(gem, version)
       self[gem] = version
     end
@@ -21,4 +27,4 @@ module Ginger
       self.keys
     end
   end
-end
\ No newline at end of file
+end</diff>
      <filename>lib/ginger/scenario.rb</filename>
    </modified>
    <modified>
      <diff>@@ -47,4 +47,11 @@ describe Ginger::Scenario do
     
     scenario.version(&quot;thinking_sphinx&quot;).should be_nil
   end
+
+  it &quot;should return name of scenario if defined&quot; do
+    scenario = Ginger::Scenario.new('Thinking Sphinx')
+    scenario.add &quot;riddle&quot;, &quot;0.9.8&quot;
+    
+    scenario.name.should == &quot;Thinking Sphinx&quot;
+  end
 end</diff>
      <filename>spec/ginger/scenario_spec.rb</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>e07968c4b49505be31371fe820a9aa8a8b891aa0</id>
    </parent>
  </parents>
  <author>
    <name>Adam Meehan</name>
    <email>adam.meehan@gmail.com</email>
  </author>
  <url>http://github.com/freelancing-god/ginger/commit/8280f395badc52a2310c3668e25e39e6344ffa06</url>
  <id>8280f395badc52a2310c3668e25e39e6344ffa06</id>
  <committed-date>2009-05-19T23:26:12-07:00</committed-date>
  <authored-date>2009-05-16T08:20:13-07:00</authored-date>
  <message>allow a name for a scenario which is output when as the scenario title</message>
  <tree>ed460fde03afb8255123f06d29579c1fb1f6aeb6</tree>
  <committer>
    <name>Pat Allan</name>
    <email>pat@freelancing-gods.com</email>
  </committer>
</commit>
