amazon-ecs-eb 2.2.12

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,208 @@
1
+ # coding: utf-8
2
+
3
+ require 'rubygems'
4
+ require 'test/unit'
5
+
6
+ require File.expand_path(File.dirname(__FILE__) + '/../../lib/amazon/ecs')
7
+
8
+ class Amazon::EcsTest < Test::Unit::TestCase
9
+
10
+ AWS_ACCESS_KEY_ID = ENV['AWS_ACCESS_KEY_ID'] || ''
11
+ AWS_SECRET_KEY = ENV['AWS_SECRET_KEY'] || ''
12
+
13
+ raise "Please specify set your AWS_ACCESS_KEY_ID" if AWS_ACCESS_KEY_ID.empty?
14
+ raise "Please specify set your AWS_SECRET_KEY" if AWS_SECRET_KEY.empty?
15
+
16
+ Amazon::Ecs.configure do |options|
17
+ options[:response_group] = 'Large'
18
+ options[:AWS_access_key_id] = AWS_ACCESS_KEY_ID
19
+ options[:AWS_secret_key] = AWS_SECRET_KEY
20
+ options[:associate_tag] = 'bookjetty-20'
21
+ end
22
+
23
+ # To print debug information
24
+ # Amazon::Ecs.debug = true
25
+
26
+ # Test item_search
27
+ def test_item_search
28
+ resp = Amazon::Ecs.item_search('ruby')
29
+ assert resp.is_valid_request?,
30
+ "Not a valid request"
31
+ assert (resp.total_results >= 3600),
32
+ "Results returned (#{resp.total_results}) were < 3600"
33
+ assert (resp.total_pages >= 360),
34
+ "Pages returned (#{resp.total_pages}) were < 360"
35
+ end
36
+
37
+ def test_item_search_with_special_characters
38
+ resp = Amazon::Ecs.item_search('()*&^%$')
39
+ assert resp.is_valid_request?,
40
+ "Not a valid request"
41
+ end
42
+
43
+ def test_item_search_with_paging
44
+ resp = Amazon::Ecs.item_search('ruby', :item_page => 2)
45
+ assert resp.is_valid_request?,
46
+ "Not a valid request"
47
+ assert_equal 2, resp.item_page,
48
+ "Page returned (#{resp.item_page}) different from expected (2)"
49
+ end
50
+
51
+ def test_item_search_with_invalid_request
52
+ resp = Amazon::Ecs.item_search(nil)
53
+ assert !resp.is_valid_request?,
54
+ "Expected invalid request error"
55
+ end
56
+
57
+ def test_item_search_with_no_result
58
+ resp = Amazon::Ecs.item_search('afdsafds')
59
+ assert resp.is_valid_request?,
60
+ "Not a valid request"
61
+ assert_equal "We did not find any matches for your request.", resp.error,
62
+ "Error string different from expected"
63
+ end
64
+
65
+ def test_utf8_encoding
66
+ resp = Amazon::Ecs.item_search('ruby', :country => :uk)
67
+ assert resp.is_valid_request?,
68
+ "Not a valid request"
69
+ item = resp.first_item
70
+ assert_no_match /\A&#x.*/, item.get_unescaped("//FormattedPrice"),
71
+ "£ sign converted to ASCII from UTF-8"
72
+ end
73
+
74
+ def test_item_search_by_author
75
+ resp = Amazon::Ecs.item_search('dave', :type => :author)
76
+ assert resp.is_valid_request?,
77
+ "Not a valid request"
78
+ end
79
+
80
+ def test_item_get
81
+ resp = Amazon::Ecs.item_search("0974514055")
82
+ item = resp.first_item
83
+
84
+ # test get
85
+ assert_equal "Programming Ruby: The Pragmatic Programmers' Guide, Second Edition",
86
+ item.get("ItemAttributes/Title"),
87
+ "Title different from expected"
88
+
89
+ # test get_array
90
+ assert_equal ['Dave Thomas', 'Chad Fowler', 'Andy Hunt'],
91
+ item.get_array("Author"),
92
+ "Authors Array different from expected"
93
+
94
+ # test get_hash
95
+ small_image = item.get_hash("SmallImage")
96
+
97
+ assert_equal 3, small_image.keys.size,
98
+ "Image hash key count (#{small_image.keys.size}) different from expected (3)"
99
+ assert_match ".jpg", small_image['URL'],
100
+ "Image type different from expected (.jpg)"
101
+ assert_equal "75", small_image['Height'],
102
+ "Image height (#{small_image['Height']}) different from expected (75)"
103
+ assert_equal "59", small_image['Width'],
104
+ "Image width (#{small_image['Width']}) different from expected (59)"
105
+
106
+ # test /
107
+ reviews = item/"EditorialReview"
108
+ reviews.each do |review|
109
+ # returns unescaped HTML content, Nokogiri escapes all text values
110
+ assert Amazon::Element.get_unescaped(review, 'Source'),
111
+ "XPath editorialreview failed to get source"
112
+ assert Amazon::Element.get_unescaped(review, 'Content'),
113
+ "XPath editorialreview failed to get content"
114
+ end
115
+ end
116
+
117
+ ## Test item_lookup
118
+ def test_item_lookup
119
+ resp = Amazon::Ecs.item_lookup('0974514055')
120
+ assert_equal "Programming Ruby: The Pragmatic Programmers' Guide, Second Edition",
121
+ resp.first_item.get("ItemAttributes/Title"),
122
+ "Title different from expected"
123
+ end
124
+
125
+ def test_item_lookup_with_invalid_request
126
+ resp = Amazon::Ecs.item_lookup(nil)
127
+ assert resp.has_error?,
128
+ "Response should have been invalid"
129
+ assert resp.error,
130
+ "Response should have contained an error"
131
+ end
132
+
133
+ def test_item_lookup_with_no_result
134
+ resp = Amazon::Ecs.item_lookup('abc')
135
+ assert resp.is_valid_request?,
136
+ "Not a valid request"
137
+ assert_match /ABC is not a valid value for ItemId/, resp.error,
138
+ "Error Message for lookup of ASIN = ABC different from expected"
139
+ end
140
+
141
+ def test_get_elements
142
+ resp = Amazon::Ecs.item_lookup('0974514055')
143
+ item = resp.first_item
144
+
145
+ authors = item.get_elements("Author")
146
+ assert_instance_of Array, authors,
147
+ "Authors should be an Array"
148
+ assert_equal 3, authors.size,
149
+ "Author array size (#{authors.size}) different from expected (3)"
150
+ assert_instance_of Amazon::Element, authors.first,
151
+ "Authors array first element (#{authors.first.class}) should be an Amazon::Element"
152
+ assert_equal "Dave Thomas", authors.first.get,
153
+ "First Author (#{authors.first.get}) different from expected (Dave Thomas)"
154
+
155
+ asin = item.get_elements("./ASIN")
156
+ assert_instance_of Array, asin,
157
+ "ASIN should be an Array"
158
+ assert_equal 1, asin.size,
159
+ "ASIN array size (#{asin.size}) different from expected (1)"
160
+ end
161
+
162
+ def test_get_element_and_attributes
163
+ resp = Amazon::Ecs.item_lookup('0974514055')
164
+ item = resp.first_item
165
+
166
+ first_author = item.get_element("Author")
167
+ assert_equal "Dave Thomas", first_author.get,
168
+ "First Author (#{first_author.get}) different from expected (Dave Thomas)"
169
+ assert_nil first_author.attributes['unknown'],
170
+ "First Author 'unknown' attributes should be nil"
171
+
172
+ item_height = item.get_element("ItemDimensions/Height")
173
+ units = item_height.attributes['Units'].inner_html if item_height
174
+ assert_equal "hundredths-inches", units,
175
+ "Item Height 'units' attributes (#{units}) different from expected (hundredths-inches)"
176
+ end
177
+
178
+ def test_multibyte_search
179
+ resp = Amazon::Ecs.item_search("パソコン")
180
+ assert resp.is_valid_request?,
181
+ "Not a valid request"
182
+ end
183
+
184
+ def test_marshal_dump_and_load
185
+ resp = Amazon::Ecs::Response.new(File.read(File.expand_path('../../fixtures/item_search.xml', __FILE__)))
186
+ dumped_resp = Marshal.load(Marshal.dump(resp))
187
+
188
+ assert_equal resp.doc.to_s, dumped_resp.doc.to_s
189
+ assert_equal resp.items.size, dumped_resp.items.size
190
+ assert_equal resp.item_page, dumped_resp.item_page
191
+ assert_equal resp.total_results, dumped_resp.total_results
192
+ assert_equal resp.total_pages, dumped_resp.total_pages
193
+ end
194
+
195
+ def test_other_service_urls
196
+ Amazon::Ecs::SERVICE_URLS.each do |key, value|
197
+ next if key == :us
198
+
199
+ begin
200
+ resp = Amazon::Ecs.item_search('ruby', :country => key)
201
+ assert resp, "#{key} service url (#{value}) is invalid"
202
+ rescue => e
203
+ assert false, "'#{key}' service url (#{value}) is invalid. Error: #{e}"
204
+ puts e.backtrace
205
+ end
206
+ end
207
+ end
208
+ end
@@ -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 ADDED
@@ -0,0 +1,104 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: amazon-ecs-eb
3
+ version: !ruby/object:Gem::Version
4
+ version: 2.2.12
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - Laurens Greven
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2014-08-14 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: nokogiri
16
+ requirement: !ruby/object:Gem::Requirement
17
+ none: false
18
+ requirements:
19
+ - - ~>
20
+ - !ruby/object:Gem::Version
21
+ version: '1.4'
22
+ type: :runtime
23
+ prerelease: false
24
+ version_requirements: !ruby/object:Gem::Requirement
25
+ none: false
26
+ requirements:
27
+ - - ~>
28
+ - !ruby/object:Gem::Version
29
+ version: '1.4'
30
+ - !ruby/object:Gem::Dependency
31
+ name: ruby-hmac
32
+ requirement: !ruby/object:Gem::Requirement
33
+ none: false
34
+ requirements:
35
+ - - ~>
36
+ - !ruby/object:Gem::Version
37
+ version: '0.3'
38
+ type: :runtime
39
+ prerelease: false
40
+ version_requirements: !ruby/object:Gem::Requirement
41
+ none: false
42
+ requirements:
43
+ - - ~>
44
+ - !ruby/object:Gem::Version
45
+ version: '0.3'
46
+ - !ruby/object:Gem::Dependency
47
+ name: exponential-backoff
48
+ requirement: !ruby/object:Gem::Requirement
49
+ none: false
50
+ requirements:
51
+ - - ~>
52
+ - !ruby/object:Gem::Version
53
+ version: 0.0.2
54
+ type: :runtime
55
+ prerelease: false
56
+ version_requirements: !ruby/object:Gem::Requirement
57
+ none: false
58
+ requirements:
59
+ - - ~>
60
+ - !ruby/object:Gem::Version
61
+ version: 0.0.2
62
+ description: Generic Amazon Product Advertising Ruby API with exponential backoff.
63
+ email: laurensgreven@gmail.com
64
+ executables: []
65
+ extensions: []
66
+ extra_rdoc_files: []
67
+ files:
68
+ - amazon-ecs-eb-2.2.11.gem
69
+ - amazon-ecs.gemspec
70
+ - CHANGELOG
71
+ - Gemfile
72
+ - lib/amazon/ecs.rb
73
+ - MIT-LICENSE
74
+ - Rakefile
75
+ - Readme.rdoc
76
+ - test/amazon/ecs_test.rb
77
+ - test/fixtures/item_search.xml
78
+ homepage: https://github.com/jugend/amazon-ecs
79
+ licenses: []
80
+ post_install_message:
81
+ rdoc_options: []
82
+ require_paths:
83
+ - lib
84
+ required_ruby_version: !ruby/object:Gem::Requirement
85
+ none: false
86
+ requirements:
87
+ - - ! '>='
88
+ - !ruby/object:Gem::Version
89
+ version: '0'
90
+ required_rubygems_version: !ruby/object:Gem::Requirement
91
+ none: false
92
+ requirements:
93
+ - - ! '>='
94
+ - !ruby/object:Gem::Version
95
+ version: '0'
96
+ requirements: []
97
+ rubyforge_project:
98
+ rubygems_version: 1.8.28
99
+ signing_key:
100
+ specification_version: 2
101
+ summary: Generic Amazon Product Advertising Ruby API.
102
+ test_files:
103
+ - test/amazon/ecs_test.rb
104
+ - test/fixtures/item_search.xml