diff --git a/client/ruby/flare/README b/client/ruby/flare/README
index c86c82322eb..1d10f24b59f 100644
--- a/client/ruby/flare/README
+++ b/client/ruby/flare/README
@@ -1,26 +1,37 @@
== Welcome to Solr Flare
- http://wiki.apache.org/solr/Flare
+Flare promises to expose the power of Solr as a Ruby DSL (domain specific language). Integral to Flare will be a general purpose Rails-based presentation framework including faceted browsing, auto-suggest, folksonomy tagging/annotating, and much more.
+
+ Visit the Solr Flare wiki for more information: http://wiki.apache.org/solr/Flare
== Getting started
-For now a simple console example:
+Launch Solr:
+
+ cd solr
+ java -jar start.jar
+
+In a separate shell, launch script/console.
+
+Set up a connection to Solr:
+
+ connection = Solr::Connection.new("http://localhost:8983")
+
+To add a document:
+
+ doc = {:id => "529", :text => "Solr Flare in Action"}
+ request = Solr::AddDocumentRequest.new(doc)
+ connection.send(request)
+
+Commit changes:
+
+ request = Solr::UpdateRequest.new("") # TODO: yes, this will be mapped as a simpler command!
+ connection.send(request)
+
+Search:
+
+ request = Solr::StandardRequest.new
+ request.query = "solr flare"
+ connection.send(request)
+
- $ script/console
- >> doc = {:id => "529", :text => "Solr Flare in Action"}
- => {:title=>"Solr Flare in Action", :id=>"529"}
- >> request = Solr::AddDocumentRequest.new(doc)
- => #Solr Flare in Action529">
- >> connection = Solr::Connection.new("http://localhost:8983")
- >> connection.send(request)
- => #">
- >> request = Solr::UpdateRequest.new("") # TODO: yes, this will be mapped as a simpler command!
- => #">
- >> connection.send(request)
- => #">
- >> request = Solr::StandardRequest.new
- => #
- >> request.query = "solr flare"
- => "solr flare"
- >> connection.send(request)
- => #[{"id"=>"529"}], "start"=>0, "numFound"=>1}, @raw_response="{'responseHeader'=>{'status'=>0,'QTime'=>95,'params'=>{'q'=>'solr flare','wt'=>'ruby'}},'response'=>{'numFound'=>1,'start'=>0,'docs'=>[{'id'=>'529'}]}}", @header={"status"=>0, "QTime"=>95, "params"=>{"q"=>"solr flare", "wt"=>"ruby"}}>