<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Beginning Ruby on Rails E-commerce: From Novice to Professional (Apress)</title>
	<atom:link href="http://www.adaruby.com/2007/01/31/beginning-ruby-on-rails-e-commerce-from-novice-to-professional-apress/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.adaruby.com/2007/01/31/beginning-ruby-on-rails-e-commerce-from-novice-to-professional-apress/</link>
	<description>Rich Dynamic Applications with Ruby on Rails</description>
	<lastBuildDate>Fri, 02 Jul 2010 09:52:16 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
	<item>
		<title>By: Christina joseph</title>
		<link>http://www.adaruby.com/2007/01/31/beginning-ruby-on-rails-e-commerce-from-novice-to-professional-apress/comment-page-1/#comment-103</link>
		<dc:creator>Christina joseph</dc:creator>
		<pubDate>Wed, 08 Aug 2007 10:52:34 +0000</pubDate>
		<guid isPermaLink="false">http://adaruby.com/2007/01/31/beginning-ruby-on-rails-e-commerce-from-novice-to-professional-apress/#comment-103</guid>
		<description>The book dives right into the process of creating a production-level web application using agile methodologies and test-driven development combined with Rails best practices.</description>
		<content:encoded><![CDATA[<p>The book dives right into the process of creating a production-level web application using agile methodologies and test-driven development combined with Rails best practices.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Hendy Irawan</title>
		<link>http://www.adaruby.com/2007/01/31/beginning-ruby-on-rails-e-commerce-from-novice-to-professional-apress/comment-page-1/#comment-102</link>
		<dc:creator>Hendy Irawan</dc:creator>
		<pubDate>Thu, 26 Jul 2007 13:22:46 +0000</pubDate>
		<guid isPermaLink="false">http://adaruby.com/2007/01/31/beginning-ruby-on-rails-e-commerce-from-novice-to-professional-apress/#comment-102</guid>
		<description>Phillip:

Thank you very much for your additional review. I really appreciate it. :-)</description>
		<content:encoded><![CDATA[<p>Phillip:</p>
<p>Thank you very much for your additional review. I really appreciate it. <img src='http://www.adaruby.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Phillip Novess</title>
		<link>http://www.adaruby.com/2007/01/31/beginning-ruby-on-rails-e-commerce-from-novice-to-professional-apress/comment-page-1/#comment-101</link>
		<dc:creator>Phillip Novess</dc:creator>
		<pubDate>Tue, 24 Jul 2007 02:12:19 +0000</pubDate>
		<guid isPermaLink="false">http://adaruby.com/2007/01/31/beginning-ruby-on-rails-e-commerce-from-novice-to-professional-apress/#comment-101</guid>
		<description>I bought this book because it was one of the only books out there, actually the only book out there that had any info on payment processing using Rails. It was also the only source at the time for real application of ecommerce development using Rails. However, its old now. The plugins have all been updated, Rails has been updated and the actual implementation that is being discussed through much of the book is not as valuable because of that. In fact I could not get the sample code to work without major removal of some of the plugins.  The ActiveMerchant plugin was used for payment processing, the main reason I purchased the book, was majorly updated since this release and I actually had to change a large chunk of the processing code in order to get it to work. I actually had to use resources I found on the web to get ActiveMerchant to work correctly. Other downsides I found in the implementation was the shopping cart uses a DB, and then of course you have to keep this stuff cleaned up, so they use observers to do that. My question why? Just use a session for your cart like in the Agile book. Much simpler. If you really want that stuff in the DB, then use DB sessions. :) Also the checkout process is flawed in my opinion. When you checkout, the order gets created even if there is a problem with the the payment processing. One nice feature is it saves the error message to the order, which you  inevitably will need to remove all the crap orders or at least to report on them. So a user could checkout and it processes and creates an order but its not really valid.  Really really bad form!!!!!

That being said I would still recommend this book for exploration and learning how others are using Rails. But don&#039;t use this book as a blueprint cause its majorly flawed.

-phill</description>
		<content:encoded><![CDATA[<p>I bought this book because it was one of the only books out there, actually the only book out there that had any info on payment processing using Rails. It was also the only source at the time for real application of ecommerce development using Rails. However, its old now. The plugins have all been updated, Rails has been updated and the actual implementation that is being discussed through much of the book is not as valuable because of that. In fact I could not get the sample code to work without major removal of some of the plugins.  The ActiveMerchant plugin was used for payment processing, the main reason I purchased the book, was majorly updated since this release and I actually had to change a large chunk of the processing code in order to get it to work. I actually had to use resources I found on the web to get ActiveMerchant to work correctly. Other downsides I found in the implementation was the shopping cart uses a DB, and then of course you have to keep this stuff cleaned up, so they use observers to do that. My question why? Just use a session for your cart like in the Agile book. Much simpler. If you really want that stuff in the DB, then use DB sessions. <img src='http://www.adaruby.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  Also the checkout process is flawed in my opinion. When you checkout, the order gets created even if there is a problem with the the payment processing. One nice feature is it saves the error message to the order, which you  inevitably will need to remove all the crap orders or at least to report on them. So a user could checkout and it processes and creates an order but its not really valid.  Really really bad form!!!!!</p>
<p>That being said I would still recommend this book for exploration and learning how others are using Rails. But don&#8217;t use this book as a blueprint cause its majorly flawed.</p>
<p>-phill</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Hendy Irawan</title>
		<link>http://www.adaruby.com/2007/01/31/beginning-ruby-on-rails-e-commerce-from-novice-to-professional-apress/comment-page-1/#comment-98</link>
		<dc:creator>Hendy Irawan</dc:creator>
		<pubDate>Tue, 03 Apr 2007 09:47:53 +0000</pubDate>
		<guid isPermaLink="false">http://adaruby.com/2007/01/31/beginning-ruby-on-rails-e-commerce-from-novice-to-professional-apress/#comment-98</guid>
		<description>Thanks Mas Daniel,

Di sini kita juga pake Akismet koq. Kita dapet ribuan spam per minggu, jadi kalo ada lolos segitu, bisa dibilang &quot;kemajuan&quot;. ;-)

Biasanya spam tersebut juga akan otomatis hilang setelah beberapa waktu... :-)

Kalo nggak, ya terpaksa pakai &#039;tangan besi&#039;... ;-)</description>
		<content:encoded><![CDATA[<p>Thanks Mas Daniel,</p>
<p>Di sini kita juga pake Akismet koq. Kita dapet ribuan spam per minggu, jadi kalo ada lolos segitu, bisa dibilang &#8220;kemajuan&#8221;. <img src='http://www.adaruby.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p>Biasanya spam tersebut juga akan otomatis hilang setelah beberapa waktu&#8230; <img src='http://www.adaruby.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>Kalo nggak, ya terpaksa pakai &#8216;tangan besi&#8217;&#8230; <img src='http://www.adaruby.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Daniel Sirait</title>
		<link>http://www.adaruby.com/2007/01/31/beginning-ruby-on-rails-e-commerce-from-novice-to-professional-apress/comment-page-1/#comment-97</link>
		<dc:creator>Daniel Sirait</dc:creator>
		<pubDate>Mon, 02 Apr 2007 14:35:24 +0000</pubDate>
		<guid isPermaLink="false">http://adaruby.com/2007/01/31/beginning-ruby-on-rails-e-commerce-from-novice-to-professional-apress/#comment-97</guid>
		<description>itu comment diatas kena spam yah ???

pake Blosxom aja bung Hendy, download di:  http://www.blosxom.com/

ada plugin anti spam-nya, dijamin puas deh :-)</description>
		<content:encoded><![CDATA[<p>itu comment diatas kena spam yah ???</p>
<p>pake Blosxom aja bung Hendy, download di:  <a href="http://www.blosxom.com/" rel="nofollow">http://www.blosxom.com/</a></p>
<p>ada plugin anti spam-nya, dijamin puas deh <img src='http://www.adaruby.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Hendy Irawan</title>
		<link>http://www.adaruby.com/2007/01/31/beginning-ruby-on-rails-e-commerce-from-novice-to-professional-apress/comment-page-1/#comment-100</link>
		<dc:creator>Hendy Irawan</dc:creator>
		<pubDate>Thu, 08 Feb 2007 01:27:35 +0000</pubDate>
		<guid isPermaLink="false">http://adaruby.com/2007/01/31/beginning-ruby-on-rails-e-commerce-from-novice-to-professional-apress/#comment-100</guid>
		<description>Dear Ariel,

The book is definitely &quot;not small&quot;. It&#039;s quite big, the size of a dictionary, but with half the thickness. (what kind of measurement is this?!?!)

I&#039;m not sure if it&#039;s the kind of thing you &quot;get to read before sleep&quot; as it contains lots, and I mean lots, of code. It&#039;s far from being a theoretical book.

As for comparison with Agile Web Development with Rails (AWDWR), for beginners it&#039;s not so important. They both introduce you to Rails from almost no background on Ruby, but good technical/computer background is somewhat required.

AWDWR 2nd Edition describes Rails 1.2, which is the most recent version of Rails; while this book (RoR E-Commerce) still uses Rails 1.1. There is a change of some fine techniques but 90% is still the same.

The biggest difference is that AWDWR is very, very detailed; while RoR E-Commerce is very, very broad. AWDWR takes a lot of the &quot;build everything yourself&quot; approach, while RoR E-Commerce uses plugins and reusable components to the max. RoR E-Commerce also suggests use of many complementary software such as Capistrano, Subversion, Selenium, acts_as_* plugins, etc.

Conclusion is, both are great books. It won&#039;t hurt to have either of them, since none of these is lousy. You can always get more later. ;-)</description>
		<content:encoded><![CDATA[<p>Dear Ariel,</p>
<p>The book is definitely &#8220;not small&#8221;. It&#8217;s quite big, the size of a dictionary, but with half the thickness. (what kind of measurement is this?!?!)</p>
<p>I&#8217;m not sure if it&#8217;s the kind of thing you &#8220;get to read before sleep&#8221; as it contains lots, and I mean lots, of code. It&#8217;s far from being a theoretical book.</p>
<p>As for comparison with Agile Web Development with Rails (AWDWR), for beginners it&#8217;s not so important. They both introduce you to Rails from almost no background on Ruby, but good technical/computer background is somewhat required.</p>
<p>AWDWR 2nd Edition describes Rails 1.2, which is the most recent version of Rails; while this book (RoR E-Commerce) still uses Rails 1.1. There is a change of some fine techniques but 90% is still the same.</p>
<p>The biggest difference is that AWDWR is very, very detailed; while RoR E-Commerce is very, very broad. AWDWR takes a lot of the &#8220;build everything yourself&#8221; approach, while RoR E-Commerce uses plugins and reusable components to the max. RoR E-Commerce also suggests use of many complementary software such as Capistrano, Subversion, Selenium, acts_as_* plugins, etc.</p>
<p>Conclusion is, both are great books. It won&#8217;t hurt to have either of them, since none of these is lousy. You can always get more later. <img src='http://www.adaruby.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ariel Meilij</title>
		<link>http://www.adaruby.com/2007/01/31/beginning-ruby-on-rails-e-commerce-from-novice-to-professional-apress/comment-page-1/#comment-99</link>
		<dc:creator>Ariel Meilij</dc:creator>
		<pubDate>Wed, 07 Feb 2007 22:38:52 +0000</pubDate>
		<guid isPermaLink="false">http://adaruby.com/2007/01/31/beginning-ruby-on-rails-e-commerce-from-novice-to-professional-apress/#comment-99</guid>
		<description>Hey, nice review! Is it me, or the chapters look really long, not the kind of thing you get to read before going to sleep? It looks like just the book to buy, but I was wondering how does it compare to Agile Web Development (just curious...)</description>
		<content:encoded><![CDATA[<p>Hey, nice review! Is it me, or the chapters look really long, not the kind of thing you get to read before going to sleep? It looks like just the book to buy, but I was wondering how does it compare to Agile Web Development (just curious&#8230;)</p>
]]></content:encoded>
	</item>
</channel>
</rss>
