amazon-ecs 2.2.1 → 2.2.2

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,94 @@
1
+ 2.2.2 2011-11-18
2
+ ----------------
3
+ * Add VERSION constant in Amazon::Ecs
4
+ * Update dependent gems version in Gemfile
5
+ * Add Gemfile as part of the gem content
6
+ * Update amazon-ecs.gemspec
7
+
8
+ 2.2.1 2011-10-25
9
+ ----------------
10
+ * Add Gemfile
11
+ * Rake, run test task by default
12
+ * Rename README to README.rdoc
13
+ * Upate README, add search index information
14
+
15
+ 2.2.0 2011-9-06
16
+ ----------------
17
+ * Upgrade to Product Advertising API version to 2011-08-01
18
+ * Fix IT service url and add support for CN URL
19
+ * Add unit test for all service urls
20
+
21
+ 2.1.1 2011-09-05
22
+ ----------------
23
+ * Fix wrong JP service url
24
+ * Add Ecs.browser_node_lookup method
25
+
26
+ 2.1.0 2011-08-18
27
+ ----------------
28
+ * Update service urls
29
+ * Raise error when aws_secret_key is not found
30
+
31
+ 2.0.0 2011-05-09
32
+ ----------------
33
+ * Replace Hpricot parser with Nokogiri
34
+ * Element/Attribute retrieval to match XPath, name not automatically downcased as in Hpricot
35
+
36
+ 1.2.2 2011-05-07
37
+ ----------------
38
+ * Add marshal_dump and marshal_load support
39
+
40
+ 1.2.1 2011-02-23
41
+ ----------------
42
+ * Add support for Amazon Italy
43
+
44
+ 1.2.0 2011-02-07
45
+ ----------------
46
+ * Remove test/ecs_signature_test.rb and test/test_helper.rb
47
+ * Fix multibyte search on Ruby 1.9 returns HTTP Response: 403 Forbidden
48
+
49
+ 1.1.0 2010-11-11
50
+ ----------------
51
+ * Add get_elements, get_element, and attributes instance methods in Amazon::Element
52
+ * Deprecate Amazon::Element#search_and_convert
53
+
54
+ 1.0.0 2010-11-09
55
+ ----------------
56
+ * Set default Amazon API version to 2010-10-01
57
+
58
+ 0.5.7 2009-08-28
59
+ ----------------
60
+ * Added support for to sign request using openssl with fallback on ruby-hmac
61
+
62
+ 0.5.6 2009-07-21
63
+ ----------------
64
+ * Update parameter value encoding to support special characters
65
+
66
+ 0.5.5 2009-07-18
67
+ ----------------
68
+ * Sign request
69
+
70
+ 0.5.4 2008-01-02
71
+ ----------------
72
+ * Add Response#error_code
73
+
74
+ 0.5.3 2007-09-12
75
+ ----------------
76
+ * send_request to use default options.
77
+
78
+ 0.5.2 2007-09-08
79
+ ----------------
80
+ * Fixed Amazon::Element.get_unescaped error when result returned for given element path is nil
81
+
82
+ 0.5.1 2007-02-08
83
+ ----------------
84
+ * Fixed Amazon Japan and France URL error
85
+ * Removed opts.delete(:search_index) from item_lookup, SearchIndex param is allowed
86
+ when looking for a book with IdType other than the ASIN.
87
+ * Check for defined? RAILS_DEFAULT_LOGGER to avoid exception for non-rails ruby app
88
+ * Added check for LOGGER constant if RAILS_DEFAULT_LOGGER is not defined
89
+ * Added Ecs.configure(&proc) method for easier configuration of default options
90
+ * Added Element#search_and_convert method
91
+
92
+ 0.5.0 2006-09-12
93
+ ----------------
94
+ Initial Release
data/Gemfile ADDED
@@ -0,0 +1,8 @@
1
+ source :rubygems
2
+
3
+ gem 'nokogiri', '~> 1.4'
4
+ gem 'ruby-hmac', '~> 0.3'
5
+
6
+ group :dev do
7
+ gem 'rake'
8
+ end
@@ -0,0 +1,21 @@
1
+ Copyright (c) 2011 Herryanto Siatono
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
21
+
@@ -0,0 +1,24 @@
1
+ require 'rake'
2
+ require 'rake/testtask'
3
+ require 'rake/rdoctask'
4
+ require 'rake/gempackagetask'
5
+ require 'rake/packagetask'
6
+
7
+ desc "Create the RDOC html files"
8
+ rd = Rake::RDocTask.new("rdoc") { |rdoc|
9
+ rdoc.rdoc_dir = 'doc'
10
+ rdoc.title = "amazon-ecs"
11
+ rdoc.options << '--line-numbers' << '--inline-source' << '--main' << 'Readme.rdoc'
12
+ rdoc.rdoc_files.include('Readme.rdoc', 'CHANGELOG')
13
+ rdoc.rdoc_files.include('lib/**/*.rb')
14
+ rdoc.rdoc_files.include('test/**/*.rb')
15
+ }
16
+
17
+ desc "Run the unit tests in test"
18
+ Rake::TestTask.new(:test) do |t|
19
+ t.libs << "test"
20
+ t.pattern = 'test/**/*_test.rb'
21
+ t.verbose = true
22
+ end
23
+
24
+ task :default => :test
@@ -0,0 +1,34 @@
1
+ # -*- encoding: utf-8 -*-
2
+ $:.push File.expand_path("../lib", __FILE__)
3
+ require 'amazon/ecs'
4
+
5
+ Gem::Specification.new do |gem|
6
+ gem.name = %q{amazon-ecs}
7
+ gem.version = Amazon::Ecs::VERSION
8
+ gem.platform = Gem::Platform::RUBY
9
+ gem.authors = ["Herryanto Siatono"]
10
+ gem.email = %q{herryanto@gmail.com}
11
+ gem.homepage = %q{https://github.com/jugend/amazon-ecs}
12
+ gem.summary = %q{Generic Amazon Product Advertising Ruby API.}
13
+ gem.description = %q{Generic Amazon Product Advertising Ruby API.}
14
+
15
+ gem.files = `git ls-files`.split("\n")
16
+ gem.test_files = `git ls-files -- test/*`.split("\n")
17
+ gem.require_paths = ["lib"]
18
+
19
+ if gem.respond_to? :specification_version then
20
+ current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
21
+ gem.specification_version = 2
22
+
23
+ if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
24
+ gem.add_runtime_dependency("nokogiri", "~> 1.4")
25
+ gem.add_runtime_dependency("ruby-hmac", "~> 0.3")
26
+ else
27
+ gem.add_dependency("nokogiri", "~> 1.4")
28
+ gem.add_dependency("ruby-hmac", "~> 0.3")
29
+ end
30
+ else
31
+ gem.add_dependency("nokogiri", "~> 1.4")
32
+ gem.add_dependency("ruby-hmac", "~> 0.3")
33
+ end
34
+ end
@@ -32,6 +32,8 @@ module Amazon
32
32
  class RequestError < StandardError; end
33
33
 
34
34
  class Ecs
35
+ VERSION = '2.2.2'
36
+
35
37
  SERVICE_URLS = {
36
38
  :us => 'http://ecs.amazonaws.com/onca/xml',
37
39
  :uk => 'http://ecs.amazonaws.co.uk/onca/xml',
@@ -0,0 +1 @@
1
+ <?xml version="1.0" ?><ItemSearchResponse xmlns="http://webservices.amazon.com/AWSECommerceService/2010-10-01"><OperationRequest><RequestId>5ef1e7f4-274c-4b86-a980-95a704aaf536</RequestId><Arguments><Argument Name="Operation" Value="ItemSearch"></Argument><Argument Name="Service" Value="AWSECommerceService"></Argument><Argument Name="Signature" Value="Ir2xoTqlqoe6SVkIEbsNxHtXCGqwoUhGioxVBzJGyc4="></Argument><Argument Name="Version" Value="2010-10-01"></Argument><Argument Name="Keywords" Value="ruby"></Argument><Argument Name="AWSAccessKeyId" Value="0XQXXC6YV2C85DX1BF02"></Argument><Argument Name="Timestamp" Value="2011-05-09T07:46:31Z"></Argument><Argument Name="ResponseGroup" Value="Large"></Argument><Argument Name="SearchIndex" Value="Books"></Argument></Arguments><RequestProcessingTime>0.6303750000000000</RequestProcessingTime></OperationRequest><Items><Request><IsValid>True</IsValid><ItemSearchRequest><Condition>New</Condition><DeliveryMethod>Ship</DeliveryMethod><Keywords>ruby</Keywords><MerchantId>Amazon</MerchantId><ResponseGroup>Large</ResponseGroup><ReviewSort>-SubmissionDate</ReviewSort><SearchIndex>Books</SearchIndex></ItemSearchRequest></Request><TotalResults>10357</TotalResults><TotalPages>1036</TotalPages><Item><ASIN>0596516177</ASIN><DetailPageURL>http://www.amazon.com/Ruby-Programming-Language-David-Flanagan/dp/0596516177%3FSubscriptionId%3D0XQXXC6YV2C85DX1BF02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3D0596516177</DetailPageURL><ItemLinks><ItemLink><Description>Technical Details</Description><URL>http://www.amazon.com/Ruby-Programming-Language-David-Flanagan/dp/tech-data/0596516177%3FSubscriptionId%3D0XQXXC6YV2C85DX1BF02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0596516177</URL></ItemLink><ItemLink><Description>Add To Baby Registry</Description><URL>http://www.amazon.com/gp/registry/baby/add-item.html%3Fasin.0%3D0596516177%26SubscriptionId%3D0XQXXC6YV2C85DX1BF02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0596516177</URL></ItemLink><ItemLink><Description>Add To Wedding Registry</Description><URL>http://www.amazon.com/gp/registry/wedding/add-item.html%3Fasin.0%3D0596516177%26SubscriptionId%3D0XQXXC6YV2C85DX1BF02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0596516177</URL></ItemLink><ItemLink><Description>Add To Wishlist</Description><URL>http://www.amazon.com/gp/registry/wishlist/add-item.html%3Fasin.0%3D0596516177%26SubscriptionId%3D0XQXXC6YV2C85DX1BF02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0596516177</URL></ItemLink><ItemLink><Description>Tell A Friend</Description><URL>http://www.amazon.com/gp/pdp/taf/0596516177%3FSubscriptionId%3D0XQXXC6YV2C85DX1BF02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0596516177</URL></ItemLink><ItemLink><Description>All Customer Reviews</Description><URL>http://www.amazon.com/review/product/0596516177%3FSubscriptionId%3D0XQXXC6YV2C85DX1BF02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0596516177</URL></ItemLink><ItemLink><Description>All Offers</Description><URL>http://www.amazon.com/gp/offer-listing/0596516177%3FSubscriptionId%3D0XQXXC6YV2C85DX1BF02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0596516177</URL></ItemLink></ItemLinks><SalesRank>6302</SalesRank><SmallImage><URL>http://ecx.images-amazon.com/images/I/415NS3cmtrL._SL75_.jpg</URL><Height Units="pixels">75</Height><Width Units="pixels">57</Width></SmallImage><MediumImage><URL>http://ecx.images-amazon.com/images/I/415NS3cmtrL._SL160_.jpg</URL><Height Units="pixels">160</Height><Width Units="pixels">122</Width></MediumImage><LargeImage><URL>http://ecx.images-amazon.com/images/I/415NS3cmtrL.jpg</URL><Height Units="pixels">420</Height><Width Units="pixels">320</Width></LargeImage><ImageSets><ImageSet Category="primary"><SwatchImage><URL>http://ecx.images-amazon.com/images/I/415NS3cmtrL._SL30_.jpg</URL><Height Units="pixels">30</Height><Width Units="pixels">23</Width></SwatchImage><SmallImage><URL>http://ecx.images-amazon.com/images/I/415NS3cmtrL._SL75_.jpg</URL><Height Units="pixels">75</Height><Width Units="pixels">57</Width></SmallImage><ThumbnailImage><URL>http://ecx.images-amazon.com/images/I/415NS3cmtrL._SL75_.jpg</URL><Height Units="pixels">75</Height><Width Units="pixels">57</Width></ThumbnailImage><TinyImage><URL>http://ecx.images-amazon.com/images/I/415NS3cmtrL._SL110_.jpg</URL><Height Units="pixels">110</Height><Width Units="pixels">84</Width></TinyImage><MediumImage><URL>http://ecx.images-amazon.com/images/I/415NS3cmtrL._SL160_.jpg</URL><Height Units="pixels">160</Height><Width Units="pixels">122</Width></MediumImage><LargeImage><URL>http://ecx.images-amazon.com/images/I/415NS3cmtrL.jpg</URL><Height Units="pixels">420</Height><Width Units="pixels">320</Width></LargeImage></ImageSet></ImageSets><ItemAttributes><Author>David Flanagan</Author><Author>Yukihiro Matsumoto</Author><Binding>Paperback</Binding><DeweyDecimalNumber>005.117</DeweyDecimalNumber><EAN>9780596516178</EAN><EANList><EANListElement>9780596516178</EANListElement></EANList><Edition>1</Edition><Feature>ISBN13: 9780596516178</Feature><Feature>Condition: USED - Good</Feature><Feature>Notes: BUY WITH CONFIDENCE, Over one million books sold! 98% Positive feedback. Compare our books, prices and service to the competition. 100% Satisfaction Guaranteed</Feature><ISBN>9780596516178</ISBN><IsEligibleForTradeIn>1</IsEligibleForTradeIn><ItemDimensions><Height Units="hundredths-inches">105</Height><Length Units="hundredths-inches">912</Length><Weight Units="hundredths-pounds">151</Weight><Width Units="hundredths-inches">706</Width></ItemDimensions><Label>O'Reilly Media</Label><Languages><Language><Name>English</Name><Type>Unknown</Type></Language><Language><Name>English</Name><Type>Original Language</Type></Language><Language><Name>English</Name><Type>Published</Type></Language></Languages><ListPrice><Amount>3999</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$39.99</FormattedPrice></ListPrice><Manufacturer>O'Reilly Media</Manufacturer><NumberOfItems>1</NumberOfItems><NumberOfPages>448</NumberOfPages><PackageDimensions><Height Units="hundredths-inches">100</Height><Length Units="hundredths-inches">910</Length><Weight Units="hundredths-pounds">135</Weight><Width Units="hundredths-inches">700</Width></PackageDimensions><ProductGroup>Book</ProductGroup><ProductTypeName>ABIS_BOOK</ProductTypeName><PublicationDate>2008-02-01</PublicationDate><Publisher>O'Reilly Media</Publisher><Studio>O'Reilly Media</Studio><Title>The Ruby Programming Language</Title><TradeInValue><Amount>600</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$6.00</FormattedPrice></TradeInValue></ItemAttributes><OfferSummary><LowestNewPrice><Amount>2000</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$20.00</FormattedPrice></LowestNewPrice><LowestUsedPrice><Amount>1594</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$15.94</FormattedPrice></LowestUsedPrice><TotalNew>38</TotalNew><TotalUsed>28</TotalUsed><TotalCollectible>0</TotalCollectible><TotalRefurbished>0</TotalRefurbished></OfferSummary><Offers><TotalOffers>1</TotalOffers><TotalOfferPages>1</TotalOfferPages><Offer><Merchant><MerchantId>ATVPDKIKX0DER</MerchantId><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=ATVPDKIKX0DER</GlancePage><AverageFeedbackRating>0.0</AverageFeedbackRating><TotalFeedback>0</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition></OfferAttributes><OfferListing><OfferListingId>r7wwZHd57aTd1Qs26u%2FcgQD7DTzN5FsSKdS8fb7fIwzmc2bdwZdERo3qNu4n9BGqR7ldI9yO0T8yWNcPrjogAHiG8Nx0%2B30O6XtHXC63LWg%3D</OfferListingId><Price><Amount>2383</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$23.83</FormattedPrice></Price><AmountSaved><Amount>1616</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$16.16</FormattedPrice></AmountSaved><PercentageSaved>40</PercentageSaved><Availability>Usually ships in 24 hours</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>0</MinimumHours><MaximumHours>0</MaximumHours></AvailabilityAttributes><Quantity>-1</Quantity><IsEligibleForSuperSaverShipping>1</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>1</IsFulfilledByAmazon></OfferListing></Offer></Offers><CustomerReviews><IFrameURL>http://www.amazon.com/reviews/iframe?akid=0XQXXC6YV2C85DX1BF02&amp;alinkCode=xm2&amp;asin=0596516177&amp;atag=ws&amp;exp=2011-05-10T07%3A46%3A32Z&amp;v=2&amp;sig=hKwBoJGoH2UC8a8ydSGh95zJFb3azl91qNBId0V0YZU%3D</IFrameURL></CustomerReviews><EditorialReviews><EditorialReview><Source>Product Description</Source><Content>&lt;DIV&gt;&lt;p&gt;&lt;I&gt;The Ruby Programming Language&lt;/I&gt; is &lt;I&gt;the&lt;/I&gt; authoritative guide to Ruby and provides comprehensive coverage of versions 1.8 and 1.9 of the language. It was written (and illustrated!) by an all-star team:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;David Flanagan, bestselling author of programming language "bibles" (including &lt;I&gt;JavaScript: The Definitive Guide&lt;/I&gt; and &lt;I&gt;Java in a Nutshell&lt;/I&gt;) and committer to the Ruby Subversion repository.&lt;/li&gt;&lt;br/&gt;&lt;br/&gt;&lt;li&gt;Yukihiro "Matz" Matsumoto, creator, designer and lead developer of Ruby and author of &lt;I&gt;Ruby in a Nutshell&lt;/I&gt;, which has been expanded and revised to become this book.&lt;/li&gt;&lt;br/&gt;&lt;br/&gt;&lt;li&gt;why the lucky stiff, artist and Ruby programmer extraordinaire.&lt;/li&gt; &lt;/ul&gt; This book begins with a quick-start tutorial to the language, and then explains the language in detail from the bottom up: from lexical and syntactic structure to datatypes to expressions and statements and on through methods, blocks, lambdas, closures, classes and modules.&lt;br&gt;&lt;br&gt; The book also includes a long and thorough introduction to the rich API of the Ruby platform, demonstrating -- with heavily-commented example code -- Ruby's facilities for text processing, numeric manipulation, collections, input/output, networking, and concurrency. An entire chapter is devoted to Ruby's metaprogramming capabilities.&lt;br&gt;&lt;br&gt;&lt;I&gt;The Ruby Programming Language&lt;/I&gt; documents the Ruby language definitively but without the formality of a language specification. It is written for experienced programmers who are new to Ruby, and for current Ruby programmers who want to challenge their understanding and increase their mastery of the language.&lt;br&gt;&lt;br&gt;&lt;/div&gt;</Content><IsLinkSuppressed>0</IsLinkSuppressed></EditorialReview></EditorialReviews><SimilarProducts><SimilarProduct><ASIN>0321743121</ASIN><Title>Ruby on Rails 3 Tutorial: Learn Rails by Example (Addison-Wesley Professional Ruby Series)</Title></SimilarProduct><SimilarProduct><ASIN>0596523696</ASIN><Title>Ruby Cookbook (Cookbooks (O'Reilly))</Title></SimilarProduct><SimilarProduct><ASIN>1934356085</ASIN><Title>Programming Ruby 1.9: The Pragmatic Programmers' Guide (Facets of Ruby)</Title></SimilarProduct><SimilarProduct><ASIN>1934356549</ASIN><Title>Agile Web Development with Rails (Pragmatic Programmers)</Title></SimilarProduct><SimilarProduct><ASIN>0321601661</ASIN><Title>Rails 3 Way, The (2nd Edition) (Addison-Wesley Professional Ruby Series)</Title></SimilarProduct></SimilarProducts><BrowseNodes><BrowseNode><BrowseNodeId>3952</BrowseNodeId><Name>Languages &amp; Tools</Name><Children><BrowseNode><BrowseNodeId>379359011</BrowseNodeId><Name>Ajax</Name></BrowseNode><BrowseNode><BrowseNodeId>3954</BrowseNodeId><Name>Assembly Language Programming</Name></BrowseNode><BrowseNode><BrowseNodeId>3955</BrowseNodeId><Name>Borland Delphi</Name></BrowseNode><BrowseNode><BrowseNodeId>697342</BrowseNodeId><Name>C#</Name></BrowseNode><BrowseNode><BrowseNodeId>379357011</BrowseNodeId><Name>CSS</Name></BrowseNode><BrowseNode><BrowseNodeId>3970</BrowseNodeId><Name>Compiler Design</Name></BrowseNode><BrowseNode><BrowseNodeId>3971</BrowseNodeId><Name>Compilers</Name></BrowseNode><BrowseNode><BrowseNodeId>3977</BrowseNodeId><Name>Fortran</Name></BrowseNode><BrowseNode><BrowseNodeId>3981</BrowseNodeId><Name>Lisp</Name></BrowseNode><BrowseNode><BrowseNodeId>3987</BrowseNodeId><Name>Prolog</Name></BrowseNode><BrowseNode><BrowseNodeId>285856</BrowseNodeId><Name>Python</Name></BrowseNode><BrowseNode><BrowseNodeId>3996</BrowseNodeId><Name>Visual Basic</Name></BrowseNode><BrowseNode><BrowseNodeId>285859</BrowseNodeId><Name>XHTML</Name></BrowseNode><BrowseNode><BrowseNodeId>4052</BrowseNodeId><Name>XML</Name></BrowseNode></Children><Ancestors><BrowseNode><BrowseNodeId>3839</BrowseNodeId><Name>Programming</Name><Ancestors><BrowseNode><BrowseNodeId>5</BrowseNodeId><Name>Computers &amp; Internet</Name><Ancestors><BrowseNode><BrowseNodeId>1000</BrowseNodeId><Name>Subjects</Name><IsCategoryRoot>1</IsCategoryRoot><Ancestors><BrowseNode><BrowseNodeId>283155</BrowseNodeId><Name>Books</Name></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode><BrowseNode><BrowseNodeId>4013</BrowseNodeId><Name>Object-Oriented Design</Name><Ancestors><BrowseNode><BrowseNodeId>4011</BrowseNodeId><Name>Software Design, Testing &amp; Engineering</Name><Ancestors><BrowseNode><BrowseNodeId>3839</BrowseNodeId><Name>Programming</Name><Ancestors><BrowseNode><BrowseNodeId>5</BrowseNodeId><Name>Computers &amp; Internet</Name><Ancestors><BrowseNode><BrowseNodeId>1000</BrowseNodeId><Name>Subjects</Name><IsCategoryRoot>1</IsCategoryRoot><Ancestors><BrowseNode><BrowseNodeId>283155</BrowseNodeId><Name>Books</Name></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode><BrowseNode><BrowseNodeId>4016</BrowseNodeId><Name>Software Development</Name><Ancestors><BrowseNode><BrowseNodeId>4011</BrowseNodeId><Name>Software Design, Testing &amp; Engineering</Name><Ancestors><BrowseNode><BrowseNodeId>3839</BrowseNodeId><Name>Programming</Name><Ancestors><BrowseNode><BrowseNodeId>5</BrowseNodeId><Name>Computers &amp; Internet</Name><Ancestors><BrowseNode><BrowseNodeId>1000</BrowseNodeId><Name>Subjects</Name><IsCategoryRoot>1</IsCategoryRoot><Ancestors><BrowseNode><BrowseNodeId>283155</BrowseNodeId><Name>Books</Name></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode><BrowseNode><BrowseNodeId>4053</BrowseNodeId><Name>Software</Name><Ancestors><BrowseNode><BrowseNodeId>5</BrowseNodeId><Name>Computers &amp; Internet</Name><Ancestors><BrowseNode><BrowseNodeId>1000</BrowseNodeId><Name>Subjects</Name><IsCategoryRoot>1</IsCategoryRoot><Ancestors><BrowseNode><BrowseNodeId>283155</BrowseNodeId><Name>Books</Name></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode><BrowseNode><BrowseNodeId>491314</BrowseNodeId><Name>Programming Languages</Name><Ancestors><BrowseNode><BrowseNodeId>468204</BrowseNodeId><Name>Computer Science</Name><Ancestors><BrowseNode><BrowseNodeId>465600</BrowseNodeId><Name>New &amp; Used Textbooks</Name><Ancestors><BrowseNode><BrowseNodeId>2349030011</BrowseNodeId><Name>Specialty Boutique</Name><Ancestors><BrowseNode><BrowseNodeId>283155</BrowseNodeId><Name>Books</Name></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode><BrowseNode><BrowseNodeId>491316</BrowseNodeId><Name>Software Design &amp; Engineering</Name><Ancestors><BrowseNode><BrowseNodeId>468204</BrowseNodeId><Name>Computer Science</Name><Ancestors><BrowseNode><BrowseNodeId>465600</BrowseNodeId><Name>New &amp; Used Textbooks</Name><Ancestors><BrowseNode><BrowseNodeId>2349030011</BrowseNodeId><Name>Specialty Boutique</Name><Ancestors><BrowseNode><BrowseNodeId>283155</BrowseNodeId><Name>Books</Name></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></BrowseNodes></Item><Item><ASIN>1430223634</ASIN><DetailPageURL>http://www.amazon.com/Beginning-Ruby-Novice-Professional-Experts/dp/1430223634%3FSubscriptionId%3D0XQXXC6YV2C85DX1BF02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3D1430223634</DetailPageURL><ItemLinks><ItemLink><Description>Technical Details</Description><URL>http://www.amazon.com/Beginning-Ruby-Novice-Professional-Experts/dp/tech-data/1430223634%3FSubscriptionId%3D0XQXXC6YV2C85DX1BF02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D1430223634</URL></ItemLink><ItemLink><Description>Add To Baby Registry</Description><URL>http://www.amazon.com/gp/registry/baby/add-item.html%3Fasin.0%3D1430223634%26SubscriptionId%3D0XQXXC6YV2C85DX1BF02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D1430223634</URL></ItemLink><ItemLink><Description>Add To Wedding Registry</Description><URL>http://www.amazon.com/gp/registry/wedding/add-item.html%3Fasin.0%3D1430223634%26SubscriptionId%3D0XQXXC6YV2C85DX1BF02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D1430223634</URL></ItemLink><ItemLink><Description>Add To Wishlist</Description><URL>http://www.amazon.com/gp/registry/wishlist/add-item.html%3Fasin.0%3D1430223634%26SubscriptionId%3D0XQXXC6YV2C85DX1BF02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D1430223634</URL></ItemLink><ItemLink><Description>Tell A Friend</Description><URL>http://www.amazon.com/gp/pdp/taf/1430223634%3FSubscriptionId%3D0XQXXC6YV2C85DX1BF02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D1430223634</URL></ItemLink><ItemLink><Description>All Customer Reviews</Description><URL>http://www.amazon.com/review/product/1430223634%3FSubscriptionId%3D0XQXXC6YV2C85DX1BF02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D1430223634</URL></ItemLink><ItemLink><Description>All Offers</Description><URL>http://www.amazon.com/gp/offer-listing/1430223634%3FSubscriptionId%3D0XQXXC6YV2C85DX1BF02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D1430223634</URL></ItemLink></ItemLinks><SalesRank>57578</SalesRank><SmallImage><URL>http://ecx.images-amazon.com/images/I/512242IrWmL._SL75_.jpg</URL><Height Units="pixels">75</Height><Width Units="pixels">57</Width></SmallImage><MediumImage><URL>http://ecx.images-amazon.com/images/I/512242IrWmL._SL160_.jpg</URL><Height Units="pixels">160</Height><Width Units="pixels">121</Width></MediumImage><LargeImage><URL>http://ecx.images-amazon.com/images/I/512242IrWmL.jpg</URL><Height Units="pixels">500</Height><Width Units="pixels">378</Width></LargeImage><ImageSets><ImageSet Category="primary"><SwatchImage><URL>http://ecx.images-amazon.com/images/I/512242IrWmL._SL30_.jpg</URL><Height Units="pixels">30</Height><Width Units="pixels">23</Width></SwatchImage><SmallImage><URL>http://ecx.images-amazon.com/images/I/512242IrWmL._SL75_.jpg</URL><Height Units="pixels">75</Height><Width Units="pixels">57</Width></SmallImage><ThumbnailImage><URL>http://ecx.images-amazon.com/images/I/512242IrWmL._SL75_.jpg</URL><Height Units="pixels">75</Height><Width Units="pixels">57</Width></ThumbnailImage><TinyImage><URL>http://ecx.images-amazon.com/images/I/512242IrWmL._SL110_.jpg</URL><Height Units="pixels">110</Height><Width Units="pixels">83</Width></TinyImage><MediumImage><URL>http://ecx.images-amazon.com/images/I/512242IrWmL._SL160_.jpg</URL><Height Units="pixels">160</Height><Width Units="pixels">121</Width></MediumImage><LargeImage><URL>http://ecx.images-amazon.com/images/I/512242IrWmL.jpg</URL><Height Units="pixels">500</Height><Width Units="pixels">378</Width></LargeImage></ImageSet></ImageSets><ItemAttributes><Author>Peter Cooper</Author><Binding>Paperback</Binding><DeweyDecimalNumber>005.117</DeweyDecimalNumber><EAN>9781430223634</EAN><EANList><EANListElement>9781430223634</EANListElement></EANList><Edition>2</Edition><Feature>ISBN13: 9781430223634</Feature><Feature>Condition: New</Feature><Feature>Notes: BRAND NEW FROM PUBLISHER! BUY WITH CONFIDENCE, Over one million books sold! 98% Positive feedback. Compare our books, prices and service to the competition. 100% Satisfaction Guaranteed</Feature><ISBN>9781430223634</ISBN><IsEligibleForTradeIn>1</IsEligibleForTradeIn><Label>Apress</Label><Languages><Language><Name>English</Name><Type>Unknown</Type></Language><Language><Name>English</Name><Type>Original Language</Type></Language><Language><Name>English</Name><Type>Published</Type></Language></Languages><ListPrice><Amount>3999</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$39.99</FormattedPrice></ListPrice><Manufacturer>Apress</Manufacturer><NumberOfItems>1</NumberOfItems><NumberOfPages>656</NumberOfPages><PackageDimensions><Height Units="hundredths-inches">130</Height><Length Units="hundredths-inches">920</Length><Weight Units="hundredths-pounds">195</Weight><Width Units="hundredths-inches">700</Width></PackageDimensions><ProductGroup>Book</ProductGroup><ProductTypeName>ABIS_BOOK</ProductTypeName><PublicationDate>2009-07-21</PublicationDate><Publisher>Apress</Publisher><Studio>Apress</Studio><Title>Beginning Ruby: From Novice to Professional (Expert's Voice in Open Source)</Title><TradeInValue><Amount>350</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$3.50</FormattedPrice></TradeInValue></ItemAttributes><OfferSummary><LowestNewPrice><Amount>999</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$9.99</FormattedPrice></LowestNewPrice><LowestUsedPrice><Amount>964</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$9.64</FormattedPrice></LowestUsedPrice><TotalNew>26</TotalNew><TotalUsed>23</TotalUsed><TotalCollectible>0</TotalCollectible><TotalRefurbished>0</TotalRefurbished></OfferSummary><Offers><TotalOffers>1</TotalOffers><TotalOfferPages>1</TotalOfferPages><Offer><Merchant><MerchantId>ATVPDKIKX0DER</MerchantId><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=ATVPDKIKX0DER</GlancePage><AverageFeedbackRating>0.0</AverageFeedbackRating><TotalFeedback>0</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition></OfferAttributes><OfferListing><OfferListingId>LWfQ7KPJRcLZti1Fp0sAXEFJdHx9xc8oJ8%2BNACa%2BxyXOH7cPJrfcEUP%2BuoP17e%2BlFb%2Bw7VRuSeH0Jg40xfe6MWWk6wupPbyFUeGPjIT9aCo%3D</OfferListingId><Price><Amount>2639</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$26.39</FormattedPrice></Price><AmountSaved><Amount>1360</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$13.60</FormattedPrice></AmountSaved><PercentageSaved>34</PercentageSaved><Availability>Usually ships in 24 hours</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>24</MaximumHours></AvailabilityAttributes><Quantity>-1</Quantity><IsEligibleForSuperSaverShipping>1</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>1</IsFulfilledByAmazon></OfferListing></Offer></Offers><CustomerReviews><IFrameURL>http://www.amazon.com/reviews/iframe?akid=0XQXXC6YV2C85DX1BF02&amp;alinkCode=xm2&amp;asin=1430223634&amp;atag=ws&amp;exp=2011-05-10T07%3A46%3A32Z&amp;v=2&amp;sig=tenyUax5P7cRPRo%2BjzkCcqMMIYSVw%2BO9jA3wvnNxas0%3D</IFrameURL></CustomerReviews><EditorialReviews><EditorialReview><Source>Product Description</Source><Content>&lt;P&gt;Ruby is evolving past being the base language for Rails. Ruby and Ruby-based domain specific languages are becoming more widely used in cloud computing, GUI development, and system administration. The new edition of this book provides the same excellent introduction to Ruby as the first edition plus updates for the newest version of Ruby, including the addition of the Merb framework and a chapter on GUI development so developers can take advantage of these new trends.&lt;/P&gt;</Content><IsLinkSuppressed>0</IsLinkSuppressed></EditorialReview></EditorialReviews><SimilarProducts><SimilarProduct><ASIN>0596516177</ASIN><Title>The Ruby Programming Language</Title></SimilarProduct><SimilarProduct><ASIN>1430224339</ASIN><Title>Beginning Rails 3 (Expert's Voice in Web Development)</Title></SimilarProduct><SimilarProduct><ASIN>0321743121</ASIN><Title>Ruby on Rails 3 Tutorial: Learn Rails by Example (Addison-Wesley Professional Ruby Series)</Title></SimilarProduct><SimilarProduct><ASIN>1934356085</ASIN><Title>Programming Ruby 1.9: The Pragmatic Programmers' Guide (Facets of Ruby)</Title></SimilarProduct><SimilarProduct><ASIN>1934356549</ASIN><Title>Agile Web Development with Rails (Pragmatic Programmers)</Title></SimilarProduct></SimilarProducts><BrowseNodes><BrowseNode><BrowseNodeId>3952</BrowseNodeId><Name>Languages &amp; Tools</Name><Children><BrowseNode><BrowseNodeId>379359011</BrowseNodeId><Name>Ajax</Name></BrowseNode><BrowseNode><BrowseNodeId>3954</BrowseNodeId><Name>Assembly Language Programming</Name></BrowseNode><BrowseNode><BrowseNodeId>3955</BrowseNodeId><Name>Borland Delphi</Name></BrowseNode><BrowseNode><BrowseNodeId>697342</BrowseNodeId><Name>C#</Name></BrowseNode><BrowseNode><BrowseNodeId>379357011</BrowseNodeId><Name>CSS</Name></BrowseNode><BrowseNode><BrowseNodeId>3970</BrowseNodeId><Name>Compiler Design</Name></BrowseNode><BrowseNode><BrowseNodeId>3971</BrowseNodeId><Name>Compilers</Name></BrowseNode><BrowseNode><BrowseNodeId>3977</BrowseNodeId><Name>Fortran</Name></BrowseNode><BrowseNode><BrowseNodeId>3981</BrowseNodeId><Name>Lisp</Name></BrowseNode><BrowseNode><BrowseNodeId>3987</BrowseNodeId><Name>Prolog</Name></BrowseNode><BrowseNode><BrowseNodeId>285856</BrowseNodeId><Name>Python</Name></BrowseNode><BrowseNode><BrowseNodeId>3996</BrowseNodeId><Name>Visual Basic</Name></BrowseNode><BrowseNode><BrowseNodeId>285859</BrowseNodeId><Name>XHTML</Name></BrowseNode><BrowseNode><BrowseNodeId>4052</BrowseNodeId><Name>XML</Name></BrowseNode></Children><Ancestors><BrowseNode><BrowseNodeId>3839</BrowseNodeId><Name>Programming</Name><Ancestors><BrowseNode><BrowseNodeId>5</BrowseNodeId><Name>Computers &amp; Internet</Name><Ancestors><BrowseNode><BrowseNodeId>1000</BrowseNodeId><Name>Subjects</Name><IsCategoryRoot>1</IsCategoryRoot><Ancestors><BrowseNode><BrowseNodeId>283155</BrowseNodeId><Name>Books</Name></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode><BrowseNode><BrowseNodeId>4013</BrowseNodeId><Name>Object-Oriented Design</Name><Ancestors><BrowseNode><BrowseNodeId>4011</BrowseNodeId><Name>Software Design, Testing &amp; Engineering</Name><Ancestors><BrowseNode><BrowseNodeId>3839</BrowseNodeId><Name>Programming</Name><Ancestors><BrowseNode><BrowseNodeId>5</BrowseNodeId><Name>Computers &amp; Internet</Name><Ancestors><BrowseNode><BrowseNodeId>1000</BrowseNodeId><Name>Subjects</Name><IsCategoryRoot>1</IsCategoryRoot><Ancestors><BrowseNode><BrowseNodeId>283155</BrowseNodeId><Name>Books</Name></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode><BrowseNode><BrowseNodeId>4016</BrowseNodeId><Name>Software Development</Name><Ancestors><BrowseNode><BrowseNodeId>4011</BrowseNodeId><Name>Software Design, Testing &amp; Engineering</Name><Ancestors><BrowseNode><BrowseNodeId>3839</BrowseNodeId><Name>Programming</Name><Ancestors><BrowseNode><BrowseNodeId>5</BrowseNodeId><Name>Computers &amp; Internet</Name><Ancestors><BrowseNode><BrowseNodeId>1000</BrowseNodeId><Name>Subjects</Name><IsCategoryRoot>1</IsCategoryRoot><Ancestors><BrowseNode><BrowseNodeId>283155</BrowseNodeId><Name>Books</Name></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode><BrowseNode><BrowseNodeId>491314</BrowseNodeId><Name>Programming Languages</Name><Ancestors><BrowseNode><BrowseNodeId>468204</BrowseNodeId><Name>Computer Science</Name><Ancestors><BrowseNode><BrowseNodeId>465600</BrowseNodeId><Name>New &amp; Used Textbooks</Name><Ancestors><BrowseNode><BrowseNodeId>2349030011</BrowseNodeId><Name>Specialty Boutique</Name><Ancestors><BrowseNode><BrowseNodeId>283155</BrowseNodeId><Name>Books</Name></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode><BrowseNode><BrowseNodeId>491316</BrowseNodeId><Name>Software Design &amp; Engineering</Name><Ancestors><BrowseNode><BrowseNodeId>468204</BrowseNodeId><Name>Computer Science</Name><Ancestors><BrowseNode><BrowseNodeId>465600</BrowseNodeId><Name>New &amp; Used Textbooks</Name><Ancestors><BrowseNode><BrowseNodeId>2349030011</BrowseNodeId><Name>Specialty Boutique</Name><Ancestors><BrowseNode><BrowseNodeId>283155</BrowseNodeId><Name>Books</Name></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode><BrowseNode><BrowseNodeId>1288264011</BrowseNodeId><Name>All product</Name><Ancestors><BrowseNode><BrowseNodeId>1267878011</BrowseNodeId><Name>Products</Name><IsCategoryRoot>1</IsCategoryRoot><Ancestors><BrowseNode><BrowseNodeId>1267877011</BrowseNodeId></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode><BrowseNode><BrowseNodeId>1294449011</BrowseNodeId><Name>Books</Name><Ancestors><BrowseNode><BrowseNodeId>1267878011</BrowseNodeId><Name>Products</Name><IsCategoryRoot>1</IsCategoryRoot><Ancestors><BrowseNode><BrowseNodeId>1267877011</BrowseNodeId></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></BrowseNodes></Item><Item><ASIN>1934356085</ASIN><DetailPageURL>http://www.amazon.com/Programming-Ruby-1-9-Pragmatic-Programmers/dp/1934356085%3FSubscriptionId%3D0XQXXC6YV2C85DX1BF02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3D1934356085</DetailPageURL><ItemLinks><ItemLink><Description>Technical Details</Description><URL>http://www.amazon.com/Programming-Ruby-1-9-Pragmatic-Programmers/dp/tech-data/1934356085%3FSubscriptionId%3D0XQXXC6YV2C85DX1BF02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D1934356085</URL></ItemLink><ItemLink><Description>Add To Baby Registry</Description><URL>http://www.amazon.com/gp/registry/baby/add-item.html%3Fasin.0%3D1934356085%26SubscriptionId%3D0XQXXC6YV2C85DX1BF02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D1934356085</URL></ItemLink><ItemLink><Description>Add To Wedding Registry</Description><URL>http://www.amazon.com/gp/registry/wedding/add-item.html%3Fasin.0%3D1934356085%26SubscriptionId%3D0XQXXC6YV2C85DX1BF02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D1934356085</URL></ItemLink><ItemLink><Description>Add To Wishlist</Description><URL>http://www.amazon.com/gp/registry/wishlist/add-item.html%3Fasin.0%3D1934356085%26SubscriptionId%3D0XQXXC6YV2C85DX1BF02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D1934356085</URL></ItemLink><ItemLink><Description>Tell A Friend</Description><URL>http://www.amazon.com/gp/pdp/taf/1934356085%3FSubscriptionId%3D0XQXXC6YV2C85DX1BF02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D1934356085</URL></ItemLink><ItemLink><Description>All Customer Reviews</Description><URL>http://www.amazon.com/review/product/1934356085%3FSubscriptionId%3D0XQXXC6YV2C85DX1BF02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D1934356085</URL></ItemLink><ItemLink><Description>All Offers</Description><URL>http://www.amazon.com/gp/offer-listing/1934356085%3FSubscriptionId%3D0XQXXC6YV2C85DX1BF02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D1934356085</URL></ItemLink></ItemLinks><SalesRank>92982</SalesRank><SmallImage><URL>http://ecx.images-amazon.com/images/I/51vFypbVAPL._SL75_.jpg</URL><Height Units="pixels">75</Height><Width Units="pixels">63</Width></SmallImage><MediumImage><URL>http://ecx.images-amazon.com/images/I/51vFypbVAPL._SL160_.jpg</URL><Height Units="pixels">160</Height><Width Units="pixels">133</Width></MediumImage><LargeImage><URL>http://ecx.images-amazon.com/images/I/51vFypbVAPL.jpg</URL><Height Units="pixels">500</Height><Width Units="pixels">417</Width></LargeImage><ImageSets><ImageSet Category="primary"><SwatchImage><URL>http://ecx.images-amazon.com/images/I/51vFypbVAPL._SL30_.jpg</URL><Height Units="pixels">30</Height><Width Units="pixels">25</Width></SwatchImage><SmallImage><URL>http://ecx.images-amazon.com/images/I/51vFypbVAPL._SL75_.jpg</URL><Height Units="pixels">75</Height><Width Units="pixels">63</Width></SmallImage><ThumbnailImage><URL>http://ecx.images-amazon.com/images/I/51vFypbVAPL._SL75_.jpg</URL><Height Units="pixels">75</Height><Width Units="pixels">63</Width></ThumbnailImage><TinyImage><URL>http://ecx.images-amazon.com/images/I/51vFypbVAPL._SL110_.jpg</URL><Height Units="pixels">110</Height><Width Units="pixels">92</Width></TinyImage><MediumImage><URL>http://ecx.images-amazon.com/images/I/51vFypbVAPL._SL160_.jpg</URL><Height Units="pixels">160</Height><Width Units="pixels">133</Width></MediumImage><LargeImage><URL>http://ecx.images-amazon.com/images/I/51vFypbVAPL.jpg</URL><Height Units="pixels">500</Height><Width Units="pixels">417</Width></LargeImage></ImageSet></ImageSets><ItemAttributes><Author>Dave Thomas</Author><Author>Chad Fowler</Author><Author>Andy Hunt</Author><Binding>Paperback</Binding><DeweyDecimalNumber>005.133</DeweyDecimalNumber><EAN>9781934356081</EAN><EANList><EANListElement>9781934356081</EANListElement></EANList><Edition>3rd</Edition><Feature>ISBN13: 9781934356081</Feature><Feature>Condition: New</Feature><Feature>Notes: BRAND NEW FROM PUBLISHER! BUY WITH CONFIDENCE, Over one million books sold! 98% Positive feedback. Compare our books, prices and service to the competition. 100% Satisfaction Guaranteed</Feature><ISBN>9781934356081</ISBN><IsEligibleForTradeIn>1</IsEligibleForTradeIn><ItemDimensions><Height Units="hundredths-inches">153</Height><Length Units="hundredths-inches">914</Length><Weight Units="hundredths-pounds">274</Weight><Width Units="hundredths-inches">740</Width></ItemDimensions><Label>Pragmatic Bookshelf</Label><Languages><Language><Name>English</Name><Type>Unknown</Type></Language><Language><Name>English</Name><Type>Original Language</Type></Language><Language><Name>English</Name><Type>Published</Type></Language></Languages><ListPrice><Amount>4995</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$49.95</FormattedPrice></ListPrice><Manufacturer>Pragmatic Bookshelf</Manufacturer><NumberOfItems>1</NumberOfItems><NumberOfPages>1000</NumberOfPages><PackageDimensions><Height Units="hundredths-inches">170</Height><Length Units="hundredths-inches">920</Length><Weight Units="hundredths-pounds">240</Weight><Width Units="hundredths-inches">750</Width></PackageDimensions><ProductGroup>Book</ProductGroup><ProductTypeName>ABIS_BOOK</ProductTypeName><PublicationDate>2009-04-28</PublicationDate><Publisher>Pragmatic Bookshelf</Publisher><Studio>Pragmatic Bookshelf</Studio><Title>Programming Ruby 1.9: The Pragmatic Programmers' Guide (Facets of Ruby)</Title><TradeInValue><Amount>978</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$9.78</FormattedPrice></TradeInValue></ItemAttributes><OfferSummary><LowestNewPrice><Amount>2882</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$28.82</FormattedPrice></LowestNewPrice><LowestUsedPrice><Amount>1964</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$19.64</FormattedPrice></LowestUsedPrice><TotalNew>25</TotalNew><TotalUsed>18</TotalUsed><TotalCollectible>0</TotalCollectible><TotalRefurbished>0</TotalRefurbished></OfferSummary><Offers><TotalOffers>1</TotalOffers><TotalOfferPages>1</TotalOfferPages><Offer><Merchant><MerchantId>ATVPDKIKX0DER</MerchantId><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=ATVPDKIKX0DER</GlancePage><AverageFeedbackRating>0.0</AverageFeedbackRating><TotalFeedback>0</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition></OfferAttributes><OfferListing><OfferListingId>fdgxzDBNuuKtm2v5lZ0tl3q41oy9ICO%2BxDLR8kp4lj60sUXEqUs0YiAW%2BOsrVgQtdIiqq%2FYi%2Bu2pcmR2Her7JJ6%2Bnx0Bejq5LQq18JyAOdw%3D</OfferListingId><Price><Amount>2882</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$28.82</FormattedPrice></Price><AmountSaved><Amount>2113</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$21.13</FormattedPrice></AmountSaved><PercentageSaved>42</PercentageSaved><Availability>Usually ships in 24 hours</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>24</MaximumHours></AvailabilityAttributes><Quantity>-1</Quantity><IsEligibleForSuperSaverShipping>1</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>1</IsFulfilledByAmazon></OfferListing></Offer></Offers><CustomerReviews><IFrameURL>http://www.amazon.com/reviews/iframe?akid=0XQXXC6YV2C85DX1BF02&amp;alinkCode=xm2&amp;asin=1934356085&amp;atag=ws&amp;exp=2011-05-10T07%3A46%3A32Z&amp;v=2&amp;sig=lXky%2F2xjPcPP88bhYTNojFMjaV8Q6DiqXIztCQ2CLig%3D</IFrameURL></CustomerReviews><EditorialReviews><EditorialReview><Source>Product Description</Source><Content>&lt;p&gt;Ruby is a fully object-oriented language, much like the classic object-oriented language, Smalltalk. Like Smalltalk, it is dynamically typed (as opposed to Java or C++), but unlike Smalltalk, Ruby features the same conveniences found in modern scripting languages, making Ruby a favorite tool of intelligent, forward-thinking programmers and the basis for the Rails web framework.&lt;br/&gt;&lt;br/&gt; This is &lt;i&gt;the&lt;/i&gt; reference manual for Ruby, including a description of all the standard library modules, a complete reference to all built-in classes and modules (including all the new and changed methods introduced by Ruby 1.9). It also includes all the new and changed syntax and semantics introduced since Ruby 1.8. Learn about the new parameter passing rules, local variable scoping in blocks, fibers, multinationalization, and the new block declaration syntax, among other exciting new features.&lt;/p&gt;</Content><IsLinkSuppressed>0</IsLinkSuppressed></EditorialReview></EditorialReviews><SimilarProducts><SimilarProduct><ASIN>1934356549</ASIN><Title>Agile Web Development with Rails (Pragmatic Programmers)</Title></SimilarProduct><SimilarProduct><ASIN>0596516177</ASIN><Title>The Ruby Programming Language</Title></SimilarProduct><SimilarProduct><ASIN>0321601661</ASIN><Title>Rails 3 Way, The (2nd Edition) (Addison-Wesley Professional Ruby Series)</Title></SimilarProduct><SimilarProduct><ASIN>1934356476</ASIN><Title>Metaprogramming Ruby: Program Like the Ruby Pros</Title></SimilarProduct><SimilarProduct><ASIN>1934356379</ASIN><Title>The RSpec Book: Behaviour Driven Development with RSpec, Cucumber, and Friends (The Facets of Ruby Series)</Title></SimilarProduct></SimilarProducts><BrowseNodes><BrowseNode><BrowseNodeId>3952</BrowseNodeId><Name>Languages &amp; Tools</Name><Children><BrowseNode><BrowseNodeId>379359011</BrowseNodeId><Name>Ajax</Name></BrowseNode><BrowseNode><BrowseNodeId>3954</BrowseNodeId><Name>Assembly Language Programming</Name></BrowseNode><BrowseNode><BrowseNodeId>3955</BrowseNodeId><Name>Borland Delphi</Name></BrowseNode><BrowseNode><BrowseNodeId>697342</BrowseNodeId><Name>C#</Name></BrowseNode><BrowseNode><BrowseNodeId>379357011</BrowseNodeId><Name>CSS</Name></BrowseNode><BrowseNode><BrowseNodeId>3970</BrowseNodeId><Name>Compiler Design</Name></BrowseNode><BrowseNode><BrowseNodeId>3971</BrowseNodeId><Name>Compilers</Name></BrowseNode><BrowseNode><BrowseNodeId>3977</BrowseNodeId><Name>Fortran</Name></BrowseNode><BrowseNode><BrowseNodeId>3981</BrowseNodeId><Name>Lisp</Name></BrowseNode><BrowseNode><BrowseNodeId>3987</BrowseNodeId><Name>Prolog</Name></BrowseNode><BrowseNode><BrowseNodeId>285856</BrowseNodeId><Name>Python</Name></BrowseNode><BrowseNode><BrowseNodeId>3996</BrowseNodeId><Name>Visual Basic</Name></BrowseNode><BrowseNode><BrowseNodeId>285859</BrowseNodeId><Name>XHTML</Name></BrowseNode><BrowseNode><BrowseNodeId>4052</BrowseNodeId><Name>XML</Name></BrowseNode></Children><Ancestors><BrowseNode><BrowseNodeId>3839</BrowseNodeId><Name>Programming</Name><Ancestors><BrowseNode><BrowseNodeId>5</BrowseNodeId><Name>Computers &amp; Internet</Name><Ancestors><BrowseNode><BrowseNodeId>1000</BrowseNodeId><Name>Subjects</Name><IsCategoryRoot>1</IsCategoryRoot><Ancestors><BrowseNode><BrowseNodeId>283155</BrowseNodeId><Name>Books</Name></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode><BrowseNode><BrowseNodeId>4013</BrowseNodeId><Name>Object-Oriented Design</Name><Ancestors><BrowseNode><BrowseNodeId>4011</BrowseNodeId><Name>Software Design, Testing &amp; Engineering</Name><Ancestors><BrowseNode><BrowseNodeId>3839</BrowseNodeId><Name>Programming</Name><Ancestors><BrowseNode><BrowseNodeId>5</BrowseNodeId><Name>Computers &amp; Internet</Name><Ancestors><BrowseNode><BrowseNodeId>1000</BrowseNodeId><Name>Subjects</Name><IsCategoryRoot>1</IsCategoryRoot><Ancestors><BrowseNode><BrowseNodeId>283155</BrowseNodeId><Name>Books</Name></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode><BrowseNode><BrowseNodeId>4016</BrowseNodeId><Name>Software Development</Name><Ancestors><BrowseNode><BrowseNodeId>4011</BrowseNodeId><Name>Software Design, Testing &amp; Engineering</Name><Ancestors><BrowseNode><BrowseNodeId>3839</BrowseNodeId><Name>Programming</Name><Ancestors><BrowseNode><BrowseNodeId>5</BrowseNodeId><Name>Computers &amp; Internet</Name><Ancestors><BrowseNode><BrowseNodeId>1000</BrowseNodeId><Name>Subjects</Name><IsCategoryRoot>1</IsCategoryRoot><Ancestors><BrowseNode><BrowseNodeId>283155</BrowseNodeId><Name>Books</Name></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode><BrowseNode><BrowseNodeId>3600</BrowseNodeId><Name>Programming</Name><Ancestors><BrowseNode><BrowseNodeId>3510</BrowseNodeId><Name>Web Development</Name><Ancestors><BrowseNode><BrowseNodeId>5</BrowseNodeId><Name>Computers &amp; Internet</Name><Ancestors><BrowseNode><BrowseNodeId>1000</BrowseNodeId><Name>Subjects</Name><IsCategoryRoot>1</IsCategoryRoot><Ancestors><BrowseNode><BrowseNodeId>283155</BrowseNodeId><Name>Books</Name></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode><BrowseNode><BrowseNodeId>1288264011</BrowseNodeId><Name>All product</Name><Ancestors><BrowseNode><BrowseNodeId>1267878011</BrowseNodeId><Name>Products</Name><IsCategoryRoot>1</IsCategoryRoot><Ancestors><BrowseNode><BrowseNodeId>1267877011</BrowseNodeId></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode><BrowseNode><BrowseNodeId>1294449011</BrowseNodeId><Name>Books</Name><Ancestors><BrowseNode><BrowseNodeId>1267878011</BrowseNodeId><Name>Products</Name><IsCategoryRoot>1</IsCategoryRoot><Ancestors><BrowseNode><BrowseNodeId>1267877011</BrowseNodeId></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode><BrowseNode><BrowseNodeId>1297808011</BrowseNodeId><Name>Books</Name><Ancestors><BrowseNode><BrowseNodeId>1294321011</BrowseNodeId><Name>Just arrived</Name><Ancestors><BrowseNode><BrowseNodeId>1267879011</BrowseNodeId><Name>Special Features</Name><Ancestors><BrowseNode><BrowseNodeId>1267877011</BrowseNodeId></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></BrowseNodes></Item><Item><ASIN>0321584104</ASIN><DetailPageURL>http://www.amazon.com/Eloquent-Ruby-Addison-Wesley-Professional/dp/0321584104%3FSubscriptionId%3D0XQXXC6YV2C85DX1BF02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3D0321584104</DetailPageURL><ItemLinks><ItemLink><Description>Technical Details</Description><URL>http://www.amazon.com/Eloquent-Ruby-Addison-Wesley-Professional/dp/tech-data/0321584104%3FSubscriptionId%3D0XQXXC6YV2C85DX1BF02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0321584104</URL></ItemLink><ItemLink><Description>Add To Baby Registry</Description><URL>http://www.amazon.com/gp/registry/baby/add-item.html%3Fasin.0%3D0321584104%26SubscriptionId%3D0XQXXC6YV2C85DX1BF02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0321584104</URL></ItemLink><ItemLink><Description>Add To Wedding Registry</Description><URL>http://www.amazon.com/gp/registry/wedding/add-item.html%3Fasin.0%3D0321584104%26SubscriptionId%3D0XQXXC6YV2C85DX1BF02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0321584104</URL></ItemLink><ItemLink><Description>Add To Wishlist</Description><URL>http://www.amazon.com/gp/registry/wishlist/add-item.html%3Fasin.0%3D0321584104%26SubscriptionId%3D0XQXXC6YV2C85DX1BF02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0321584104</URL></ItemLink><ItemLink><Description>Tell A Friend</Description><URL>http://www.amazon.com/gp/pdp/taf/0321584104%3FSubscriptionId%3D0XQXXC6YV2C85DX1BF02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0321584104</URL></ItemLink><ItemLink><Description>All Customer Reviews</Description><URL>http://www.amazon.com/review/product/0321584104%3FSubscriptionId%3D0XQXXC6YV2C85DX1BF02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0321584104</URL></ItemLink><ItemLink><Description>All Offers</Description><URL>http://www.amazon.com/gp/offer-listing/0321584104%3FSubscriptionId%3D0XQXXC6YV2C85DX1BF02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0321584104</URL></ItemLink></ItemLinks><SalesRank>43385</SalesRank><SmallImage><URL>http://ecx.images-amazon.com/images/I/41KtNo1H-DL._SL75_.jpg</URL><Height Units="pixels">75</Height><Width Units="pixels">57</Width></SmallImage><MediumImage><URL>http://ecx.images-amazon.com/images/I/41KtNo1H-DL._SL160_.jpg</URL><Height Units="pixels">160</Height><Width Units="pixels">122</Width></MediumImage><LargeImage><URL>http://ecx.images-amazon.com/images/I/41KtNo1H-DL.jpg</URL><Height Units="pixels">500</Height><Width Units="pixels">382</Width></LargeImage><ImageSets><ImageSet Category="primary"><SwatchImage><URL>http://ecx.images-amazon.com/images/I/41KtNo1H-DL._SL30_.jpg</URL><Height Units="pixels">30</Height><Width Units="pixels">23</Width></SwatchImage><SmallImage><URL>http://ecx.images-amazon.com/images/I/41KtNo1H-DL._SL75_.jpg</URL><Height Units="pixels">75</Height><Width Units="pixels">57</Width></SmallImage><ThumbnailImage><URL>http://ecx.images-amazon.com/images/I/41KtNo1H-DL._SL75_.jpg</URL><Height Units="pixels">75</Height><Width Units="pixels">57</Width></ThumbnailImage><TinyImage><URL>http://ecx.images-amazon.com/images/I/41KtNo1H-DL._SL110_.jpg</URL><Height Units="pixels">110</Height><Width Units="pixels">84</Width></TinyImage><MediumImage><URL>http://ecx.images-amazon.com/images/I/41KtNo1H-DL._SL160_.jpg</URL><Height Units="pixels">160</Height><Width Units="pixels">122</Width></MediumImage><LargeImage><URL>http://ecx.images-amazon.com/images/I/41KtNo1H-DL.jpg</URL><Height Units="pixels">500</Height><Width Units="pixels">382</Width></LargeImage></ImageSet></ImageSets><ItemAttributes><Author>Russ Olsen</Author><Binding>Paperback</Binding><DeweyDecimalNumber>005.133</DeweyDecimalNumber><EAN>9780321584106</EAN><EANList><EANListElement>9780321584106</EANListElement></EANList><Edition>1</Edition><Feature>ISBN13: 9780321584106</Feature><Feature>Condition: New</Feature><Feature>Notes: BRAND NEW FROM PUBLISHER! 100% Satisfaction Guarantee. Tracking provided on most orders. Buy with Confidence! Millions of books sold!</Feature><ISBN>0321584104</ISBN><IsEligibleForTradeIn>1</IsEligibleForTradeIn><Label>Addison-Wesley Professional</Label><Languages><Language><Name>English</Name><Type>Unknown</Type></Language><Language><Name>English</Name><Type>Original Language</Type></Language><Language><Name>English</Name><Type>Published</Type></Language></Languages><ListPrice><Amount>3999</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$39.99</FormattedPrice></ListPrice><Manufacturer>Addison-Wesley Professional</Manufacturer><NumberOfItems>1</NumberOfItems><NumberOfPages>448</NumberOfPages><PackageDimensions><Height Units="hundredths-inches">200</Height><Length Units="hundredths-inches">900</Length><Weight Units="hundredths-pounds">152</Weight><Width Units="hundredths-inches">700</Width></PackageDimensions><ProductGroup>Book</ProductGroup><ProductTypeName>ABIS_BOOK</ProductTypeName><PublicationDate>2011-02-21</PublicationDate><Publisher>Addison-Wesley Professional</Publisher><Studio>Addison-Wesley Professional</Studio><Title>Eloquent Ruby (Addison-Wesley Professional Ruby Series)</Title><TradeInValue><Amount>1385</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$13.85</FormattedPrice></TradeInValue></ItemAttributes><OfferSummary><LowestNewPrice><Amount>2797</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$27.97</FormattedPrice></LowestNewPrice><LowestUsedPrice><Amount>3175</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$31.75</FormattedPrice></LowestUsedPrice><TotalNew>35</TotalNew><TotalUsed>10</TotalUsed><TotalCollectible>0</TotalCollectible><TotalRefurbished>0</TotalRefurbished></OfferSummary><Offers><TotalOffers>1</TotalOffers><TotalOfferPages>1</TotalOfferPages><Offer><Merchant><MerchantId>ATVPDKIKX0DER</MerchantId><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=ATVPDKIKX0DER</GlancePage><AverageFeedbackRating>0.0</AverageFeedbackRating><TotalFeedback>0</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition></OfferAttributes><OfferListing><OfferListingId>g9Wja%2B3Rxw7zG1klC%2B15B31Vu267V3O6Y4lCN0hdRITxGpIAsr9jxD1oFGMxpznxXDaZHPn05256yKqLwsb3vBsH1sSUI2fb1Q2120YGuzE%3D</OfferListingId><Price><Amount>2797</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$27.97</FormattedPrice></Price><AmountSaved><Amount>1202</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$12.02</FormattedPrice></AmountSaved><PercentageSaved>30</PercentageSaved><Availability>Usually ships in 24 hours</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>0</MinimumHours><MaximumHours>0</MaximumHours></AvailabilityAttributes><Quantity>-1</Quantity><IsEligibleForSuperSaverShipping>1</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>1</IsFulfilledByAmazon></OfferListing></Offer></Offers><CustomerReviews><IFrameURL>http://www.amazon.com/reviews/iframe?akid=0XQXXC6YV2C85DX1BF02&amp;alinkCode=xm2&amp;asin=0321584104&amp;atag=ws&amp;exp=2011-05-10T07%3A46%3A32Z&amp;v=2&amp;sig=tAVSoQw59%2BNguOMZFi1R8SgCFhQ%2BQlcFaTjuFv5HqTY%3D</IFrameURL></CustomerReviews><EditorialReviews><EditorialReview><Source>Product Description</Source><Content>&lt;P style="MARGIN: 0px" align=left text-align="left"&gt;It’s easy to write correct Ruby code, but to gain the fluency needed to write &lt;I&gt;great &lt;/I&gt;Ruby code, you must go beyond syntax and absorb the “Ruby way” of thinking and problem solving. In &lt;B&gt;&lt;I&gt;Eloquent Ruby, &lt;/B&gt;&lt;/I&gt;Russ Olsen helps you write Ruby like true Rubyists do–so you can leverage its immense, surprising power.&lt;/P&gt; &lt;P style="MARGIN: 0px" align=left text-align="left"&gt; &lt;/P&gt; &lt;P style="MARGIN: 0px" align=left text-align="left"&gt;&lt;/P&gt; &lt;P style="MARGIN: 0px" align=left text-align="left"&gt;Olsen draws on years of experience internalizing the Ruby culture and teaching Ruby to other programmers. He guides you to the “Ah Ha!” moments when it suddenly becomes clear why Ruby works the way it does, and how you can take advantage of this language’s elegance and expressiveness.&lt;/P&gt;&lt;B&gt;&lt;I&gt; &lt;P style="MARGIN: 0px" align=left text-align="left"&gt;&lt;/P&gt; &lt;P style="MARGIN: 0px" align=left text-align="left"&gt; &lt;/P&gt; &lt;P style="MARGIN: 0px" align=left text-align="left"&gt;Eloquent Ruby &lt;/B&gt;&lt;/I&gt;starts small, answering tactical questions focused on a single statement, method, test, or bug. You’ll learn how to write code that actually looks like Ruby (not Java or C#); why Ruby has so many control structures; how to use strings, expressions, and symbols; and what dynamic typing is really good for.&lt;/P&gt; &lt;P style="MARGIN: 0px" align=left text-align="left"&gt;&lt;/P&gt; &lt;P style="MARGIN: 0px" align=left text-align="left"&gt; &lt;/P&gt; &lt;P style="MARGIN: 0px" align=left text-align="left"&gt;Next, the book addresses bigger questions related to building methods and classes. You’ll discover why Ruby classes contain so many tiny methods, when to use operator overloading, and when to avoid it. Olsen explains how to write Ruby code that writes its own code–and why you’ll want to. He concludes with powerful project-level features and techniques ranging from gems to Domain Specific Languages.&lt;/P&gt; &lt;P style="MARGIN: 0px" align=left text-align="left"&gt;&lt;/P&gt; &lt;P style="MARGIN: 0px" align=left text-align="left"&gt; &lt;/P&gt; &lt;P style="MARGIN: 0px" align=left text-align="left"&gt;A part of the renowned Addison-Wesley Professional Ruby Series, &lt;B&gt;&lt;I&gt;Eloquent Ruby &lt;/B&gt;&lt;/I&gt;will help you “put on your Ruby-colored glasses” and get results that make you a true believer.&lt;/P&gt;</Content><IsLinkSuppressed>0</IsLinkSuppressed></EditorialReview></EditorialReviews><SimilarProducts><SimilarProduct><ASIN>0321601661</ASIN><Title>Rails 3 Way, The (2nd Edition) (Addison-Wesley Professional Ruby Series)</Title></SimilarProduct><SimilarProduct><ASIN>0321604814</ASIN><Title>Rails AntiPatterns: Best Practice Ruby on Rails Refactoring (Addison-Wesley Professional Ruby Series)</Title></SimilarProduct><SimilarProduct><ASIN>0321743121</ASIN><Title>Ruby on Rails 3 Tutorial: Learn Rails by Example (Addison-Wesley Professional Ruby Series)</Title></SimilarProduct><SimilarProduct><ASIN>0321659368</ASIN><Title>Service-Oriented Design with Ruby and Rails (Addison-Wesley Professional Ruby Series)</Title></SimilarProduct><SimilarProduct><ASIN>1934356549</ASIN><Title>Agile Web Development with Rails (Pragmatic Programmers)</Title></SimilarProduct></SimilarProducts><BrowseNodes><BrowseNode><BrowseNodeId>3952</BrowseNodeId><Name>Languages &amp; Tools</Name><Children><BrowseNode><BrowseNodeId>379359011</BrowseNodeId><Name>Ajax</Name></BrowseNode><BrowseNode><BrowseNodeId>3954</BrowseNodeId><Name>Assembly Language Programming</Name></BrowseNode><BrowseNode><BrowseNodeId>3955</BrowseNodeId><Name>Borland Delphi</Name></BrowseNode><BrowseNode><BrowseNodeId>697342</BrowseNodeId><Name>C#</Name></BrowseNode><BrowseNode><BrowseNodeId>379357011</BrowseNodeId><Name>CSS</Name></BrowseNode><BrowseNode><BrowseNodeId>3970</BrowseNodeId><Name>Compiler Design</Name></BrowseNode><BrowseNode><BrowseNodeId>3971</BrowseNodeId><Name>Compilers</Name></BrowseNode><BrowseNode><BrowseNodeId>3977</BrowseNodeId><Name>Fortran</Name></BrowseNode><BrowseNode><BrowseNodeId>3981</BrowseNodeId><Name>Lisp</Name></BrowseNode><BrowseNode><BrowseNodeId>3987</BrowseNodeId><Name>Prolog</Name></BrowseNode><BrowseNode><BrowseNodeId>285856</BrowseNodeId><Name>Python</Name></BrowseNode><BrowseNode><BrowseNodeId>3996</BrowseNodeId><Name>Visual Basic</Name></BrowseNode><BrowseNode><BrowseNodeId>285859</BrowseNodeId><Name>XHTML</Name></BrowseNode><BrowseNode><BrowseNodeId>4052</BrowseNodeId><Name>XML</Name></BrowseNode></Children><Ancestors><BrowseNode><BrowseNodeId>3839</BrowseNodeId><Name>Programming</Name><Ancestors><BrowseNode><BrowseNodeId>5</BrowseNodeId><Name>Computers &amp; Internet</Name><Ancestors><BrowseNode><BrowseNodeId>1000</BrowseNodeId><Name>Subjects</Name><IsCategoryRoot>1</IsCategoryRoot><Ancestors><BrowseNode><BrowseNodeId>283155</BrowseNodeId><Name>Books</Name></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode><BrowseNode><BrowseNodeId>491314</BrowseNodeId><Name>Programming Languages</Name><Ancestors><BrowseNode><BrowseNodeId>468204</BrowseNodeId><Name>Computer Science</Name><Ancestors><BrowseNode><BrowseNodeId>465600</BrowseNodeId><Name>New &amp; Used Textbooks</Name><Ancestors><BrowseNode><BrowseNodeId>2349030011</BrowseNodeId><Name>Specialty Boutique</Name><Ancestors><BrowseNode><BrowseNodeId>283155</BrowseNodeId><Name>Books</Name></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></BrowseNodes></Item><Item><ASIN>0596523696</ASIN><DetailPageURL>http://www.amazon.com/Cookbook-Cookbooks-OReilly-Lucas-Carlson/dp/0596523696%3FSubscriptionId%3D0XQXXC6YV2C85DX1BF02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3D0596523696</DetailPageURL><ItemLinks><ItemLink><Description>Technical Details</Description><URL>http://www.amazon.com/Cookbook-Cookbooks-OReilly-Lucas-Carlson/dp/tech-data/0596523696%3FSubscriptionId%3D0XQXXC6YV2C85DX1BF02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0596523696</URL></ItemLink><ItemLink><Description>Add To Baby Registry</Description><URL>http://www.amazon.com/gp/registry/baby/add-item.html%3Fasin.0%3D0596523696%26SubscriptionId%3D0XQXXC6YV2C85DX1BF02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0596523696</URL></ItemLink><ItemLink><Description>Add To Wedding Registry</Description><URL>http://www.amazon.com/gp/registry/wedding/add-item.html%3Fasin.0%3D0596523696%26SubscriptionId%3D0XQXXC6YV2C85DX1BF02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0596523696</URL></ItemLink><ItemLink><Description>Add To Wishlist</Description><URL>http://www.amazon.com/gp/registry/wishlist/add-item.html%3Fasin.0%3D0596523696%26SubscriptionId%3D0XQXXC6YV2C85DX1BF02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0596523696</URL></ItemLink><ItemLink><Description>Tell A Friend</Description><URL>http://www.amazon.com/gp/pdp/taf/0596523696%3FSubscriptionId%3D0XQXXC6YV2C85DX1BF02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0596523696</URL></ItemLink><ItemLink><Description>All Customer Reviews</Description><URL>http://www.amazon.com/review/product/0596523696%3FSubscriptionId%3D0XQXXC6YV2C85DX1BF02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0596523696</URL></ItemLink><ItemLink><Description>All Offers</Description><URL>http://www.amazon.com/gp/offer-listing/0596523696%3FSubscriptionId%3D0XQXXC6YV2C85DX1BF02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0596523696</URL></ItemLink></ItemLinks><SalesRank>238519</SalesRank><SmallImage><URL>http://ecx.images-amazon.com/images/I/417y51KRVDL._SL75_.jpg</URL><Height Units="pixels">75</Height><Width Units="pixels">57</Width></SmallImage><MediumImage><URL>http://ecx.images-amazon.com/images/I/417y51KRVDL._SL160_.jpg</URL><Height Units="pixels">160</Height><Width Units="pixels">122</Width></MediumImage><LargeImage><URL>http://ecx.images-amazon.com/images/I/417y51KRVDL.jpg</URL><Height Units="pixels">420</Height><Width Units="pixels">320</Width></LargeImage><ImageSets><ImageSet Category="primary"><SwatchImage><URL>http://ecx.images-amazon.com/images/I/417y51KRVDL._SL30_.jpg</URL><Height Units="pixels">30</Height><Width Units="pixels">23</Width></SwatchImage><SmallImage><URL>http://ecx.images-amazon.com/images/I/417y51KRVDL._SL75_.jpg</URL><Height Units="pixels">75</Height><Width Units="pixels">57</Width></SmallImage><ThumbnailImage><URL>http://ecx.images-amazon.com/images/I/417y51KRVDL._SL75_.jpg</URL><Height Units="pixels">75</Height><Width Units="pixels">57</Width></ThumbnailImage><TinyImage><URL>http://ecx.images-amazon.com/images/I/417y51KRVDL._SL110_.jpg</URL><Height Units="pixels">110</Height><Width Units="pixels">84</Width></TinyImage><MediumImage><URL>http://ecx.images-amazon.com/images/I/417y51KRVDL._SL160_.jpg</URL><Height Units="pixels">160</Height><Width Units="pixels">122</Width></MediumImage><LargeImage><URL>http://ecx.images-amazon.com/images/I/417y51KRVDL.jpg</URL><Height Units="pixels">420</Height><Width Units="pixels">320</Width></LargeImage></ImageSet></ImageSets><ItemAttributes><Author>Lucas Carlson</Author><Author>Leonard Richardson</Author><Binding>Paperback</Binding><DeweyDecimalNumber>005.133</DeweyDecimalNumber><EAN>9780596523695</EAN><EANList><EANListElement>9780596523695</EANListElement></EANList><Edition>1</Edition><Feature>ISBN13: 9780596523695</Feature><Feature>Condition: New</Feature><Feature>Notes: BRAND NEW FROM PUBLISHER! 100% Satisfaction Guarantee. Tracking provided on most orders. Buy with Confidence! Millions of books sold!</Feature><ISBN>0596523696</ISBN><IsEligibleForTradeIn>1</IsEligibleForTradeIn><ItemDimensions><Height Units="hundredths-inches">158</Height><Length Units="hundredths-inches">932</Length><Weight Units="hundredths-pounds">285</Weight><Width Units="hundredths-inches">696</Width></ItemDimensions><Label>O'Reilly Media</Label><Languages><Language><Name>English</Name><Type>Unknown</Type></Language><Language><Name>English</Name><Type>Original Language</Type></Language><Language><Name>English</Name><Type>Published</Type></Language></Languages><ListPrice><Amount>4999</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$49.99</FormattedPrice></ListPrice><Manufacturer>O'Reilly Media</Manufacturer><NumberOfItems>1</NumberOfItems><NumberOfPages>912</NumberOfPages><PackageDimensions><Height Units="hundredths-inches">160</Height><Length Units="hundredths-inches">900</Length><Weight Units="hundredths-pounds">290</Weight><Width Units="hundredths-inches">700</Width></PackageDimensions><ProductGroup>Book</ProductGroup><ProductTypeName>ABIS_BOOK</ProductTypeName><PublicationDate>2006-07-26</PublicationDate><Publisher>O'Reilly Media</Publisher><Studio>O'Reilly Media</Studio><Title>Ruby Cookbook (Cookbooks (O'Reilly))</Title><TradeInValue><Amount>150</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$1.50</FormattedPrice></TradeInValue></ItemAttributes><OfferSummary><LowestNewPrice><Amount>2498</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$24.98</FormattedPrice></LowestNewPrice><LowestUsedPrice><Amount>585</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$5.85</FormattedPrice></LowestUsedPrice><LowestCollectiblePrice><Amount>1599</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$15.99</FormattedPrice></LowestCollectiblePrice><TotalNew>33</TotalNew><TotalUsed>26</TotalUsed><TotalCollectible>2</TotalCollectible><TotalRefurbished>0</TotalRefurbished></OfferSummary><Offers><TotalOffers>1</TotalOffers><TotalOfferPages>1</TotalOfferPages><Offer><Merchant><MerchantId>ATVPDKIKX0DER</MerchantId><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=ATVPDKIKX0DER</GlancePage><AverageFeedbackRating>0.0</AverageFeedbackRating><TotalFeedback>0</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition></OfferAttributes><OfferListing><OfferListingId>MCZJStDpeYHFg%2FWPC34aJJEjMkFHhQTigXwUG2XiH88uDF%2BB%2BYiYOau3mc%2BuJ2AhdqupvNexuVoCADDjvXFWy%2Bqwc1kbQyZd3hEPQ9pqFic%3D</OfferListingId><Price><Amount>3117</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$31.17</FormattedPrice></Price><AmountSaved><Amount>1882</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$18.82</FormattedPrice></AmountSaved><PercentageSaved>38</PercentageSaved><Availability>Usually ships in 24 hours</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>0</MinimumHours><MaximumHours>0</MaximumHours></AvailabilityAttributes><Quantity>-1</Quantity><IsEligibleForSuperSaverShipping>1</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>1</IsFulfilledByAmazon></OfferListing></Offer></Offers><CustomerReviews><IFrameURL>http://www.amazon.com/reviews/iframe?akid=0XQXXC6YV2C85DX1BF02&amp;alinkCode=xm2&amp;asin=0596523696&amp;atag=ws&amp;exp=2011-05-10T07%3A46%3A32Z&amp;v=2&amp;sig=O3IXwdHyF1mJCerfkkCiI5FOHfsAQiZQxU90C5XEhrk%3D</IFrameURL></CustomerReviews><EditorialReviews><EditorialReview><Source>Product Description</Source><Content>&lt;DIV&gt;&lt;p&gt; Do you want to push Ruby to its limits? The &lt;i&gt;Ruby Cookbook&lt;/i&gt; is the most comprehensive problem-solving guide to today's hottest programming language. It gives you hundreds of solutions to real-world problems, with clear explanations and thousands of lines of code you can use in your own projects.&lt;/p&gt; &lt;p&gt;From data structures and algorithms, to integration with cutting-edge technologies, the &lt;i&gt;Ruby Cookbook&lt;/i&gt; has something for every programmer. Beginners and advanced Rubyists alike will learn how to program with:&lt;/p&gt; &lt;ul&gt;&lt;li&gt;Strings and numbers&lt;/li&gt; &lt;li&gt;Arrays and hashes&lt;/li&gt; &lt;li&gt;Classes, modules, and namespaces&lt;/li&gt; &lt;li&gt;Reflection and metaprogramming&lt;/li&gt; &lt;li&gt;XML and HTML processing&lt;/li&gt; &lt;li&gt;Ruby on Rails (including Ajax integration)&lt;/li&gt; &lt;li&gt;Databases&lt;/li&gt; &lt;li&gt;Graphics&lt;/li&gt; &lt;li&gt;Internet services like email, SSH, and BitTorrent&lt;/li&gt; &lt;li&gt;Web services&lt;/li&gt; &lt;li&gt;Multitasking&lt;/li&gt; &lt;li&gt;Graphical and terminal interfaces&lt;/li&gt; &lt;/ul&gt;&lt;p&gt;If you need to write a web application, this book shows you how to get started with Rails. If you're a system administrator who needs to rename thousands of files, you'll see how to use Ruby for this and other everyday tasks. You'll learn how to read and write Excel spreadsheets, classify text with Bayesian filters, and create PDF files. We've even included a few silly tricks that were too cool to leave out, like how to blink the lights on your keyboard.&lt;/p&gt;&lt;p&gt; The &lt;i&gt;Ruby Cookbook&lt;/i&gt; is the most useful book yet written about Ruby. When you need to solve a problem, don't reinvent the wheel: look it up in the Cookbook.&lt;/p&gt;&lt;/div&gt;</Content><IsLinkSuppressed>0</IsLinkSuppressed></EditorialReview></EditorialReviews><SimilarProducts><SimilarProduct><ASIN>0596516177</ASIN><Title>The Ruby Programming Language</Title></SimilarProduct><SimilarProduct><ASIN>0596527314</ASIN><Title>Rails Cookbook (Cookbooks (O'Reilly))</Title></SimilarProduct><SimilarProduct><ASIN>0596523009</ASIN><Title>Ruby Best Practices</Title></SimilarProduct><SimilarProduct><ASIN>0596529864</ASIN><Title>Learning Ruby</Title></SimilarProduct><SimilarProduct><ASIN>B003D3OGCY</ASIN><Title>Ruby on Rails: Up and Running</Title></SimilarProduct></SimilarProducts><BrowseNodes><BrowseNode><BrowseNodeId>69766</BrowseNodeId><Name>Internet</Name><Children><BrowseNode><BrowseNodeId>69771</BrowseNodeId><Name>Online Searching</Name></BrowseNode></Children><Ancestors><BrowseNode><BrowseNodeId>69765</BrowseNodeId><Name>Home Computing</Name><Ancestors><BrowseNode><BrowseNodeId>5</BrowseNodeId><Name>Computers &amp; Internet</Name><Ancestors><BrowseNode><BrowseNodeId>1000</BrowseNodeId><Name>Subjects</Name><IsCategoryRoot>1</IsCategoryRoot><Ancestors><BrowseNode><BrowseNodeId>283155</BrowseNodeId><Name>Books</Name></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode><BrowseNode><BrowseNodeId>3902</BrowseNodeId><Name>Database Design</Name><Ancestors><BrowseNode><BrowseNodeId>549646</BrowseNodeId><Name>Databases</Name><Ancestors><BrowseNode><BrowseNodeId>5</BrowseNodeId><Name>Computers &amp; Internet</Name><Ancestors><BrowseNode><BrowseNodeId>1000</BrowseNodeId><Name>Subjects</Name><IsCategoryRoot>1</IsCategoryRoot><Ancestors><BrowseNode><BrowseNodeId>283155</BrowseNodeId><Name>Books</Name></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode><BrowseNode><BrowseNodeId>3952</BrowseNodeId><Name>Languages &amp; Tools</Name><Children><BrowseNode><BrowseNodeId>379359011</BrowseNodeId><Name>Ajax</Name></BrowseNode><BrowseNode><BrowseNodeId>3954</BrowseNodeId><Name>Assembly Language Programming</Name></BrowseNode><BrowseNode><BrowseNodeId>3955</BrowseNodeId><Name>Borland Delphi</Name></BrowseNode><BrowseNode><BrowseNodeId>697342</BrowseNodeId><Name>C#</Name></BrowseNode><BrowseNode><BrowseNodeId>379357011</BrowseNodeId><Name>CSS</Name></BrowseNode><BrowseNode><BrowseNodeId>3970</BrowseNodeId><Name>Compiler Design</Name></BrowseNode><BrowseNode><BrowseNodeId>3971</BrowseNodeId><Name>Compilers</Name></BrowseNode><BrowseNode><BrowseNodeId>3977</BrowseNodeId><Name>Fortran</Name></BrowseNode><BrowseNode><BrowseNodeId>3981</BrowseNodeId><Name>Lisp</Name></BrowseNode><BrowseNode><BrowseNodeId>3987</BrowseNodeId><Name>Prolog</Name></BrowseNode><BrowseNode><BrowseNodeId>285856</BrowseNodeId><Name>Python</Name></BrowseNode><BrowseNode><BrowseNodeId>3996</BrowseNodeId><Name>Visual Basic</Name></BrowseNode><BrowseNode><BrowseNodeId>285859</BrowseNodeId><Name>XHTML</Name></BrowseNode><BrowseNode><BrowseNodeId>4052</BrowseNodeId><Name>XML</Name></BrowseNode></Children><Ancestors><BrowseNode><BrowseNodeId>3839</BrowseNodeId><Name>Programming</Name><Ancestors><BrowseNode><BrowseNodeId>5</BrowseNodeId><Name>Computers &amp; Internet</Name><Ancestors><BrowseNode><BrowseNodeId>1000</BrowseNodeId><Name>Subjects</Name><IsCategoryRoot>1</IsCategoryRoot><Ancestors><BrowseNode><BrowseNodeId>283155</BrowseNodeId><Name>Books</Name></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode><BrowseNode><BrowseNodeId>4013</BrowseNodeId><Name>Object-Oriented Design</Name><Ancestors><BrowseNode><BrowseNodeId>4011</BrowseNodeId><Name>Software Design, Testing &amp; Engineering</Name><Ancestors><BrowseNode><BrowseNodeId>3839</BrowseNodeId><Name>Programming</Name><Ancestors><BrowseNode><BrowseNodeId>5</BrowseNodeId><Name>Computers &amp; Internet</Name><Ancestors><BrowseNode><BrowseNodeId>1000</BrowseNodeId><Name>Subjects</Name><IsCategoryRoot>1</IsCategoryRoot><Ancestors><BrowseNode><BrowseNodeId>283155</BrowseNodeId><Name>Books</Name></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode><BrowseNode><BrowseNodeId>4016</BrowseNodeId><Name>Software Development</Name><Ancestors><BrowseNode><BrowseNodeId>4011</BrowseNodeId><Name>Software Design, Testing &amp; Engineering</Name><Ancestors><BrowseNode><BrowseNodeId>3839</BrowseNodeId><Name>Programming</Name><Ancestors><BrowseNode><BrowseNodeId>5</BrowseNodeId><Name>Computers &amp; Internet</Name><Ancestors><BrowseNode><BrowseNodeId>1000</BrowseNodeId><Name>Subjects</Name><IsCategoryRoot>1</IsCategoryRoot><Ancestors><BrowseNode><BrowseNodeId>283155</BrowseNodeId><Name>Books</Name></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode><BrowseNode><BrowseNodeId>3600</BrowseNodeId><Name>Programming</Name><Ancestors><BrowseNode><BrowseNodeId>3510</BrowseNodeId><Name>Web Development</Name><Ancestors><BrowseNode><BrowseNodeId>5</BrowseNodeId><Name>Computers &amp; Internet</Name><Ancestors><BrowseNode><BrowseNodeId>1000</BrowseNodeId><Name>Subjects</Name><IsCategoryRoot>1</IsCategoryRoot><Ancestors><BrowseNode><BrowseNodeId>283155</BrowseNodeId><Name>Books</Name></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode><BrowseNode><BrowseNodeId>491310</BrowseNodeId><Name>Object-Oriented Software Design</Name><Ancestors><BrowseNode><BrowseNodeId>468204</BrowseNodeId><Name>Computer Science</Name><Ancestors><BrowseNode><BrowseNodeId>465600</BrowseNodeId><Name>New &amp; Used Textbooks</Name><Ancestors><BrowseNode><BrowseNodeId>2349030011</BrowseNodeId><Name>Specialty Boutique</Name><Ancestors><BrowseNode><BrowseNodeId>283155</BrowseNodeId><Name>Books</Name></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode><BrowseNode><BrowseNodeId>491314</BrowseNodeId><Name>Programming Languages</Name><Ancestors><BrowseNode><BrowseNodeId>468204</BrowseNodeId><Name>Computer Science</Name><Ancestors><BrowseNode><BrowseNodeId>465600</BrowseNodeId><Name>New &amp; Used Textbooks</Name><Ancestors><BrowseNode><BrowseNodeId>2349030011</BrowseNodeId><Name>Specialty Boutique</Name><Ancestors><BrowseNode><BrowseNodeId>283155</BrowseNodeId><Name>Books</Name></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode><BrowseNode><BrowseNodeId>491316</BrowseNodeId><Name>Software Design &amp; Engineering</Name><Ancestors><BrowseNode><BrowseNodeId>468204</BrowseNodeId><Name>Computer Science</Name><Ancestors><BrowseNode><BrowseNodeId>465600</BrowseNodeId><Name>New &amp; Used Textbooks</Name><Ancestors><BrowseNode><BrowseNodeId>2349030011</BrowseNodeId><Name>Specialty Boutique</Name><Ancestors><BrowseNode><BrowseNodeId>283155</BrowseNodeId><Name>Books</Name></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></BrowseNodes></Item><Item><ASIN>0321743121</ASIN><DetailPageURL>http://www.amazon.com/Ruby-Rails-Tutorial-Addison-Wesley-Professional/dp/0321743121%3FSubscriptionId%3D0XQXXC6YV2C85DX1BF02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3D0321743121</DetailPageURL><ItemLinks><ItemLink><Description>Technical Details</Description><URL>http://www.amazon.com/Ruby-Rails-Tutorial-Addison-Wesley-Professional/dp/tech-data/0321743121%3FSubscriptionId%3D0XQXXC6YV2C85DX1BF02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0321743121</URL></ItemLink><ItemLink><Description>Add To Baby Registry</Description><URL>http://www.amazon.com/gp/registry/baby/add-item.html%3Fasin.0%3D0321743121%26SubscriptionId%3D0XQXXC6YV2C85DX1BF02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0321743121</URL></ItemLink><ItemLink><Description>Add To Wedding Registry</Description><URL>http://www.amazon.com/gp/registry/wedding/add-item.html%3Fasin.0%3D0321743121%26SubscriptionId%3D0XQXXC6YV2C85DX1BF02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0321743121</URL></ItemLink><ItemLink><Description>Add To Wishlist</Description><URL>http://www.amazon.com/gp/registry/wishlist/add-item.html%3Fasin.0%3D0321743121%26SubscriptionId%3D0XQXXC6YV2C85DX1BF02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0321743121</URL></ItemLink><ItemLink><Description>Tell A Friend</Description><URL>http://www.amazon.com/gp/pdp/taf/0321743121%3FSubscriptionId%3D0XQXXC6YV2C85DX1BF02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0321743121</URL></ItemLink><ItemLink><Description>All Customer Reviews</Description><URL>http://www.amazon.com/review/product/0321743121%3FSubscriptionId%3D0XQXXC6YV2C85DX1BF02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0321743121</URL></ItemLink><ItemLink><Description>All Offers</Description><URL>http://www.amazon.com/gp/offer-listing/0321743121%3FSubscriptionId%3D0XQXXC6YV2C85DX1BF02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0321743121</URL></ItemLink></ItemLinks><SalesRank>13407</SalesRank><SmallImage><URL>http://ecx.images-amazon.com/images/I/51fHlS9vK2L._SL75_.jpg</URL><Height Units="pixels">75</Height><Width Units="pixels">57</Width></SmallImage><MediumImage><URL>http://ecx.images-amazon.com/images/I/51fHlS9vK2L._SL160_.jpg</URL><Height Units="pixels">160</Height><Width Units="pixels">123</Width></MediumImage><LargeImage><URL>http://ecx.images-amazon.com/images/I/51fHlS9vK2L.jpg</URL><Height Units="pixels">500</Height><Width Units="pixels">383</Width></LargeImage><ImageSets><ImageSet Category="primary"><SwatchImage><URL>http://ecx.images-amazon.com/images/I/51fHlS9vK2L._SL30_.jpg</URL><Height Units="pixels">30</Height><Width Units="pixels">23</Width></SwatchImage><SmallImage><URL>http://ecx.images-amazon.com/images/I/51fHlS9vK2L._SL75_.jpg</URL><Height Units="pixels">75</Height><Width Units="pixels">57</Width></SmallImage><ThumbnailImage><URL>http://ecx.images-amazon.com/images/I/51fHlS9vK2L._SL75_.jpg</URL><Height Units="pixels">75</Height><Width Units="pixels">57</Width></ThumbnailImage><TinyImage><URL>http://ecx.images-amazon.com/images/I/51fHlS9vK2L._SL110_.jpg</URL><Height Units="pixels">110</Height><Width Units="pixels">84</Width></TinyImage><MediumImage><URL>http://ecx.images-amazon.com/images/I/51fHlS9vK2L._SL160_.jpg</URL><Height Units="pixels">160</Height><Width Units="pixels">123</Width></MediumImage><LargeImage><URL>http://ecx.images-amazon.com/images/I/51fHlS9vK2L.jpg</URL><Height Units="pixels">500</Height><Width Units="pixels">383</Width></LargeImage></ImageSet></ImageSets><ItemAttributes><Author>Michael Hartl</Author><Binding>Paperback</Binding><DeweyDecimalNumber>005.117</DeweyDecimalNumber><EAN>9780321743121</EAN><EANList><EANListElement>9780321743121</EANListElement></EANList><Edition>1</Edition><Feature>ISBN13: 9780321743121</Feature><Feature>Condition: New</Feature><Feature>Notes: BRAND NEW FROM PUBLISHER! 100% Satisfaction Guarantee. Tracking provided on most orders. Buy with Confidence! Millions of books sold!</Feature><ISBN>0321743121</ISBN><IsEligibleForTradeIn>1</IsEligibleForTradeIn><Label>Addison-Wesley Professional</Label><Languages><Language><Name>English</Name><Type>Unknown</Type></Language><Language><Name>English</Name><Type>Original Language</Type></Language><Language><Name>English</Name><Type>Published</Type></Language></Languages><ListPrice><Amount>3999</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$39.99</FormattedPrice></ListPrice><Manufacturer>Addison-Wesley Professional</Manufacturer><NumberOfItems>1</NumberOfItems><NumberOfPages>576</NumberOfPages><PackageDimensions><Height Units="hundredths-inches">130</Height><Length Units="hundredths-inches">900</Length><Weight Units="hundredths-pounds">195</Weight><Width Units="hundredths-inches">700</Width></PackageDimensions><ProductGroup>Book</ProductGroup><ProductTypeName>ABIS_BOOK</ProductTypeName><PublicationDate>2010-12-26</PublicationDate><Publisher>Addison-Wesley Professional</Publisher><Studio>Addison-Wesley Professional</Studio><Title>Ruby on Rails 3 Tutorial: Learn Rails by Example (Addison-Wesley Professional Ruby Series)</Title><TradeInValue><Amount>876</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$8.76</FormattedPrice></TradeInValue></ItemAttributes><OfferSummary><LowestNewPrice><Amount>2469</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$24.69</FormattedPrice></LowestNewPrice><LowestUsedPrice><Amount>2368</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$23.68</FormattedPrice></LowestUsedPrice><TotalNew>31</TotalNew><TotalUsed>10</TotalUsed><TotalCollectible>0</TotalCollectible><TotalRefurbished>0</TotalRefurbished></OfferSummary><Offers><TotalOffers>1</TotalOffers><TotalOfferPages>1</TotalOfferPages><Offer><Merchant><MerchantId>ATVPDKIKX0DER</MerchantId><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=ATVPDKIKX0DER</GlancePage><AverageFeedbackRating>0.0</AverageFeedbackRating><TotalFeedback>0</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition></OfferAttributes><OfferListing><OfferListingId>k03JA2OF%2FERPQOPG%2Bd%2BwLC6b2TKlEwFgqf2E%2ByekCEANCB1XfCM55LDIF9Z0XaCET%2FOhMQgZBZcWe7ZK3L%2FBPAPDJmu3Nh375mVcRIQTzXs%3D</OfferListingId><Price><Amount>2599</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$25.99</FormattedPrice></Price><AmountSaved><Amount>1400</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$14.00</FormattedPrice></AmountSaved><PercentageSaved>35</PercentageSaved><Availability>Usually ships in 24 hours</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>0</MinimumHours><MaximumHours>0</MaximumHours></AvailabilityAttributes><Quantity>-1</Quantity><IsEligibleForSuperSaverShipping>1</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>1</IsFulfilledByAmazon></OfferListing></Offer></Offers><CustomerReviews><IFrameURL>http://www.amazon.com/reviews/iframe?akid=0XQXXC6YV2C85DX1BF02&amp;alinkCode=xm2&amp;asin=0321743121&amp;atag=ws&amp;exp=2011-05-10T07%3A46%3A32Z&amp;v=2&amp;sig=tMiIIS%2FjPjUvuRWuaACUSyKTjBM77PL1R9iwj6uNfZs%3D</IFrameURL></CustomerReviews><EditorialReviews><EditorialReview><Source>Product Description</Source><Content>“&lt;i&gt;Ruby on Rails™ 3 Tutorial: Learn Rails by Example&lt;/i&gt; by Michael Hartl has become a must read for developers learning how to build Rails apps.” &lt;p style="margin: 0px;"&gt;—Peter Cooper, Editor of &lt;i&gt;Ruby Inside&lt;/i&gt;&lt;/p&gt; &lt;p style="margin: 0px;"&gt; &lt;/p&gt; &lt;p style="margin: 0px;"&gt;Using Rails 3, developers can build web applications of exceptional elegance and power. Although its remarkable capabilities have made Ruby on Rails one of the world’s most popular web development frameworks, it can be challenging to learn and use. &lt;i&gt;Ruby on Rails™ 3 Tutorial&lt;/i&gt; is the solution. Leading Rails developer Michael Hartl teaches Rails 3 by guiding you through the development of your own complete sample application using the latest techniques in Rails web development.&lt;/p&gt; &lt;p style="margin: 0px;"&gt; &lt;/p&gt; &lt;p style="margin: 0px;"&gt;Drawing on his experience building RailsSpace, Insoshi, and other sophisticated Rails applications, Hartl illuminates all facets of design and implementation—including powerful new techniques that simplify and accelerate development. &lt;/p&gt; &lt;p style="margin: 0px;"&gt; &lt;/p&gt; &lt;p style="margin: 0px;"&gt;You’ll find integrated tutorials not only for Rails, but also for the essential Ruby, HTML, CSS, JavaScript, and SQL skills you’ll need when developing web applications. Hartl explains how each new technique solves a real-world problem, and he demonstrates this with bite-sized code that’s simple enough to understand, yet novel enough to be useful. Whatever your previous web development experience, this book will guide you to true Rails mastery.&lt;/p&gt; &lt;p style="margin: 0px;"&gt; &lt;/p&gt; &lt;p style="margin: 0px;"&gt;This book will help you&lt;/p&gt; &lt;ul&gt;&lt;li&gt;Install and set up your Rails development environment&lt;/li&gt;&lt;li&gt;Go beyond generated code to truly understand how to build Rails applications from scratch &lt;/li&gt;&lt;li&gt;Learn Test Driven Development (TDD) with RSpec&lt;/li&gt;&lt;li&gt;Effectively use the Model-View-Controller (MVC) pattern &lt;/li&gt;&lt;li&gt;Structure applications using the REST architecture&lt;/li&gt;&lt;li&gt;Build static pages and transform them into dynamic ones&lt;/li&gt;&lt;li&gt;Master the Ruby programming skills all Rails developers need&lt;/li&gt;&lt;li&gt;Define high-quality site layouts and data models&lt;/li&gt;&lt;li&gt;Implement registration and authentication systems, including validation and secure passwords&lt;/li&gt;&lt;li&gt;Update, display, and delete users&lt;/li&gt;&lt;li&gt;Add social features and microblogging, including an introduction to Ajax&lt;/li&gt;&lt;li&gt;Record version changes with Git and share code at GitHub&lt;/li&gt;&lt;li&gt;Simplify application deployment with Heroku&lt;/li&gt;&lt;/ul&gt;</Content><IsLinkSuppressed>0</IsLinkSuppressed></EditorialReview></EditorialReviews><SimilarProducts><SimilarProduct><ASIN>0596516177</ASIN><Title>The Ruby Programming Language</Title></SimilarProduct><SimilarProduct><ASIN>0321601661</ASIN><Title>Rails 3 Way, The (2nd Edition) (Addison-Wesley Professional Ruby Series)</Title></SimilarProduct><SimilarProduct><ASIN>0321584104</ASIN><Title>Eloquent Ruby (Addison-Wesley Professional Ruby Series)</Title></SimilarProduct><SimilarProduct><ASIN>1934356549</ASIN><Title>Agile Web Development with Rails (Pragmatic Programmers)</Title></SimilarProduct><SimilarProduct><ASIN>0321659368</ASIN><Title>Service-Oriented Design with Ruby and Rails (Addison-Wesley Professional Ruby Series)</Title></SimilarProduct></SimilarProducts><BrowseNodes><BrowseNode><BrowseNodeId>3952</BrowseNodeId><Name>Languages &amp; Tools</Name><Children><BrowseNode><BrowseNodeId>379359011</BrowseNodeId><Name>Ajax</Name></BrowseNode><BrowseNode><BrowseNodeId>3954</BrowseNodeId><Name>Assembly Language Programming</Name></BrowseNode><BrowseNode><BrowseNodeId>3955</BrowseNodeId><Name>Borland Delphi</Name></BrowseNode><BrowseNode><BrowseNodeId>697342</BrowseNodeId><Name>C#</Name></BrowseNode><BrowseNode><BrowseNodeId>379357011</BrowseNodeId><Name>CSS</Name></BrowseNode><BrowseNode><BrowseNodeId>3970</BrowseNodeId><Name>Compiler Design</Name></BrowseNode><BrowseNode><BrowseNodeId>3971</BrowseNodeId><Name>Compilers</Name></BrowseNode><BrowseNode><BrowseNodeId>3977</BrowseNodeId><Name>Fortran</Name></BrowseNode><BrowseNode><BrowseNodeId>3981</BrowseNodeId><Name>Lisp</Name></BrowseNode><BrowseNode><BrowseNodeId>3987</BrowseNodeId><Name>Prolog</Name></BrowseNode><BrowseNode><BrowseNodeId>285856</BrowseNodeId><Name>Python</Name></BrowseNode><BrowseNode><BrowseNodeId>3996</BrowseNodeId><Name>Visual Basic</Name></BrowseNode><BrowseNode><BrowseNodeId>285859</BrowseNodeId><Name>XHTML</Name></BrowseNode><BrowseNode><BrowseNodeId>4052</BrowseNodeId><Name>XML</Name></BrowseNode></Children><Ancestors><BrowseNode><BrowseNodeId>3839</BrowseNodeId><Name>Programming</Name><Ancestors><BrowseNode><BrowseNodeId>5</BrowseNodeId><Name>Computers &amp; Internet</Name><Ancestors><BrowseNode><BrowseNodeId>1000</BrowseNodeId><Name>Subjects</Name><IsCategoryRoot>1</IsCategoryRoot><Ancestors><BrowseNode><BrowseNodeId>283155</BrowseNodeId><Name>Books</Name></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode><BrowseNode><BrowseNodeId>4013</BrowseNodeId><Name>Object-Oriented Design</Name><Ancestors><BrowseNode><BrowseNodeId>4011</BrowseNodeId><Name>Software Design, Testing &amp; Engineering</Name><Ancestors><BrowseNode><BrowseNodeId>3839</BrowseNodeId><Name>Programming</Name><Ancestors><BrowseNode><BrowseNodeId>5</BrowseNodeId><Name>Computers &amp; Internet</Name><Ancestors><BrowseNode><BrowseNodeId>1000</BrowseNodeId><Name>Subjects</Name><IsCategoryRoot>1</IsCategoryRoot><Ancestors><BrowseNode><BrowseNodeId>283155</BrowseNodeId><Name>Books</Name></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode><BrowseNode><BrowseNodeId>491314</BrowseNodeId><Name>Programming Languages</Name><Ancestors><BrowseNode><BrowseNodeId>468204</BrowseNodeId><Name>Computer Science</Name><Ancestors><BrowseNode><BrowseNodeId>465600</BrowseNodeId><Name>New &amp; Used Textbooks</Name><Ancestors><BrowseNode><BrowseNodeId>2349030011</BrowseNodeId><Name>Specialty Boutique</Name><Ancestors><BrowseNode><BrowseNodeId>283155</BrowseNodeId><Name>Books</Name></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></BrowseNodes></Item><Item><ASIN>1934356549</ASIN><DetailPageURL>http://www.amazon.com/Agile-Development-Rails-Pragmatic-Programmers/dp/1934356549%3FSubscriptionId%3D0XQXXC6YV2C85DX1BF02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3D1934356549</DetailPageURL><ItemLinks><ItemLink><Description>Technical Details</Description><URL>http://www.amazon.com/Agile-Development-Rails-Pragmatic-Programmers/dp/tech-data/1934356549%3FSubscriptionId%3D0XQXXC6YV2C85DX1BF02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D1934356549</URL></ItemLink><ItemLink><Description>Add To Baby Registry</Description><URL>http://www.amazon.com/gp/registry/baby/add-item.html%3Fasin.0%3D1934356549%26SubscriptionId%3D0XQXXC6YV2C85DX1BF02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D1934356549</URL></ItemLink><ItemLink><Description>Add To Wedding Registry</Description><URL>http://www.amazon.com/gp/registry/wedding/add-item.html%3Fasin.0%3D1934356549%26SubscriptionId%3D0XQXXC6YV2C85DX1BF02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D1934356549</URL></ItemLink><ItemLink><Description>Add To Wishlist</Description><URL>http://www.amazon.com/gp/registry/wishlist/add-item.html%3Fasin.0%3D1934356549%26SubscriptionId%3D0XQXXC6YV2C85DX1BF02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D1934356549</URL></ItemLink><ItemLink><Description>Tell A Friend</Description><URL>http://www.amazon.com/gp/pdp/taf/1934356549%3FSubscriptionId%3D0XQXXC6YV2C85DX1BF02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D1934356549</URL></ItemLink><ItemLink><Description>All Customer Reviews</Description><URL>http://www.amazon.com/review/product/1934356549%3FSubscriptionId%3D0XQXXC6YV2C85DX1BF02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D1934356549</URL></ItemLink><ItemLink><Description>All Offers</Description><URL>http://www.amazon.com/gp/offer-listing/1934356549%3FSubscriptionId%3D0XQXXC6YV2C85DX1BF02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D1934356549</URL></ItemLink></ItemLinks><SalesRank>3414</SalesRank><SmallImage><URL>http://ecx.images-amazon.com/images/I/51Pkt8UcdAL._SL75_.jpg</URL><Height Units="pixels">75</Height><Width Units="pixels">63</Width></SmallImage><MediumImage><URL>http://ecx.images-amazon.com/images/I/51Pkt8UcdAL._SL160_.jpg</URL><Height Units="pixels">160</Height><Width Units="pixels">133</Width></MediumImage><LargeImage><URL>http://ecx.images-amazon.com/images/I/51Pkt8UcdAL.jpg</URL><Height Units="pixels">500</Height><Width Units="pixels">417</Width></LargeImage><ImageSets><ImageSet Category="primary"><SwatchImage><URL>http://ecx.images-amazon.com/images/I/51Pkt8UcdAL._SL30_.jpg</URL><Height Units="pixels">30</Height><Width Units="pixels">25</Width></SwatchImage><SmallImage><URL>http://ecx.images-amazon.com/images/I/51Pkt8UcdAL._SL75_.jpg</URL><Height Units="pixels">75</Height><Width Units="pixels">63</Width></SmallImage><ThumbnailImage><URL>http://ecx.images-amazon.com/images/I/51Pkt8UcdAL._SL75_.jpg</URL><Height Units="pixels">75</Height><Width Units="pixels">63</Width></ThumbnailImage><TinyImage><URL>http://ecx.images-amazon.com/images/I/51Pkt8UcdAL._SL110_.jpg</URL><Height Units="pixels">110</Height><Width Units="pixels">92</Width></TinyImage><MediumImage><URL>http://ecx.images-amazon.com/images/I/51Pkt8UcdAL._SL160_.jpg</URL><Height Units="pixels">160</Height><Width Units="pixels">133</Width></MediumImage><LargeImage><URL>http://ecx.images-amazon.com/images/I/51Pkt8UcdAL.jpg</URL><Height Units="pixels">500</Height><Width Units="pixels">417</Width></LargeImage></ImageSet></ImageSets><ItemAttributes><Author>Sam Ruby</Author><Author>Dave Thomas</Author><Author>David Heinemeier Hansson</Author><Binding>Paperback</Binding><DeweyDecimalNumber>004</DeweyDecimalNumber><EAN>9781934356548</EAN><EANList><EANListElement>9781934356548</EANListElement></EANList><Edition>4</Edition><Feature>ISBN13: 9781934356548</Feature><Feature>Condition: New</Feature><Feature>Notes: BRAND NEW FROM PUBLISHER! 100% Satisfaction Guarantee. Tracking provided on most orders. Buy with Confidence! Millions of books sold!</Feature><ISBN>1934356549</ISBN><IsEligibleForTradeIn>1</IsEligibleForTradeIn><Label>Pragmatic Bookshelf</Label><Languages><Language><Name>English</Name><Type>Unknown</Type></Language><Language><Name>English</Name><Type>Original Language</Type></Language><Language><Name>English</Name><Type>Published</Type></Language></Languages><ListPrice><Amount>4395</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$43.95</FormattedPrice></ListPrice><Manufacturer>Pragmatic Bookshelf</Manufacturer><NumberOfItems>1</NumberOfItems><NumberOfPages>480</NumberOfPages><PackageDimensions><Height Units="hundredths-inches">100</Height><Length Units="hundredths-inches">890</Length><Weight Units="hundredths-pounds">145</Weight><Width Units="hundredths-inches">740</Width></PackageDimensions><ProductGroup>Book</ProductGroup><ProductTypeName>ABIS_BOOK</ProductTypeName><PublicationDate>2011-03-31</PublicationDate><Publisher>Pragmatic Bookshelf</Publisher><Studio>Pragmatic Bookshelf</Studio><Title>Agile Web Development with Rails (Pragmatic Programmers)</Title><TradeInValue><Amount>1475</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$14.75</FormattedPrice></TradeInValue></ItemAttributes><OfferSummary><LowestNewPrice><Amount>2099</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$20.99</FormattedPrice></LowestNewPrice><LowestUsedPrice><Amount>3042</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$30.42</FormattedPrice></LowestUsedPrice><TotalNew>31</TotalNew><TotalUsed>10</TotalUsed><TotalCollectible>0</TotalCollectible><TotalRefurbished>0</TotalRefurbished></OfferSummary><Offers><TotalOffers>1</TotalOffers><TotalOfferPages>1</TotalOfferPages><Offer><Merchant><MerchantId>ATVPDKIKX0DER</MerchantId><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=ATVPDKIKX0DER</GlancePage><AverageFeedbackRating>0.0</AverageFeedbackRating><TotalFeedback>0</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition></OfferAttributes><OfferListing><OfferListingId>0Nmusa4YSDiCC01vG4GuSOYH0SO%2BSb0woiXULsHhwwEuVYCYezbzOWf%2FgBKTx53eMYk%2Bg8lxqB191WixGJq7Jke%2Fr1Fvw3whuqYEaHZXR88%3D</OfferListingId><Price><Amount>2572</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$25.72</FormattedPrice></Price><AmountSaved><Amount>1823</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$18.23</FormattedPrice></AmountSaved><PercentageSaved>41</PercentageSaved><Availability>Usually ships in 24 hours</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>0</MinimumHours><MaximumHours>0</MaximumHours></AvailabilityAttributes><Quantity>-1</Quantity><IsEligibleForSuperSaverShipping>1</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>1</IsFulfilledByAmazon></OfferListing></Offer></Offers><CustomerReviews><IFrameURL>http://www.amazon.com/reviews/iframe?akid=0XQXXC6YV2C85DX1BF02&amp;alinkCode=xm2&amp;asin=1934356549&amp;atag=ws&amp;exp=2011-05-10T07%3A46%3A32Z&amp;v=2&amp;sig=2RaY3oGNgrcrB1TTKi2wuPDynNXYrXbZ49D1jzLiA1w%3D</IFrameURL></CustomerReviews><EditorialReviews><EditorialReview><Source>Product Description</Source><Content>&lt;p&gt;Ruby on Rails helps you produce high-quality, beautiful-looking web applications quickly. You concentrate on creating the application, and Rails takes care of the details.&lt;br/&gt;&lt;br/&gt; Tens of thousands of developers have used this award-winning book to learn Rails. It's a broad, far-reaching tutorial and reference that's recommended by the Rails core team. If you're new to Rails, you'll get step-by-step guidance. If you're an experienced developer, this book will give you the comprehensive, insider information you need.&lt;br/&gt;&lt;br/&gt; Rails has evolved over the years, and this book has evolved along with it. We still start with a step-by-step walkthrough of building a real application, and in-depth chapters look at the built-in Rails features. This edition now gives new Ruby and Rails users more information on the Ruby language and takes more time to explain key concepts throughout. Best practices on how to apply Rails continue to change, and this edition keeps up. Examples use cookie backed sessions, HTTP authentication, and Active Record-based forms, and the book focuses throughout on the right way to use Rails. Additionally, this edition now reflects Ruby 1.9, a new release of Ruby with substantial functional and performance improvements.&lt;/p&gt;</Content><IsLinkSuppressed>0</IsLinkSuppressed></EditorialReview></EditorialReviews><SimilarProducts><SimilarProduct><ASIN>1934356085</ASIN><Title>Programming Ruby 1.9: The Pragmatic Programmers' Guide (Facets of Ruby)</Title></SimilarProduct><SimilarProduct><ASIN>0321601661</ASIN><Title>Rails 3 Way, The (2nd Edition) (Addison-Wesley Professional Ruby Series)</Title></SimilarProduct><SimilarProduct><ASIN>0321743121</ASIN><Title>Ruby on Rails 3 Tutorial: Learn Rails by Example (Addison-Wesley Professional Ruby Series)</Title></SimilarProduct><SimilarProduct><ASIN>1934356379</ASIN><Title>The RSpec Book: Behaviour Driven Development with RSpec, Cucumber, and Friends (The Facets of Ruby Series)</Title></SimilarProduct><SimilarProduct><ASIN>1934356735</ASIN><Title>Crafting Rails Applications: Expert Practices for Everyday Rails Development (Pragmatic Programmers)</Title></SimilarProduct></SimilarProducts><BrowseNodes><BrowseNode><BrowseNodeId>69766</BrowseNodeId><Name>Internet</Name><Children><BrowseNode><BrowseNodeId>69771</BrowseNodeId><Name>Online Searching</Name></BrowseNode></Children><Ancestors><BrowseNode><BrowseNodeId>69765</BrowseNodeId><Name>Home Computing</Name><Ancestors><BrowseNode><BrowseNodeId>5</BrowseNodeId><Name>Computers &amp; Internet</Name><Ancestors><BrowseNode><BrowseNodeId>1000</BrowseNodeId><Name>Subjects</Name><IsCategoryRoot>1</IsCategoryRoot><Ancestors><BrowseNode><BrowseNodeId>283155</BrowseNodeId><Name>Books</Name></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode><BrowseNode><BrowseNodeId>3652</BrowseNodeId><Name>Networking</Name><Children><BrowseNode><BrowseNodeId>377893011</BrowseNodeId><Name>Home Networks</Name></BrowseNode><BrowseNode><BrowseNodeId>3711</BrowseNodeId><Name>Intranets &amp; Extranets</Name></BrowseNode><BrowseNode><BrowseNodeId>377894011</BrowseNodeId><Name>Network Administration</Name></BrowseNode><BrowseNode><BrowseNodeId>377895011</BrowseNodeId><Name>Network Programming</Name></BrowseNode><BrowseNode><BrowseNodeId>3746</BrowseNodeId><Name>Network Security</Name></BrowseNode><BrowseNode><BrowseNodeId>3740</BrowseNodeId><Name>Networks, Protocols &amp; APIs</Name></BrowseNode><BrowseNode><BrowseNodeId>377896011</BrowseNodeId><Name>Telephony</Name></BrowseNode><BrowseNode><BrowseNodeId>3722</BrowseNodeId><Name>Wireless Networks</Name></BrowseNode></Children><Ancestors><BrowseNode><BrowseNodeId>5</BrowseNodeId><Name>Computers &amp; Internet</Name><Ancestors><BrowseNode><BrowseNodeId>1000</BrowseNodeId><Name>Subjects</Name><IsCategoryRoot>1</IsCategoryRoot><Ancestors><BrowseNode><BrowseNodeId>283155</BrowseNodeId><Name>Books</Name></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode><BrowseNode><BrowseNodeId>4016</BrowseNodeId><Name>Software Development</Name><Ancestors><BrowseNode><BrowseNodeId>4011</BrowseNodeId><Name>Software Design, Testing &amp; Engineering</Name><Ancestors><BrowseNode><BrowseNodeId>3839</BrowseNodeId><Name>Programming</Name><Ancestors><BrowseNode><BrowseNodeId>5</BrowseNodeId><Name>Computers &amp; Internet</Name><Ancestors><BrowseNode><BrowseNodeId>1000</BrowseNodeId><Name>Subjects</Name><IsCategoryRoot>1</IsCategoryRoot><Ancestors><BrowseNode><BrowseNodeId>283155</BrowseNodeId><Name>Books</Name></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode><BrowseNode><BrowseNodeId>491316</BrowseNodeId><Name>Software Design &amp; Engineering</Name><Ancestors><BrowseNode><BrowseNodeId>468204</BrowseNodeId><Name>Computer Science</Name><Ancestors><BrowseNode><BrowseNodeId>465600</BrowseNodeId><Name>New &amp; Used Textbooks</Name><Ancestors><BrowseNode><BrowseNodeId>2349030011</BrowseNodeId><Name>Specialty Boutique</Name><Ancestors><BrowseNode><BrowseNodeId>283155</BrowseNodeId><Name>Books</Name></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></BrowseNodes></Item><Item><ASIN>B003BVK4BK</ASIN><DetailPageURL>http://www.amazon.com/Rubys-Diary-Reflections-Lost-Gained/dp/B003BVK4BK%3FSubscriptionId%3D0XQXXC6YV2C85DX1BF02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3DB003BVK4BK</DetailPageURL><ItemLinks><ItemLink><Description>Technical Details</Description><URL>http://www.amazon.com/Rubys-Diary-Reflections-Lost-Gained/dp/tech-data/B003BVK4BK%3FSubscriptionId%3D0XQXXC6YV2C85DX1BF02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB003BVK4BK</URL></ItemLink><ItemLink><Description>Add To Baby Registry</Description><URL>http://www.amazon.com/gp/registry/baby/add-item.html%3Fasin.0%3DB003BVK4BK%26SubscriptionId%3D0XQXXC6YV2C85DX1BF02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB003BVK4BK</URL></ItemLink><ItemLink><Description>Add To Wedding Registry</Description><URL>http://www.amazon.com/gp/registry/wedding/add-item.html%3Fasin.0%3DB003BVK4BK%26SubscriptionId%3D0XQXXC6YV2C85DX1BF02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB003BVK4BK</URL></ItemLink><ItemLink><Description>Add To Wishlist</Description><URL>http://www.amazon.com/gp/registry/wishlist/add-item.html%3Fasin.0%3DB003BVK4BK%26SubscriptionId%3D0XQXXC6YV2C85DX1BF02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB003BVK4BK</URL></ItemLink><ItemLink><Description>Tell A Friend</Description><URL>http://www.amazon.com/gp/pdp/taf/B003BVK4BK%3FSubscriptionId%3D0XQXXC6YV2C85DX1BF02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB003BVK4BK</URL></ItemLink><ItemLink><Description>All Customer Reviews</Description><URL>http://www.amazon.com/review/product/B003BVK4BK%3FSubscriptionId%3D0XQXXC6YV2C85DX1BF02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB003BVK4BK</URL></ItemLink><ItemLink><Description>All Offers</Description><URL>http://www.amazon.com/gp/offer-listing/B003BVK4BK%3FSubscriptionId%3D0XQXXC6YV2C85DX1BF02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB003BVK4BK</URL></ItemLink></ItemLinks><SalesRank>127714</SalesRank><SmallImage><URL>http://ecx.images-amazon.com/images/I/51iThHTGAAL._SL75_.jpg</URL><Height Units="pixels">75</Height><Width Units="pixels">44</Width></SmallImage><MediumImage><URL>http://ecx.images-amazon.com/images/I/51iThHTGAAL._SL160_.jpg</URL><Height Units="pixels">160</Height><Width Units="pixels">95</Width></MediumImage><LargeImage><URL>http://ecx.images-amazon.com/images/I/51iThHTGAAL.jpg</URL><Height Units="pixels">500</Height><Width Units="pixels">296</Width></LargeImage><ImageSets><ImageSet Category="primary"><SwatchImage><URL>http://ecx.images-amazon.com/images/I/51iThHTGAAL._SL30_.jpg</URL><Height Units="pixels">30</Height><Width Units="pixels">18</Width></SwatchImage><SmallImage><URL>http://ecx.images-amazon.com/images/I/51iThHTGAAL._SL75_.jpg</URL><Height Units="pixels">75</Height><Width Units="pixels">44</Width></SmallImage><ThumbnailImage><URL>http://ecx.images-amazon.com/images/I/51iThHTGAAL._SL75_.jpg</URL><Height Units="pixels">75</Height><Width Units="pixels">44</Width></ThumbnailImage><TinyImage><URL>http://ecx.images-amazon.com/images/I/51iThHTGAAL._SL110_.jpg</URL><Height Units="pixels">110</Height><Width Units="pixels">65</Width></TinyImage><MediumImage><URL>http://ecx.images-amazon.com/images/I/51iThHTGAAL._SL160_.jpg</URL><Height Units="pixels">160</Height><Width Units="pixels">95</Width></MediumImage><LargeImage><URL>http://ecx.images-amazon.com/images/I/51iThHTGAAL.jpg</URL><Height Units="pixels">500</Height><Width Units="pixels">296</Width></LargeImage></ImageSet></ImageSets><ItemAttributes><Author>Ruby Gettinger</Author><Binding>Hardcover</Binding><DeweyDecimalNumber>613.25092</DeweyDecimalNumber><Format>Bargain Price</Format><Label>William Morrow</Label><Languages><Language><Name>English</Name><Type>Published</Type></Language></Languages><ListPrice><Amount>2199</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$21.99</FormattedPrice></ListPrice><Manufacturer>William Morrow</Manufacturer><NumberOfItems>1</NumberOfItems><NumberOfPages>192</NumberOfPages><PackageDimensions><Height Units="hundredths-inches">110</Height><Length Units="hundredths-inches">830</Length><Weight Units="hundredths-pounds">55</Weight><Width Units="hundredths-inches">480</Width></PackageDimensions><ProductGroup>Book</ProductGroup><ProductTypeName>ABIS_BOOK</ProductTypeName><PublicationDate>2009-09-01</PublicationDate><Publisher>William Morrow</Publisher><ReleaseDate>2009-09-08</ReleaseDate><Studio>William Morrow</Studio><Title>Ruby's Diary: Reflections on All I've Lost and Gained</Title></ItemAttributes><OfferSummary><LowestNewPrice><Amount>375</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$3.75</FormattedPrice></LowestNewPrice><LowestUsedPrice><Amount>227</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$2.27</FormattedPrice></LowestUsedPrice><TotalNew>15</TotalNew><TotalUsed>25</TotalUsed><TotalCollectible>0</TotalCollectible><TotalRefurbished>0</TotalRefurbished></OfferSummary><Offers><TotalOffers>1</TotalOffers><TotalOfferPages>1</TotalOfferPages><Offer><Merchant><MerchantId>ATVPDKIKX0DER</MerchantId><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=ATVPDKIKX0DER</GlancePage><AverageFeedbackRating>0.0</AverageFeedbackRating><TotalFeedback>0</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition></OfferAttributes><OfferListing><OfferListingId>9JnnwUo78dz9bbU6GtdnNjD4kxntbxIkPjgdqyENNyjtB8zo8HOLDHxHMZJFvwbxZyIaBLSU%2B2qozXKCM3f1U0iD1ubUp2QYSee17hAplIw%3D</OfferListingId><Price><Amount>400</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$4.00</FormattedPrice></Price><AmountSaved><Amount>1799</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$17.99</FormattedPrice></AmountSaved><PercentageSaved>82</PercentageSaved><Availability>Usually ships in 24 hours</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>0</MinimumHours><MaximumHours>0</MaximumHours></AvailabilityAttributes><Quantity>-1</Quantity><IsEligibleForSuperSaverShipping>1</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>1</IsFulfilledByAmazon></OfferListing></Offer></Offers><CustomerReviews><IFrameURL>http://www.amazon.com/reviews/iframe?akid=0XQXXC6YV2C85DX1BF02&amp;alinkCode=xm2&amp;asin=B003BVK4BK&amp;atag=ws&amp;exp=2011-05-10T07%3A46%3A32Z&amp;v=2&amp;sig=gcuOLNbhAP2193C%2FZ8XxAPIJJ7mEQLciw%2BFqjT9j3vg%3D</IFrameURL></CustomerReviews><EditorialReviews><EditorialReview><Source>Product Description</Source><Content>&lt;P&gt;When television viewing audiences first met Ruby Gettinger, a mild-mannered, sweet-natured, Southern-food addicted Sunday school teacher, her weight was hovering near 500 pounds. As the ad campaign for the show says, Ruby doesn′t know how she got to this weight, but she knows its killing her. Having been diagnosed with Type 2 Diabetes and told by doctors that she would die if she continued to carry all that weight, Ruby is changing her life to save it. Her honesty, optimism and genuine commitment to uncover all the underlying causes of her addiction--mental, physical and emotional--are inspiring millions of others in the process. So too is her progress. (She′s now down to 360 pounds!)&lt;/P&gt; &lt;P&gt; While Style′s cameras have been following Ruby′s personal journey as she sheds the weight, gets healthier, battles discrimination daily, and struggles to recover lost childhood memories, these excerpts, taken from the journal Ruby carries with her everywhere on the show, include her most intimate reflections, insights and discoveries regarding her life "before" and "during" this incredibly transformative experience. It also includes her fears, hopes and dreams for life after her goal is realized. In addition, the book will feature thoughts from the doctors, dieticians, trainers, therapists, friends and family supporting Ruby′s mission. Everyone following and touched by Ruby′s story will want to read this book.&lt;/P&gt;</Content><IsLinkSuppressed>0</IsLinkSuppressed></EditorialReview></EditorialReviews><SimilarProducts><SimilarProduct><ASIN>B0027HOBMC</ASIN><Title>Ruby: A Journey to Lose the First 100 Lbs.</Title></SimilarProduct><SimilarProduct><ASIN>B003R4ZBRS</ASIN><Title>Half-Assed: A Weight-Loss Memoir</Title></SimilarProduct><SimilarProduct><ASIN>B0043RT8O0</ASIN><Title>703: How I Lost More Than a Quarter Ton and Gained a Life</Title></SimilarProduct><SimilarProduct><ASIN>0767929500</ASIN><Title>Finally Thin!: How I Lost More Than 200 Pounds and Kept Them Off--and How You Can, Too</Title></SimilarProduct><SimilarProduct><ASIN>B00403NG72</ASIN><Title>Angry Fat Girls: 5 Women, 500 Pounds and a Year of Losing It...Again</Title></SimilarProduct></SimilarProducts><BrowseNodes><BrowseNode><BrowseNodeId>2398</BrowseNodeId><Name>Religious</Name><Ancestors><BrowseNode><BrowseNodeId>2396</BrowseNodeId><Name>Leaders &amp; Notable People</Name><Ancestors><BrowseNode><BrowseNodeId>2</BrowseNodeId><Name>Biographies &amp; Memoirs</Name><Ancestors><BrowseNode><BrowseNodeId>1000</BrowseNodeId><Name>Subjects</Name><IsCategoryRoot>1</IsCategoryRoot><Ancestors><BrowseNode><BrowseNodeId>283155</BrowseNodeId><Name>Books</Name></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode><BrowseNode><BrowseNodeId>3048891</BrowseNodeId><Name>Memoirs</Name><Ancestors><BrowseNode><BrowseNodeId>2</BrowseNodeId><Name>Biographies &amp; Memoirs</Name><Ancestors><BrowseNode><BrowseNodeId>1000</BrowseNodeId><Name>Subjects</Name><IsCategoryRoot>1</IsCategoryRoot><Ancestors><BrowseNode><BrowseNodeId>283155</BrowseNodeId><Name>Books</Name></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode><BrowseNode><BrowseNodeId>4615</BrowseNodeId><Name>Diets</Name><Ancestors><BrowseNode><BrowseNodeId>4613</BrowseNodeId><Name>Diets &amp; Weight Loss</Name><Ancestors><BrowseNode><BrowseNodeId>10</BrowseNodeId><Name>Health, Mind &amp; Body</Name><Ancestors><BrowseNode><BrowseNodeId>1000</BrowseNodeId><Name>Subjects</Name><IsCategoryRoot>1</IsCategoryRoot><Ancestors><BrowseNode><BrowseNodeId>283155</BrowseNodeId><Name>Books</Name></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode><BrowseNode><BrowseNodeId>11119</BrowseNodeId><Name>Psychology &amp; Counseling</Name><Ancestors><BrowseNode><BrowseNodeId>10</BrowseNodeId><Name>Health, Mind &amp; Body</Name><Ancestors><BrowseNode><BrowseNodeId>1000</BrowseNodeId><Name>Subjects</Name><IsCategoryRoot>1</IsCategoryRoot><Ancestors><BrowseNode><BrowseNodeId>283155</BrowseNodeId><Name>Books</Name></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode><BrowseNode><BrowseNodeId>4744</BrowseNodeId><Name>Motivational</Name><Ancestors><BrowseNode><BrowseNodeId>4736</BrowseNodeId><Name>Self-Help</Name><Ancestors><BrowseNode><BrowseNodeId>10</BrowseNodeId><Name>Health, Mind &amp; Body</Name><Ancestors><BrowseNode><BrowseNodeId>1000</BrowseNodeId><Name>Subjects</Name><IsCategoryRoot>1</IsCategoryRoot><Ancestors><BrowseNode><BrowseNodeId>283155</BrowseNodeId><Name>Books</Name></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode><BrowseNode><BrowseNodeId>12809</BrowseNodeId><Name>Spirituality</Name><Children><BrowseNode><BrowseNodeId>4745</BrowseNodeId><Name>Personal Transformation</Name></BrowseNode></Children><Ancestors><BrowseNode><BrowseNodeId>22</BrowseNodeId><Name>Religion &amp; Spirituality</Name><Ancestors><BrowseNode><BrowseNodeId>1000</BrowseNodeId><Name>Subjects</Name><IsCategoryRoot>1</IsCategoryRoot><Ancestors><BrowseNode><BrowseNodeId>283155</BrowseNodeId><Name>Books</Name></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></BrowseNodes></Item><Item><ASIN>0596529864</ASIN><DetailPageURL>http://www.amazon.com/Learning-Ruby-Michael-James-Fitzgerald/dp/0596529864%3FSubscriptionId%3D0XQXXC6YV2C85DX1BF02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3D0596529864</DetailPageURL><ItemLinks><ItemLink><Description>Technical Details</Description><URL>http://www.amazon.com/Learning-Ruby-Michael-James-Fitzgerald/dp/tech-data/0596529864%3FSubscriptionId%3D0XQXXC6YV2C85DX1BF02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0596529864</URL></ItemLink><ItemLink><Description>Add To Baby Registry</Description><URL>http://www.amazon.com/gp/registry/baby/add-item.html%3Fasin.0%3D0596529864%26SubscriptionId%3D0XQXXC6YV2C85DX1BF02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0596529864</URL></ItemLink><ItemLink><Description>Add To Wedding Registry</Description><URL>http://www.amazon.com/gp/registry/wedding/add-item.html%3Fasin.0%3D0596529864%26SubscriptionId%3D0XQXXC6YV2C85DX1BF02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0596529864</URL></ItemLink><ItemLink><Description>Add To Wishlist</Description><URL>http://www.amazon.com/gp/registry/wishlist/add-item.html%3Fasin.0%3D0596529864%26SubscriptionId%3D0XQXXC6YV2C85DX1BF02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0596529864</URL></ItemLink><ItemLink><Description>Tell A Friend</Description><URL>http://www.amazon.com/gp/pdp/taf/0596529864%3FSubscriptionId%3D0XQXXC6YV2C85DX1BF02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0596529864</URL></ItemLink><ItemLink><Description>All Customer Reviews</Description><URL>http://www.amazon.com/review/product/0596529864%3FSubscriptionId%3D0XQXXC6YV2C85DX1BF02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0596529864</URL></ItemLink><ItemLink><Description>All Offers</Description><URL>http://www.amazon.com/gp/offer-listing/0596529864%3FSubscriptionId%3D0XQXXC6YV2C85DX1BF02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0596529864</URL></ItemLink></ItemLinks><SalesRank>193053</SalesRank><SmallImage><URL>http://ecx.images-amazon.com/images/I/41LTzlxq-JL._SL75_.jpg</URL><Height Units="pixels">75</Height><Width Units="pixels">57</Width></SmallImage><MediumImage><URL>http://ecx.images-amazon.com/images/I/41LTzlxq-JL._SL160_.jpg</URL><Height Units="pixels">160</Height><Width Units="pixels">122</Width></MediumImage><LargeImage><URL>http://ecx.images-amazon.com/images/I/41LTzlxq-JL.jpg</URL><Height Units="pixels">420</Height><Width Units="pixels">320</Width></LargeImage><ImageSets><ImageSet Category="primary"><SwatchImage><URL>http://ecx.images-amazon.com/images/I/41LTzlxq-JL._SL30_.jpg</URL><Height Units="pixels">30</Height><Width Units="pixels">23</Width></SwatchImage><SmallImage><URL>http://ecx.images-amazon.com/images/I/41LTzlxq-JL._SL75_.jpg</URL><Height Units="pixels">75</Height><Width Units="pixels">57</Width></SmallImage><ThumbnailImage><URL>http://ecx.images-amazon.com/images/I/41LTzlxq-JL._SL75_.jpg</URL><Height Units="pixels">75</Height><Width Units="pixels">57</Width></ThumbnailImage><TinyImage><URL>http://ecx.images-amazon.com/images/I/41LTzlxq-JL._SL110_.jpg</URL><Height Units="pixels">110</Height><Width Units="pixels">84</Width></TinyImage><MediumImage><URL>http://ecx.images-amazon.com/images/I/41LTzlxq-JL._SL160_.jpg</URL><Height Units="pixels">160</Height><Width Units="pixels">122</Width></MediumImage><LargeImage><URL>http://ecx.images-amazon.com/images/I/41LTzlxq-JL.jpg</URL><Height Units="pixels">420</Height><Width Units="pixels">320</Width></LargeImage></ImageSet></ImageSets><ItemAttributes><Author>Michael James Fitzgerald</Author><Binding>Paperback</Binding><DeweyDecimalNumber>005.1</DeweyDecimalNumber><EAN>9780596529864</EAN><EANList><EANListElement>9780596529864</EANListElement></EANList><Edition>1</Edition><Feature>ISBN13: 9780596529864</Feature><Feature>Condition: USED - Very Good</Feature><Feature>Notes: BUY WITH CONFIDENCE, Over one million books sold! 98% Positive feedback. Compare our books, prices and service to the competition. 100% Satisfaction Guaranteed</Feature><ISBN>0596529864</ISBN><IsEligibleForTradeIn>1</IsEligibleForTradeIn><ItemDimensions><Height Units="hundredths-inches">62</Height><Length Units="hundredths-inches">916</Length><Weight Units="hundredths-pounds">91</Weight><Width Units="hundredths-inches">708</Width></ItemDimensions><Label>O'Reilly Media</Label><Languages><Language><Name>English</Name><Type>Unknown</Type></Language><Language><Name>English</Name><Type>Original Language</Type></Language><Language><Name>English</Name><Type>Published</Type></Language></Languages><ListPrice><Amount>3499</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$34.99</FormattedPrice></ListPrice><Manufacturer>O'Reilly Media</Manufacturer><NumberOfItems>1</NumberOfItems><NumberOfPages>275</NumberOfPages><PackageDimensions><Height Units="hundredths-inches">70</Height><Length Units="hundredths-inches">900</Length><Weight Units="hundredths-pounds">80</Weight><Width Units="hundredths-inches">700</Width></PackageDimensions><ProductGroup>Book</ProductGroup><ProductTypeName>ABIS_BOOK</ProductTypeName><PublicationDate>2007-05-21</PublicationDate><Publisher>O'Reilly Media</Publisher><Studio>O'Reilly Media</Studio><Title>Learning Ruby</Title><TradeInValue><Amount>25</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$0.25</FormattedPrice></TradeInValue></ItemAttributes><OfferSummary><LowestNewPrice><Amount>1212</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$12.12</FormattedPrice></LowestNewPrice><LowestUsedPrice><Amount>188</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$1.88</FormattedPrice></LowestUsedPrice><TotalNew>31</TotalNew><TotalUsed>24</TotalUsed><TotalCollectible>0</TotalCollectible><TotalRefurbished>0</TotalRefurbished></OfferSummary><Offers><TotalOffers>1</TotalOffers><TotalOfferPages>1</TotalOfferPages><Offer><Merchant><MerchantId>ATVPDKIKX0DER</MerchantId><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=ATVPDKIKX0DER</GlancePage><AverageFeedbackRating>0.0</AverageFeedbackRating><TotalFeedback>0</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition></OfferAttributes><OfferListing><OfferListingId>iyq9EU9y2BRNPQXxfuKEVYguIFM%2BLmhk4mBsAzkKFPhHmQaSUWzZK4BWRE2OKR73huB%2BxLG9veA7S5remSNGUM3DO1GEuLPzSgp9pXtuX30%3D</OfferListingId><Price><Amount>2285</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$22.85</FormattedPrice></Price><AmountSaved><Amount>1214</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$12.14</FormattedPrice></AmountSaved><PercentageSaved>35</PercentageSaved><Availability>Usually ships in 24 hours</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>0</MinimumHours><MaximumHours>0</MaximumHours></AvailabilityAttributes><Quantity>-1</Quantity><IsEligibleForSuperSaverShipping>1</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>1</IsFulfilledByAmazon></OfferListing></Offer></Offers><CustomerReviews><IFrameURL>http://www.amazon.com/reviews/iframe?akid=0XQXXC6YV2C85DX1BF02&amp;alinkCode=xm2&amp;asin=0596529864&amp;atag=ws&amp;exp=2011-05-10T07%3A46%3A32Z&amp;v=2&amp;sig=Vy3A8yhCUUGJ355wlizJEI%2BQPKKCB0lgMJ0r1sR0jF0%3D</IFrameURL></CustomerReviews><EditorialReviews><EditorialReview><Source>Product Description</Source><Content>&lt;DIV&gt;&lt;p&gt;You don't have to know everything about a car to drive one, and you don't need to know everything about Ruby to start programming with it. Written for both experienced and new programmers alike, &lt;I&gt;Learning Ruby&lt;/I&gt; is a just-get-in-and-drive book -- a hands-on tutorial that offers lots of Ruby programs and lets you know how and why they work, just enough to get you rolling down the road.&lt;br&gt;&lt;br&gt; Interest in Ruby stems from the popularity of Rails, the web development framework that's attracting new devotees and refugees from Java and PHP. But there are plenty of other uses for this versatile language. The best way to learn is to just try the code! You'll find examples on nearly every page of this book that you can imitate and hack. Briefly, this book:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;Outlines many of the most important features of Ruby&lt;/li&gt; &lt;li&gt;Demonstrates how to use conditionals, and how to manipulate strings in Ruby. Includes a section on regular expressions&lt;/li&gt; &lt;li&gt;Describes how to use operators, basic math, functions from the Math module, rational numbers, etc.&lt;/li&gt; &lt;li&gt;Talks you through Ruby arrays, and demonstrates hashes in detail&lt;/li&gt; &lt;li&gt;Explains how to process files with Ruby&lt;/li&gt; &lt;li&gt;Discusses Ruby classes and modules (mixins) in detail, including a brief introduction to object-oriented programming (OOP)&lt;/li&gt; &lt;li&gt;Introduces processing XML, the Tk toolkit, RubyGems, reflection, RDoc, embedded Ruby, metaprogramming, exception handling, and other topics&lt;/li&gt; &lt;li&gt;Acquaints you with some of the essentials of Rails, and includes a short Rails tutorial.&lt;/li&gt; &lt;/ul&gt; Each chapter concludes with a set of review questions, and appendices provide you with a glossary of terms related to Ruby programming, plus reference material from the book in one convenient location. If you want to take Ruby out for a drive, &lt;I&gt;Learning Ruby&lt;/I&gt; holds the keys.&lt;/div&gt;</Content><IsLinkSuppressed>0</IsLinkSuppressed></EditorialReview></EditorialReviews><SimilarProducts><SimilarProduct><ASIN>0596516177</ASIN><Title>The Ruby Programming Language</Title></SimilarProduct><SimilarProduct><ASIN>B003D3OGCY</ASIN><Title>Ruby on Rails: Up and Running</Title></SimilarProduct><SimilarProduct><ASIN>0596523696</ASIN><Title>Ruby Cookbook (Cookbooks (O'Reilly))</Title></SimilarProduct><SimilarProduct><ASIN>0596527314</ASIN><Title>Rails Cookbook (Cookbooks (O'Reilly))</Title></SimilarProduct><SimilarProduct><ASIN>0596518773</ASIN><Title>Learning Rails</Title></SimilarProduct></SimilarProducts><BrowseNodes><BrowseNode><BrowseNodeId>3952</BrowseNodeId><Name>Languages &amp; Tools</Name><Children><BrowseNode><BrowseNodeId>379359011</BrowseNodeId><Name>Ajax</Name></BrowseNode><BrowseNode><BrowseNodeId>3954</BrowseNodeId><Name>Assembly Language Programming</Name></BrowseNode><BrowseNode><BrowseNodeId>3955</BrowseNodeId><Name>Borland Delphi</Name></BrowseNode><BrowseNode><BrowseNodeId>697342</BrowseNodeId><Name>C#</Name></BrowseNode><BrowseNode><BrowseNodeId>379357011</BrowseNodeId><Name>CSS</Name></BrowseNode><BrowseNode><BrowseNodeId>3970</BrowseNodeId><Name>Compiler Design</Name></BrowseNode><BrowseNode><BrowseNodeId>3971</BrowseNodeId><Name>Compilers</Name></BrowseNode><BrowseNode><BrowseNodeId>3977</BrowseNodeId><Name>Fortran</Name></BrowseNode><BrowseNode><BrowseNodeId>3981</BrowseNodeId><Name>Lisp</Name></BrowseNode><BrowseNode><BrowseNodeId>3987</BrowseNodeId><Name>Prolog</Name></BrowseNode><BrowseNode><BrowseNodeId>285856</BrowseNodeId><Name>Python</Name></BrowseNode><BrowseNode><BrowseNodeId>3996</BrowseNodeId><Name>Visual Basic</Name></BrowseNode><BrowseNode><BrowseNodeId>285859</BrowseNodeId><Name>XHTML</Name></BrowseNode><BrowseNode><BrowseNodeId>4052</BrowseNodeId><Name>XML</Name></BrowseNode></Children><Ancestors><BrowseNode><BrowseNodeId>3839</BrowseNodeId><Name>Programming</Name><Ancestors><BrowseNode><BrowseNodeId>5</BrowseNodeId><Name>Computers &amp; Internet</Name><Ancestors><BrowseNode><BrowseNodeId>1000</BrowseNodeId><Name>Subjects</Name><IsCategoryRoot>1</IsCategoryRoot><Ancestors><BrowseNode><BrowseNodeId>283155</BrowseNodeId><Name>Books</Name></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode><BrowseNode><BrowseNodeId>4013</BrowseNodeId><Name>Object-Oriented Design</Name><Ancestors><BrowseNode><BrowseNodeId>4011</BrowseNodeId><Name>Software Design, Testing &amp; Engineering</Name><Ancestors><BrowseNode><BrowseNodeId>3839</BrowseNodeId><Name>Programming</Name><Ancestors><BrowseNode><BrowseNodeId>5</BrowseNodeId><Name>Computers &amp; Internet</Name><Ancestors><BrowseNode><BrowseNodeId>1000</BrowseNodeId><Name>Subjects</Name><IsCategoryRoot>1</IsCategoryRoot><Ancestors><BrowseNode><BrowseNodeId>283155</BrowseNodeId><Name>Books</Name></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode><BrowseNode><BrowseNodeId>4016</BrowseNodeId><Name>Software Development</Name><Ancestors><BrowseNode><BrowseNodeId>4011</BrowseNodeId><Name>Software Design, Testing &amp; Engineering</Name><Ancestors><BrowseNode><BrowseNodeId>3839</BrowseNodeId><Name>Programming</Name><Ancestors><BrowseNode><BrowseNodeId>5</BrowseNodeId><Name>Computers &amp; Internet</Name><Ancestors><BrowseNode><BrowseNodeId>1000</BrowseNodeId><Name>Subjects</Name><IsCategoryRoot>1</IsCategoryRoot><Ancestors><BrowseNode><BrowseNodeId>283155</BrowseNodeId><Name>Books</Name></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode><BrowseNode><BrowseNodeId>4053</BrowseNodeId><Name>Software</Name><Ancestors><BrowseNode><BrowseNodeId>5</BrowseNodeId><Name>Computers &amp; Internet</Name><Ancestors><BrowseNode><BrowseNodeId>1000</BrowseNodeId><Name>Subjects</Name><IsCategoryRoot>1</IsCategoryRoot><Ancestors><BrowseNode><BrowseNodeId>283155</BrowseNodeId><Name>Books</Name></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode><BrowseNode><BrowseNodeId>491310</BrowseNodeId><Name>Object-Oriented Software Design</Name><Ancestors><BrowseNode><BrowseNodeId>468204</BrowseNodeId><Name>Computer Science</Name><Ancestors><BrowseNode><BrowseNodeId>465600</BrowseNodeId><Name>New &amp; Used Textbooks</Name><Ancestors><BrowseNode><BrowseNodeId>2349030011</BrowseNodeId><Name>Specialty Boutique</Name><Ancestors><BrowseNode><BrowseNodeId>283155</BrowseNodeId><Name>Books</Name></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode><BrowseNode><BrowseNodeId>491314</BrowseNodeId><Name>Programming Languages</Name><Ancestors><BrowseNode><BrowseNodeId>468204</BrowseNodeId><Name>Computer Science</Name><Ancestors><BrowseNode><BrowseNodeId>465600</BrowseNodeId><Name>New &amp; Used Textbooks</Name><Ancestors><BrowseNode><BrowseNodeId>2349030011</BrowseNodeId><Name>Specialty Boutique</Name><Ancestors><BrowseNode><BrowseNodeId>283155</BrowseNodeId><Name>Books</Name></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode><BrowseNode><BrowseNodeId>491316</BrowseNodeId><Name>Software Design &amp; Engineering</Name><Ancestors><BrowseNode><BrowseNodeId>468204</BrowseNodeId><Name>Computer Science</Name><Ancestors><BrowseNode><BrowseNodeId>465600</BrowseNodeId><Name>New &amp; Used Textbooks</Name><Ancestors><BrowseNode><BrowseNodeId>2349030011</BrowseNodeId><Name>Specialty Boutique</Name><Ancestors><BrowseNode><BrowseNodeId>283155</BrowseNodeId><Name>Books</Name></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></BrowseNodes></Item><Item><ASIN>0596523009</ASIN><DetailPageURL>http://www.amazon.com/Ruby-Best-Practices-Gregory-Brown/dp/0596523009%3FSubscriptionId%3D0XQXXC6YV2C85DX1BF02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3D0596523009</DetailPageURL><ItemLinks><ItemLink><Description>Technical Details</Description><URL>http://www.amazon.com/Ruby-Best-Practices-Gregory-Brown/dp/tech-data/0596523009%3FSubscriptionId%3D0XQXXC6YV2C85DX1BF02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0596523009</URL></ItemLink><ItemLink><Description>Add To Baby Registry</Description><URL>http://www.amazon.com/gp/registry/baby/add-item.html%3Fasin.0%3D0596523009%26SubscriptionId%3D0XQXXC6YV2C85DX1BF02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0596523009</URL></ItemLink><ItemLink><Description>Add To Wedding Registry</Description><URL>http://www.amazon.com/gp/registry/wedding/add-item.html%3Fasin.0%3D0596523009%26SubscriptionId%3D0XQXXC6YV2C85DX1BF02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0596523009</URL></ItemLink><ItemLink><Description>Add To Wishlist</Description><URL>http://www.amazon.com/gp/registry/wishlist/add-item.html%3Fasin.0%3D0596523009%26SubscriptionId%3D0XQXXC6YV2C85DX1BF02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0596523009</URL></ItemLink><ItemLink><Description>Tell A Friend</Description><URL>http://www.amazon.com/gp/pdp/taf/0596523009%3FSubscriptionId%3D0XQXXC6YV2C85DX1BF02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0596523009</URL></ItemLink><ItemLink><Description>All Customer Reviews</Description><URL>http://www.amazon.com/review/product/0596523009%3FSubscriptionId%3D0XQXXC6YV2C85DX1BF02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0596523009</URL></ItemLink><ItemLink><Description>All Offers</Description><URL>http://www.amazon.com/gp/offer-listing/0596523009%3FSubscriptionId%3D0XQXXC6YV2C85DX1BF02%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0596523009</URL></ItemLink></ItemLinks><SalesRank>283860</SalesRank><SmallImage><URL>http://ecx.images-amazon.com/images/I/41oUi5kf%2BKL._SL75_.jpg</URL><Height Units="pixels">75</Height><Width Units="pixels">57</Width></SmallImage><MediumImage><URL>http://ecx.images-amazon.com/images/I/41oUi5kf%2BKL._SL160_.jpg</URL><Height Units="pixels">160</Height><Width Units="pixels">122</Width></MediumImage><LargeImage><URL>http://ecx.images-amazon.com/images/I/41oUi5kf%2BKL.jpg</URL><Height Units="pixels">420</Height><Width Units="pixels">320</Width></LargeImage><ImageSets><ImageSet Category="primary"><SwatchImage><URL>http://ecx.images-amazon.com/images/I/41oUi5kf%2BKL._SL30_.jpg</URL><Height Units="pixels">30</Height><Width Units="pixels">23</Width></SwatchImage><SmallImage><URL>http://ecx.images-amazon.com/images/I/41oUi5kf%2BKL._SL75_.jpg</URL><Height Units="pixels">75</Height><Width Units="pixels">57</Width></SmallImage><ThumbnailImage><URL>http://ecx.images-amazon.com/images/I/41oUi5kf%2BKL._SL75_.jpg</URL><Height Units="pixels">75</Height><Width Units="pixels">57</Width></ThumbnailImage><TinyImage><URL>http://ecx.images-amazon.com/images/I/41oUi5kf%2BKL._SL110_.jpg</URL><Height Units="pixels">110</Height><Width Units="pixels">84</Width></TinyImage><MediumImage><URL>http://ecx.images-amazon.com/images/I/41oUi5kf%2BKL._SL160_.jpg</URL><Height Units="pixels">160</Height><Width Units="pixels">122</Width></MediumImage><LargeImage><URL>http://ecx.images-amazon.com/images/I/41oUi5kf%2BKL.jpg</URL><Height Units="pixels">420</Height><Width Units="pixels">320</Width></LargeImage></ImageSet></ImageSets><ItemAttributes><Author>Gregory T Brown</Author><Binding>Paperback</Binding><DeweyDecimalNumber>005.117</DeweyDecimalNumber><EAN>9780596523008</EAN><EANList><EANListElement>9780596523008</EANListElement></EANList><Edition>1</Edition><Feature>ISBN13: 9780596523008</Feature><Feature>Condition: USED - Good</Feature><Feature>Notes: BUY WITH CONFIDENCE, Over one million books sold! 98% Positive feedback. Compare our books, prices and service to the competition. 100% Satisfaction Guaranteed</Feature><ISBN>0596523009</ISBN><IsEligibleForTradeIn>1</IsEligibleForTradeIn><ItemDimensions><Height Units="hundredths-inches">67</Height><Length Units="hundredths-inches">914</Length><Weight Units="hundredths-pounds">98</Weight><Width Units="hundredths-inches">704</Width></ItemDimensions><Label>O'Reilly Media</Label><Languages><Language><Name>English</Name><Type>Unknown</Type></Language><Language><Name>English</Name><Type>Original Language</Type></Language><Language><Name>English</Name><Type>Published</Type></Language></Languages><ListPrice><Amount>3499</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$34.99</FormattedPrice></ListPrice><Manufacturer>O'Reilly Media</Manufacturer><NumberOfItems>1</NumberOfItems><NumberOfPages>336</NumberOfPages><PackageDimensions><Height Units="hundredths-inches">71</Height><Length Units="hundredths-inches">913</Length><Weight Units="hundredths-pounds">106</Weight><Width Units="hundredths-inches">701</Width></PackageDimensions><ProductGroup>Book</ProductGroup><ProductTypeName>ABIS_BOOK</ProductTypeName><PublicationDate>2009-06-23</PublicationDate><Publisher>O'Reilly Media</Publisher><Studio>O'Reilly Media</Studio><Title>Ruby Best Practices</Title><TradeInValue><Amount>25</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$0.25</FormattedPrice></TradeInValue></ItemAttributes><OfferSummary><LowestNewPrice><Amount>1448</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$14.48</FormattedPrice></LowestNewPrice><LowestUsedPrice><Amount>845</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$8.45</FormattedPrice></LowestUsedPrice><TotalNew>39</TotalNew><TotalUsed>23</TotalUsed><TotalCollectible>0</TotalCollectible><TotalRefurbished>0</TotalRefurbished></OfferSummary><Offers><TotalOffers>1</TotalOffers><TotalOfferPages>1</TotalOfferPages><Offer><Merchant><MerchantId>ATVPDKIKX0DER</MerchantId><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=ATVPDKIKX0DER</GlancePage><AverageFeedbackRating>0.0</AverageFeedbackRating><TotalFeedback>0</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition></OfferAttributes><OfferListing><OfferListingId>Jy9lcxmO9tACHjkQaeKI7eQS8%2F%2Ftw6wogZy7LC2AV2e6vxDuROQwJ7uHbjiyKIlZ3kY30yA1N4SNDQ9kPL0G2uviPW6EmKaNW55%2FV4Czl5E%3D</OfferListingId><Price><Amount>2285</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$22.85</FormattedPrice></Price><AmountSaved><Amount>1214</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$12.14</FormattedPrice></AmountSaved><PercentageSaved>35</PercentageSaved><Availability>Usually ships in 24 hours</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>0</MinimumHours><MaximumHours>0</MaximumHours></AvailabilityAttributes><Quantity>-1</Quantity><IsEligibleForSuperSaverShipping>1</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>1</IsFulfilledByAmazon></OfferListing></Offer></Offers><CustomerReviews><IFrameURL>http://www.amazon.com/reviews/iframe?akid=0XQXXC6YV2C85DX1BF02&amp;alinkCode=xm2&amp;asin=0596523009&amp;atag=ws&amp;exp=2011-05-10T07%3A46%3A32Z&amp;v=2&amp;sig=jgc8Q9wkKJG%2B1EQX%2FJ1VY0PKshliiplQUEJApewLQJQ%3D</IFrameURL></CustomerReviews><EditorialReviews><EditorialReview><Source>Product Description</Source><Content>&lt;DIV&gt;&lt;p&gt;How do you write truly elegant code with Ruby? &lt;I&gt;Ruby Best Practices&lt;/I&gt; is for programmers who want to use Ruby as experienced Rubyists do. Written by the developer of the Ruby project Prawn, this concise book explains how to design beautiful APIs and domain-specific languages with Ruby, as well as how to work with functional programming ideas and techniques that can simplify your code and make you more productive. You'll learn how to write code that's readable, expressive, and much more.&lt;br&gt;&lt;br&gt;&lt;I&gt;Ruby Best Practices&lt;/I&gt; will help you:&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;ul&gt;&lt;li&gt;Understand the secret powers unlocked by Ruby's code blocks&lt;/li&gt; &lt;li&gt;Learn how to bend Ruby code without breaking it, such as mixing in modules on the fly&lt;/li&gt; &lt;li&gt;Discover the ins and outs of testing and debugging, and how to design for testability&lt;/li&gt; &lt;li&gt;Learn to write faster code by keeping things simple&lt;/li&gt; &lt;li&gt;Develop strategies for text processing and file management, including regular expressions&lt;/li&gt; &lt;li&gt;Understand how and why things can go wrong&lt;/li&gt; &lt;li&gt;Reduce cultural barriers by leveraging Ruby's multilingual capabilities&lt;/li&gt; &lt;/ul&gt;&lt;p&gt; This book also offers you comprehensive chapters on driving code through tests, designing APIs, and project maintenance. Learn how to make the most of this rich, beautiful language with &lt;I&gt;Ruby Best Practices&lt;/I&gt;.&lt;/p&gt;&lt;/div&gt;</Content><IsLinkSuppressed>0</IsLinkSuppressed></EditorialReview></EditorialReviews><SimilarProducts><SimilarProduct><ASIN>0596516177</ASIN><Title>The Ruby Programming Language</Title></SimilarProduct><SimilarProduct><ASIN>1934356476</ASIN><Title>Metaprogramming Ruby: Program Like the Ruby Pros</Title></SimilarProduct><SimilarProduct><ASIN>0596523696</ASIN><Title>Ruby Cookbook (Cookbooks (O'Reilly))</Title></SimilarProduct><SimilarProduct><ASIN>0321490452</ASIN><Title>Design Patterns in Ruby</Title></SimilarProduct><SimilarProduct><ASIN>1933988657</ASIN><Title>The Well-Grounded Rubyist</Title></SimilarProduct></SimilarProducts><BrowseNodes><BrowseNode><BrowseNodeId>3952</BrowseNodeId><Name>Languages &amp; Tools</Name><Children><BrowseNode><BrowseNodeId>379359011</BrowseNodeId><Name>Ajax</Name></BrowseNode><BrowseNode><BrowseNodeId>3954</BrowseNodeId><Name>Assembly Language Programming</Name></BrowseNode><BrowseNode><BrowseNodeId>3955</BrowseNodeId><Name>Borland Delphi</Name></BrowseNode><BrowseNode><BrowseNodeId>697342</BrowseNodeId><Name>C#</Name></BrowseNode><BrowseNode><BrowseNodeId>379357011</BrowseNodeId><Name>CSS</Name></BrowseNode><BrowseNode><BrowseNodeId>3970</BrowseNodeId><Name>Compiler Design</Name></BrowseNode><BrowseNode><BrowseNodeId>3971</BrowseNodeId><Name>Compilers</Name></BrowseNode><BrowseNode><BrowseNodeId>3977</BrowseNodeId><Name>Fortran</Name></BrowseNode><BrowseNode><BrowseNodeId>3981</BrowseNodeId><Name>Lisp</Name></BrowseNode><BrowseNode><BrowseNodeId>3987</BrowseNodeId><Name>Prolog</Name></BrowseNode><BrowseNode><BrowseNodeId>285856</BrowseNodeId><Name>Python</Name></BrowseNode><BrowseNode><BrowseNodeId>3996</BrowseNodeId><Name>Visual Basic</Name></BrowseNode><BrowseNode><BrowseNodeId>285859</BrowseNodeId><Name>XHTML</Name></BrowseNode><BrowseNode><BrowseNodeId>4052</BrowseNodeId><Name>XML</Name></BrowseNode></Children><Ancestors><BrowseNode><BrowseNodeId>3839</BrowseNodeId><Name>Programming</Name><Ancestors><BrowseNode><BrowseNodeId>5</BrowseNodeId><Name>Computers &amp; Internet</Name><Ancestors><BrowseNode><BrowseNodeId>1000</BrowseNodeId><Name>Subjects</Name><IsCategoryRoot>1</IsCategoryRoot><Ancestors><BrowseNode><BrowseNodeId>283155</BrowseNodeId><Name>Books</Name></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode><BrowseNode><BrowseNodeId>4013</BrowseNodeId><Name>Object-Oriented Design</Name><Ancestors><BrowseNode><BrowseNodeId>4011</BrowseNodeId><Name>Software Design, Testing &amp; Engineering</Name><Ancestors><BrowseNode><BrowseNodeId>3839</BrowseNodeId><Name>Programming</Name><Ancestors><BrowseNode><BrowseNodeId>5</BrowseNodeId><Name>Computers &amp; Internet</Name><Ancestors><BrowseNode><BrowseNodeId>1000</BrowseNodeId><Name>Subjects</Name><IsCategoryRoot>1</IsCategoryRoot><Ancestors><BrowseNode><BrowseNodeId>283155</BrowseNodeId><Name>Books</Name></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode><BrowseNode><BrowseNodeId>4016</BrowseNodeId><Name>Software Development</Name><Ancestors><BrowseNode><BrowseNodeId>4011</BrowseNodeId><Name>Software Design, Testing &amp; Engineering</Name><Ancestors><BrowseNode><BrowseNodeId>3839</BrowseNodeId><Name>Programming</Name><Ancestors><BrowseNode><BrowseNodeId>5</BrowseNodeId><Name>Computers &amp; Internet</Name><Ancestors><BrowseNode><BrowseNodeId>1000</BrowseNodeId><Name>Subjects</Name><IsCategoryRoot>1</IsCategoryRoot><Ancestors><BrowseNode><BrowseNodeId>283155</BrowseNodeId><Name>Books</Name></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode><BrowseNode><BrowseNodeId>4133</BrowseNodeId><Name>Testing</Name><Ancestors><BrowseNode><BrowseNodeId>4011</BrowseNodeId><Name>Software Design, Testing &amp; Engineering</Name><Ancestors><BrowseNode><BrowseNodeId>3839</BrowseNodeId><Name>Programming</Name><Ancestors><BrowseNode><BrowseNodeId>5</BrowseNodeId><Name>Computers &amp; Internet</Name><Ancestors><BrowseNode><BrowseNodeId>1000</BrowseNodeId><Name>Subjects</Name><IsCategoryRoot>1</IsCategoryRoot><Ancestors><BrowseNode><BrowseNodeId>283155</BrowseNodeId><Name>Books</Name></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode><BrowseNode><BrowseNodeId>3600</BrowseNodeId><Name>Programming</Name><Ancestors><BrowseNode><BrowseNodeId>3510</BrowseNodeId><Name>Web Development</Name><Ancestors><BrowseNode><BrowseNodeId>5</BrowseNodeId><Name>Computers &amp; Internet</Name><Ancestors><BrowseNode><BrowseNodeId>1000</BrowseNodeId><Name>Subjects</Name><IsCategoryRoot>1</IsCategoryRoot><Ancestors><BrowseNode><BrowseNodeId>283155</BrowseNodeId><Name>Books</Name></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode><BrowseNode><BrowseNodeId>491314</BrowseNodeId><Name>Programming Languages</Name><Ancestors><BrowseNode><BrowseNodeId>468204</BrowseNodeId><Name>Computer Science</Name><Ancestors><BrowseNode><BrowseNodeId>465600</BrowseNodeId><Name>New &amp; Used Textbooks</Name><Ancestors><BrowseNode><BrowseNodeId>2349030011</BrowseNodeId><Name>Specialty Boutique</Name><Ancestors><BrowseNode><BrowseNodeId>283155</BrowseNodeId><Name>Books</Name></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode><BrowseNode><BrowseNodeId>491316</BrowseNodeId><Name>Software Design &amp; Engineering</Name><Ancestors><BrowseNode><BrowseNodeId>468204</BrowseNodeId><Name>Computer Science</Name><Ancestors><BrowseNode><BrowseNodeId>465600</BrowseNodeId><Name>New &amp; Used Textbooks</Name><Ancestors><BrowseNode><BrowseNodeId>2349030011</BrowseNodeId><Name>Specialty Boutique</Name><Ancestors><BrowseNode><BrowseNodeId>283155</BrowseNodeId><Name>Books</Name></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode><BrowseNode><BrowseNodeId>1288264011</BrowseNodeId><Name>All product</Name><Ancestors><BrowseNode><BrowseNodeId>1267878011</BrowseNodeId><Name>Products</Name><IsCategoryRoot>1</IsCategoryRoot><Ancestors><BrowseNode><BrowseNodeId>1267877011</BrowseNodeId></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode><BrowseNode><BrowseNodeId>1294449011</BrowseNodeId><Name>Books</Name><Ancestors><BrowseNode><BrowseNodeId>1267878011</BrowseNodeId><Name>Products</Name><IsCategoryRoot>1</IsCategoryRoot><Ancestors><BrowseNode><BrowseNodeId>1267877011</BrowseNodeId></BrowseNode></Ancestors></BrowseNode></Ancestors></BrowseNode></BrowseNodes></Item></Items></ItemSearchResponse>
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: amazon-ecs
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.2.1
4
+ version: 2.2.2
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,48 +9,51 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2011-10-25 00:00:00.000000000 +08:00
12
+ date: 2011-11-20 00:00:00.000000000 +08:00
13
13
  default_executable:
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: nokogiri
17
- requirement: &2168864200 !ruby/object:Gem::Requirement
17
+ requirement: &2151988340 !ruby/object:Gem::Requirement
18
18
  none: false
19
19
  requirements:
20
- - - ! '>='
20
+ - - ~>
21
21
  - !ruby/object:Gem::Version
22
- version: 1.4.0
22
+ version: '1.4'
23
23
  type: :runtime
24
24
  prerelease: false
25
- version_requirements: *2168864200
25
+ version_requirements: *2151988340
26
26
  - !ruby/object:Gem::Dependency
27
27
  name: ruby-hmac
28
- requirement: &2168863640 !ruby/object:Gem::Requirement
28
+ requirement: &2151987060 !ruby/object:Gem::Requirement
29
29
  none: false
30
30
  requirements:
31
- - - ! '>='
31
+ - - ~>
32
32
  - !ruby/object:Gem::Version
33
- version: 0.3.2
33
+ version: '0.3'
34
34
  type: :runtime
35
35
  prerelease: false
36
- version_requirements: *2168863640
37
- description: Generic Amazon Product Advertising Ruby API
36
+ version_requirements: *2151987060
37
+ description: Generic Amazon Product Advertising Ruby API.
38
38
  email: herryanto@gmail.com
39
39
  executables: []
40
40
  extensions: []
41
- extra_rdoc_files:
42
- - Readme.rdoc
41
+ extra_rdoc_files: []
43
42
  files:
43
+ - CHANGELOG
44
+ - Gemfile
45
+ - MIT-LICENSE
46
+ - Rakefile
44
47
  - Readme.rdoc
48
+ - amazon-ecs.gemspec
45
49
  - lib/amazon/ecs.rb
46
50
  - test/amazon/ecs_test.rb
51
+ - test/fixtures/item_search.xml
47
52
  has_rdoc: true
48
53
  homepage: https://github.com/jugend/amazon-ecs
49
54
  licenses: []
50
55
  post_install_message:
51
- rdoc_options:
52
- - --inline-source
53
- - --charset=UTF-8
56
+ rdoc_options: []
54
57
  require_paths:
55
58
  - lib
56
59
  required_ruby_version: !ruby/object:Gem::Requirement
@@ -70,5 +73,7 @@ rubyforge_project:
70
73
  rubygems_version: 1.6.2
71
74
  signing_key:
72
75
  specification_version: 2
73
- summary: Generic Amazon Product Advertising Ruby API
74
- test_files: []
76
+ summary: Generic Amazon Product Advertising Ruby API.
77
+ test_files:
78
+ - test/amazon/ecs_test.rb
79
+ - test/fixtures/item_search.xml