README in amrita2-2.0.1 vs README in amrita2-2.0.2

- old
+ new

@@ -1,10 +1,10 @@ = Amrita2 - a xml/xhtml template library for Ruby == Summary -Amrita2 is a a xml/xhtml template library for Ruby. +Amrita2 is a a xml/xhtml template library for Ruby. It makes html documents from a template and a model data. === Key feature specify "XML template" do @@ -20,11 +20,11 @@ </p> </body> </html> END - data = { + data = { :page_title=>'Amrita2', :header_title=>'Hello, Amrita2', :text=>{ :template => 'Amrita2', :lang => 'Ruby' @@ -35,11 +35,11 @@ <head> <title>Amrita2</title> </head> <body> <h1>Hello, Amrita2</h1> - <p class="text">Amrita2 is a html template library for Ruby</p> + <p class="text">Amrita2 is a html template library for Ruby</p> </body> </html> END # t.render_with(data).should_be_samexml_as(expected) @@ -75,11 +75,11 @@ Amrita2 mixes a template and model data up to a html document naturally matching the +id+ attribute of XML element to model data. === Current version and roadmap -Current version is 2.0.1 . +Current version is 2.0.2 . === Setup # gem install amrita2 @@ -100,10 +100,10 @@ Amrita2 is Copyright (c) 2008 Taku Nakajima <tnakajima@brain-tokyo.jp>. It is free software, and may be redistributed under the terms specified in the README file of the Ruby distribution. -Sample source code under sample/depot is Amrita2 version of +Sample source code under sample/depot is Amrita2 version of Depot Application of "Agile Web Development with Rails". http://www.pragprog.com/titles/rails2/source_code Sample source code under sample/login_engine is Amrita2 version of LoginEngine.