sucker 1.0.0.beta.4 → 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (71) hide show
  1. data/CHANGELOG.md +12 -2
  2. data/README.md +5 -2
  3. data/lib/sucker.rbc +341 -0
  4. data/lib/sucker/request.rb +1 -1
  5. data/lib/sucker/request.rbc +2481 -0
  6. data/lib/sucker/response.rb +19 -7
  7. data/lib/sucker/response.rbc +1554 -0
  8. data/lib/sucker/version.rb +2 -2
  9. data/lib/sucker/version.rbc +130 -0
  10. data/spec/fixtures/asins.txt +9406 -406
  11. data/spec/fixtures/cassette_library/integration/alternate_versions.yml +27 -0
  12. data/spec/fixtures/cassette_library/integration/errors.yml +27 -0
  13. data/spec/fixtures/cassette_library/integration/france.yml +27 -0
  14. data/spec/fixtures/cassette_library/integration/images.yml +27 -0
  15. data/spec/fixtures/cassette_library/integration/item_lookup/multiple.yml +27 -0
  16. data/spec/fixtures/cassette_library/integration/item_lookup/single.yml +27 -0
  17. data/spec/fixtures/cassette_library/integration/item_search.yml +27 -0
  18. data/spec/fixtures/cassette_library/integration/japan.yml +27 -0
  19. data/spec/fixtures/cassette_library/integration/keyword_search.yml +27 -0
  20. data/spec/fixtures/cassette_library/integration/kindle.yml +27 -0
  21. data/spec/fixtures/cassette_library/integration/kindle_2.yml +27 -0
  22. data/spec/fixtures/cassette_library/integration/multiple_locales.yml +157 -0
  23. data/spec/fixtures/cassette_library/integration/power_search.yml +27 -0
  24. data/spec/fixtures/cassette_library/integration/related_items/child.yml +27 -0
  25. data/spec/fixtures/cassette_library/integration/related_items/parent.yml +27 -0
  26. data/spec/fixtures/cassette_library/integration/seller_listings_search.yml +27 -0
  27. data/spec/fixtures/cassette_library/integration/twenty_items.yml +27 -0
  28. data/spec/fixtures/cassette_library/unit/sucker/request.yml +29 -0
  29. data/spec/fixtures/cassette_library/unit/sucker/response.yml +27 -0
  30. data/spec/integration/alternate_versions_spec.rb +28 -20
  31. data/spec/integration/alternate_versions_spec.rbc +843 -0
  32. data/spec/integration/errors_spec.rb +10 -6
  33. data/spec/integration/errors_spec.rbc +964 -0
  34. data/spec/integration/france_spec.rb +33 -25
  35. data/spec/integration/france_spec.rbc +1012 -0
  36. data/spec/integration/images_spec.rb +32 -24
  37. data/spec/integration/images_spec.rbc +1047 -0
  38. data/spec/integration/item_lookup_spec.rb +11 -3
  39. data/spec/integration/item_lookup_spec.rbc +1723 -0
  40. data/spec/integration/item_search_spec.rb +6 -2
  41. data/spec/integration/item_search_spec.rbc +926 -0
  42. data/spec/integration/japan_spec.rb +27 -19
  43. data/spec/integration/japan_spec.rbc +849 -0
  44. data/spec/integration/keyword_search_spec.rb +5 -0
  45. data/spec/integration/keyword_search_spec.rbc +838 -0
  46. data/spec/integration/kindle_spec.rb +13 -5
  47. data/spec/integration/kindle_spec.rbc +1425 -0
  48. data/spec/integration/multiple_locales_spec.rb +34 -26
  49. data/spec/integration/multiple_locales_spec.rbc +1090 -0
  50. data/spec/integration/power_search_spec.rb +5 -0
  51. data/spec/integration/power_search_spec.rbc +838 -0
  52. data/spec/integration/related_items_spec.rb +41 -29
  53. data/spec/integration/related_items_spec.rbc +1228 -0
  54. data/spec/integration/seller_listing_search_spec.rb +3 -0
  55. data/spec/integration/seller_listing_search_spec.rbc +852 -0
  56. data/spec/integration/twenty_items_spec.rb +41 -34
  57. data/spec/integration/twenty_items_spec.rbc +1166 -0
  58. data/spec/spec_helper.rbc +231 -0
  59. data/spec/support/amazon.yml +3 -0
  60. data/spec/support/amazon.yml.example +1 -0
  61. data/spec/support/amazon_credentials.rbc +154 -0
  62. data/spec/support/asins.rb +6 -1
  63. data/spec/support/asins.rbc +335 -0
  64. data/spec/support/vcr.rbc +360 -0
  65. data/spec/unit/sucker/request_spec.rb +57 -23
  66. data/spec/unit/sucker/request_spec.rbc +4031 -0
  67. data/spec/unit/sucker/response_spec.rb +100 -26
  68. data/spec/unit/sucker/response_spec.rbc +3787 -0
  69. data/spec/unit/sucker_spec.rb +5 -1
  70. data/spec/unit/sucker_spec.rbc +299 -0
  71. metadata +94 -12
@@ -1,8 +1,11 @@
1
1
  require "spec_helper"
2
2
 
3
3
  module Sucker
4
- describe "Kindle" do
5
- context "Book index" do
4
+
5
+ describe "Item search for Kindle books" do
6
+
7
+ context "when using the book index" do
8
+
6
9
  use_vcr_cassette "integration/kindle", :record => :new_episodes
7
10
 
8
11
  let(:items) do
@@ -18,12 +21,14 @@ module Sucker
18
21
  worker.get.find("Item")
19
22
  end
20
23
 
21
- it "finds Kindle books" do
24
+ it "finds matches" do
22
25
  items.first["ItemAttributes"]["Title"].should_not be_nil
23
26
  end
27
+
24
28
  end
25
29
 
26
- context "Kindle store index" do
30
+ context "when using the Kindle store index" do
31
+
27
32
  use_vcr_cassette "integration/kindle_2", :record => :new_episodes
28
33
 
29
34
  let(:items) do
@@ -39,9 +44,12 @@ module Sucker
39
44
  worker.get.find("Item")
40
45
  end
41
46
 
42
- it "finds Kindle books" do
47
+ it "finds matches" do
43
48
  items.first["ItemAttributes"]["Title"].should_not be_nil
44
49
  end
50
+
45
51
  end
52
+
46
53
  end
54
+
47
55
  end
@@ -0,0 +1,1425 @@
1
+ !RBIX
2
+ 0
3
+ x
4
+ M
5
+ 1
6
+ n
7
+ n
8
+ x
9
+ 10
10
+ __script__
11
+ i
12
+ 37
13
+ 5
14
+ 7
15
+ 0
16
+ 64
17
+ 47
18
+ 49
19
+ 1
20
+ 1
21
+ 15
22
+ 99
23
+ 7
24
+ 2
25
+ 65
26
+ 49
27
+ 3
28
+ 2
29
+ 13
30
+ 99
31
+ 12
32
+ 7
33
+ 4
34
+ 12
35
+ 7
36
+ 5
37
+ 12
38
+ 65
39
+ 12
40
+ 49
41
+ 6
42
+ 4
43
+ 15
44
+ 49
45
+ 4
46
+ 0
47
+ 15
48
+ 2
49
+ 11
50
+ I
51
+ 6
52
+ I
53
+ 0
54
+ I
55
+ 0
56
+ I
57
+ 0
58
+ n
59
+ p
60
+ 7
61
+ s
62
+ 11
63
+ spec_helper
64
+ x
65
+ 7
66
+ require
67
+ x
68
+ 6
69
+ Sucker
70
+ x
71
+ 11
72
+ open_module
73
+ x
74
+ 15
75
+ __module_init__
76
+ M
77
+ 1
78
+ n
79
+ n
80
+ x
81
+ 6
82
+ Sucker
83
+ i
84
+ 13
85
+ 5
86
+ 66
87
+ 5
88
+ 7
89
+ 0
90
+ 64
91
+ 56
92
+ 1
93
+ 47
94
+ 50
95
+ 2
96
+ 1
97
+ 11
98
+ I
99
+ 3
100
+ I
101
+ 0
102
+ I
103
+ 0
104
+ I
105
+ 0
106
+ n
107
+ p
108
+ 3
109
+ s
110
+ 28
111
+ Item search for Kindle books
112
+ M
113
+ 1
114
+ p
115
+ 2
116
+ x
117
+ 9
118
+ for_block
119
+ t
120
+ n
121
+ x
122
+ 6
123
+ Sucker
124
+ i
125
+ 22
126
+ 5
127
+ 7
128
+ 0
129
+ 64
130
+ 56
131
+ 1
132
+ 47
133
+ 50
134
+ 2
135
+ 1
136
+ 15
137
+ 5
138
+ 7
139
+ 3
140
+ 64
141
+ 56
142
+ 4
143
+ 47
144
+ 50
145
+ 2
146
+ 1
147
+ 11
148
+ I
149
+ 4
150
+ I
151
+ 0
152
+ I
153
+ 0
154
+ I
155
+ 0
156
+ I
157
+ -2
158
+ p
159
+ 5
160
+ s
161
+ 25
162
+ when using the book index
163
+ M
164
+ 1
165
+ p
166
+ 2
167
+ x
168
+ 9
169
+ for_block
170
+ t
171
+ n
172
+ x
173
+ 6
174
+ Sucker
175
+ i
176
+ 46
177
+ 5
178
+ 7
179
+ 0
180
+ 64
181
+ 44
182
+ 43
183
+ 1
184
+ 79
185
+ 49
186
+ 2
187
+ 1
188
+ 13
189
+ 7
190
+ 3
191
+ 7
192
+ 4
193
+ 49
194
+ 5
195
+ 2
196
+ 15
197
+ 47
198
+ 49
199
+ 6
200
+ 2
201
+ 15
202
+ 5
203
+ 7
204
+ 7
205
+ 56
206
+ 8
207
+ 47
208
+ 50
209
+ 9
210
+ 1
211
+ 15
212
+ 5
213
+ 7
214
+ 10
215
+ 64
216
+ 56
217
+ 11
218
+ 47
219
+ 50
220
+ 12
221
+ 1
222
+ 11
223
+ I
224
+ 7
225
+ I
226
+ 0
227
+ I
228
+ 0
229
+ I
230
+ 0
231
+ I
232
+ -2
233
+ p
234
+ 13
235
+ s
236
+ 18
237
+ integration/kindle
238
+ x
239
+ 4
240
+ Hash
241
+ x
242
+ 16
243
+ new_from_literal
244
+ x
245
+ 6
246
+ record
247
+ x
248
+ 12
249
+ new_episodes
250
+ x
251
+ 3
252
+ []=
253
+ x
254
+ 16
255
+ use_vcr_cassette
256
+ x
257
+ 5
258
+ items
259
+ M
260
+ 1
261
+ p
262
+ 2
263
+ x
264
+ 9
265
+ for_block
266
+ t
267
+ n
268
+ x
269
+ 6
270
+ Sucker
271
+ i
272
+ 197
273
+ 45
274
+ 0
275
+ 1
276
+ 13
277
+ 71
278
+ 2
279
+ 47
280
+ 9
281
+ 71
282
+ 47
283
+ 49
284
+ 3
285
+ 0
286
+ 13
287
+ 44
288
+ 43
289
+ 4
290
+ 4
291
+ 3
292
+ 49
293
+ 5
294
+ 1
295
+ 13
296
+ 7
297
+ 6
298
+ 7
299
+ 7
300
+ 64
301
+ 49
302
+ 8
303
+ 2
304
+ 15
305
+ 13
306
+ 7
307
+ 9
308
+ 5
309
+ 48
310
+ 10
311
+ 7
312
+ 11
313
+ 64
314
+ 49
315
+ 12
316
+ 1
317
+ 49
318
+ 8
319
+ 2
320
+ 15
321
+ 13
322
+ 7
323
+ 13
324
+ 5
325
+ 48
326
+ 10
327
+ 7
328
+ 14
329
+ 64
330
+ 49
331
+ 12
332
+ 1
333
+ 49
334
+ 8
335
+ 2
336
+ 15
337
+ 47
338
+ 49
339
+ 15
340
+ 1
341
+ 15
342
+ 8
343
+ 124
344
+ 44
345
+ 43
346
+ 4
347
+ 4
348
+ 3
349
+ 49
350
+ 5
351
+ 1
352
+ 13
353
+ 7
354
+ 6
355
+ 7
356
+ 7
357
+ 64
358
+ 49
359
+ 8
360
+ 2
361
+ 15
362
+ 13
363
+ 7
364
+ 9
365
+ 5
366
+ 48
367
+ 10
368
+ 7
369
+ 11
370
+ 64
371
+ 49
372
+ 12
373
+ 1
374
+ 49
375
+ 8
376
+ 2
377
+ 15
378
+ 13
379
+ 7
380
+ 13
381
+ 5
382
+ 48
383
+ 10
384
+ 7
385
+ 14
386
+ 64
387
+ 49
388
+ 12
389
+ 1
390
+ 49
391
+ 8
392
+ 2
393
+ 15
394
+ 49
395
+ 2
396
+ 1
397
+ 19
398
+ 0
399
+ 15
400
+ 20
401
+ 0
402
+ 44
403
+ 43
404
+ 4
405
+ 4
406
+ 4
407
+ 49
408
+ 5
409
+ 1
410
+ 13
411
+ 7
412
+ 16
413
+ 64
414
+ 7
415
+ 17
416
+ 64
417
+ 49
418
+ 8
419
+ 2
420
+ 15
421
+ 13
422
+ 7
423
+ 18
424
+ 64
425
+ 7
426
+ 19
427
+ 64
428
+ 49
429
+ 8
430
+ 2
431
+ 15
432
+ 13
433
+ 7
434
+ 20
435
+ 64
436
+ 7
437
+ 21
438
+ 64
439
+ 49
440
+ 8
441
+ 2
442
+ 15
443
+ 13
444
+ 7
445
+ 22
446
+ 64
447
+ 7
448
+ 23
449
+ 64
450
+ 49
451
+ 8
452
+ 2
453
+ 15
454
+ 49
455
+ 24
456
+ 1
457
+ 15
458
+ 20
459
+ 0
460
+ 49
461
+ 25
462
+ 0
463
+ 7
464
+ 26
465
+ 64
466
+ 49
467
+ 27
468
+ 1
469
+ 11
470
+ I
471
+ 9
472
+ I
473
+ 1
474
+ I
475
+ 0
476
+ I
477
+ 0
478
+ I
479
+ -2
480
+ p
481
+ 28
482
+ x
483
+ 6
484
+ Sucker
485
+ n
486
+ x
487
+ 3
488
+ new
489
+ x
490
+ 8
491
+ allocate
492
+ x
493
+ 4
494
+ Hash
495
+ x
496
+ 16
497
+ new_from_literal
498
+ x
499
+ 6
500
+ locale
501
+ s
502
+ 2
503
+ us
504
+ x
505
+ 3
506
+ []=
507
+ x
508
+ 3
509
+ key
510
+ x
511
+ 6
512
+ amazon
513
+ s
514
+ 3
515
+ key
516
+ x
517
+ 2
518
+ []
519
+ x
520
+ 6
521
+ secret
522
+ s
523
+ 6
524
+ secret
525
+ x
526
+ 10
527
+ initialize
528
+ s
529
+ 9
530
+ Operation
531
+ s
532
+ 10
533
+ ItemSearch
534
+ s
535
+ 11
536
+ SearchIndex
537
+ s
538
+ 5
539
+ Books
540
+ s
541
+ 5
542
+ Power
543
+ s
544
+ 22
545
+ deleuze binding:kindle
546
+ s
547
+ 13
548
+ ResponseGroup
549
+ s
550
+ 14
551
+ ItemAttributes
552
+ x
553
+ 2
554
+ <<
555
+ x
556
+ 3
557
+ get
558
+ s
559
+ 4
560
+ Item
561
+ x
562
+ 4
563
+ find
564
+ p
565
+ 33
566
+ I
567
+ 0
568
+ I
569
+ b
570
+ I
571
+ 0
572
+ I
573
+ c
574
+ I
575
+ e
576
+ I
577
+ f
578
+ I
579
+ 17
580
+ I
581
+ d
582
+ I
583
+ 21
584
+ I
585
+ e
586
+ I
587
+ 31
588
+ I
589
+ f
590
+ I
591
+ 50
592
+ I
593
+ d
594
+ I
595
+ 5a
596
+ I
597
+ e
598
+ I
599
+ 6a
600
+ I
601
+ f
602
+ I
603
+ 7f
604
+ I
605
+ 10
606
+ I
607
+ 81
608
+ I
609
+ 14
610
+ I
611
+ 8a
612
+ I
613
+ 11
614
+ I
615
+ 95
616
+ I
617
+ 12
618
+ I
619
+ a0
620
+ I
621
+ 13
622
+ I
623
+ ab
624
+ I
625
+ 14
626
+ I
627
+ b9
628
+ I
629
+ 15
630
+ I
631
+ c5
632
+ x
633
+ 54
634
+ /Users/snl/code/sucker/spec/integration/kindle_spec.rb
635
+ p
636
+ 1
637
+ x
638
+ 6
639
+ worker
640
+ x
641
+ 3
642
+ let
643
+ s
644
+ 13
645
+ finds matches
646
+ M
647
+ 1
648
+ p
649
+ 2
650
+ x
651
+ 9
652
+ for_block
653
+ t
654
+ n
655
+ x
656
+ 6
657
+ Sucker
658
+ i
659
+ 25
660
+ 5
661
+ 48
662
+ 0
663
+ 49
664
+ 1
665
+ 0
666
+ 7
667
+ 2
668
+ 64
669
+ 49
670
+ 3
671
+ 1
672
+ 7
673
+ 4
674
+ 64
675
+ 49
676
+ 3
677
+ 1
678
+ 5
679
+ 48
680
+ 5
681
+ 49
682
+ 6
683
+ 1
684
+ 11
685
+ I
686
+ 3
687
+ I
688
+ 0
689
+ I
690
+ 0
691
+ I
692
+ 0
693
+ I
694
+ -2
695
+ p
696
+ 7
697
+ x
698
+ 5
699
+ items
700
+ x
701
+ 5
702
+ first
703
+ s
704
+ 14
705
+ ItemAttributes
706
+ x
707
+ 2
708
+ []
709
+ s
710
+ 5
711
+ Title
712
+ x
713
+ 6
714
+ be_nil
715
+ x
716
+ 10
717
+ should_not
718
+ p
719
+ 5
720
+ I
721
+ 0
722
+ I
723
+ 18
724
+ I
725
+ 0
726
+ I
727
+ 19
728
+ I
729
+ 19
730
+ x
731
+ 54
732
+ /Users/snl/code/sucker/spec/integration/kindle_spec.rb
733
+ p
734
+ 0
735
+ x
736
+ 2
737
+ it
738
+ p
739
+ 9
740
+ I
741
+ 0
742
+ I
743
+ 7
744
+ I
745
+ 0
746
+ I
747
+ 9
748
+ I
749
+ 19
750
+ I
751
+ b
752
+ I
753
+ 23
754
+ I
755
+ 18
756
+ I
757
+ 2e
758
+ x
759
+ 54
760
+ /Users/snl/code/sucker/spec/integration/kindle_spec.rb
761
+ p
762
+ 0
763
+ x
764
+ 7
765
+ context
766
+ s
767
+ 33
768
+ when using the Kindle store index
769
+ M
770
+ 1
771
+ p
772
+ 2
773
+ x
774
+ 9
775
+ for_block
776
+ t
777
+ n
778
+ x
779
+ 6
780
+ Sucker
781
+ i
782
+ 46
783
+ 5
784
+ 7
785
+ 0
786
+ 64
787
+ 44
788
+ 43
789
+ 1
790
+ 79
791
+ 49
792
+ 2
793
+ 1
794
+ 13
795
+ 7
796
+ 3
797
+ 7
798
+ 4
799
+ 49
800
+ 5
801
+ 2
802
+ 15
803
+ 47
804
+ 49
805
+ 6
806
+ 2
807
+ 15
808
+ 5
809
+ 7
810
+ 7
811
+ 56
812
+ 8
813
+ 47
814
+ 50
815
+ 9
816
+ 1
817
+ 15
818
+ 5
819
+ 7
820
+ 10
821
+ 64
822
+ 56
823
+ 11
824
+ 47
825
+ 50
826
+ 12
827
+ 1
828
+ 11
829
+ I
830
+ 7
831
+ I
832
+ 0
833
+ I
834
+ 0
835
+ I
836
+ 0
837
+ I
838
+ -2
839
+ p
840
+ 13
841
+ s
842
+ 20
843
+ integration/kindle_2
844
+ x
845
+ 4
846
+ Hash
847
+ x
848
+ 16
849
+ new_from_literal
850
+ x
851
+ 6
852
+ record
853
+ x
854
+ 12
855
+ new_episodes
856
+ x
857
+ 3
858
+ []=
859
+ x
860
+ 16
861
+ use_vcr_cassette
862
+ x
863
+ 5
864
+ items
865
+ M
866
+ 1
867
+ p
868
+ 2
869
+ x
870
+ 9
871
+ for_block
872
+ t
873
+ n
874
+ x
875
+ 6
876
+ Sucker
877
+ i
878
+ 197
879
+ 45
880
+ 0
881
+ 1
882
+ 13
883
+ 71
884
+ 2
885
+ 47
886
+ 9
887
+ 71
888
+ 47
889
+ 49
890
+ 3
891
+ 0
892
+ 13
893
+ 44
894
+ 43
895
+ 4
896
+ 4
897
+ 3
898
+ 49
899
+ 5
900
+ 1
901
+ 13
902
+ 7
903
+ 6
904
+ 7
905
+ 7
906
+ 64
907
+ 49
908
+ 8
909
+ 2
910
+ 15
911
+ 13
912
+ 7
913
+ 9
914
+ 5
915
+ 48
916
+ 10
917
+ 7
918
+ 11
919
+ 64
920
+ 49
921
+ 12
922
+ 1
923
+ 49
924
+ 8
925
+ 2
926
+ 15
927
+ 13
928
+ 7
929
+ 13
930
+ 5
931
+ 48
932
+ 10
933
+ 7
934
+ 14
935
+ 64
936
+ 49
937
+ 12
938
+ 1
939
+ 49
940
+ 8
941
+ 2
942
+ 15
943
+ 47
944
+ 49
945
+ 15
946
+ 1
947
+ 15
948
+ 8
949
+ 124
950
+ 44
951
+ 43
952
+ 4
953
+ 4
954
+ 3
955
+ 49
956
+ 5
957
+ 1
958
+ 13
959
+ 7
960
+ 6
961
+ 7
962
+ 7
963
+ 64
964
+ 49
965
+ 8
966
+ 2
967
+ 15
968
+ 13
969
+ 7
970
+ 9
971
+ 5
972
+ 48
973
+ 10
974
+ 7
975
+ 11
976
+ 64
977
+ 49
978
+ 12
979
+ 1
980
+ 49
981
+ 8
982
+ 2
983
+ 15
984
+ 13
985
+ 7
986
+ 13
987
+ 5
988
+ 48
989
+ 10
990
+ 7
991
+ 14
992
+ 64
993
+ 49
994
+ 12
995
+ 1
996
+ 49
997
+ 8
998
+ 2
999
+ 15
1000
+ 49
1001
+ 2
1002
+ 1
1003
+ 19
1004
+ 0
1005
+ 15
1006
+ 20
1007
+ 0
1008
+ 44
1009
+ 43
1010
+ 4
1011
+ 4
1012
+ 4
1013
+ 49
1014
+ 5
1015
+ 1
1016
+ 13
1017
+ 7
1018
+ 16
1019
+ 64
1020
+ 7
1021
+ 17
1022
+ 64
1023
+ 49
1024
+ 8
1025
+ 2
1026
+ 15
1027
+ 13
1028
+ 7
1029
+ 18
1030
+ 64
1031
+ 7
1032
+ 19
1033
+ 64
1034
+ 49
1035
+ 8
1036
+ 2
1037
+ 15
1038
+ 13
1039
+ 7
1040
+ 20
1041
+ 64
1042
+ 7
1043
+ 21
1044
+ 64
1045
+ 49
1046
+ 8
1047
+ 2
1048
+ 15
1049
+ 13
1050
+ 7
1051
+ 22
1052
+ 64
1053
+ 7
1054
+ 23
1055
+ 64
1056
+ 49
1057
+ 8
1058
+ 2
1059
+ 15
1060
+ 49
1061
+ 24
1062
+ 1
1063
+ 15
1064
+ 20
1065
+ 0
1066
+ 49
1067
+ 25
1068
+ 0
1069
+ 7
1070
+ 26
1071
+ 64
1072
+ 49
1073
+ 27
1074
+ 1
1075
+ 11
1076
+ I
1077
+ 9
1078
+ I
1079
+ 1
1080
+ I
1081
+ 0
1082
+ I
1083
+ 0
1084
+ I
1085
+ -2
1086
+ p
1087
+ 28
1088
+ x
1089
+ 6
1090
+ Sucker
1091
+ n
1092
+ x
1093
+ 3
1094
+ new
1095
+ x
1096
+ 8
1097
+ allocate
1098
+ x
1099
+ 4
1100
+ Hash
1101
+ x
1102
+ 16
1103
+ new_from_literal
1104
+ x
1105
+ 6
1106
+ locale
1107
+ s
1108
+ 2
1109
+ us
1110
+ x
1111
+ 3
1112
+ []=
1113
+ x
1114
+ 3
1115
+ key
1116
+ x
1117
+ 6
1118
+ amazon
1119
+ s
1120
+ 3
1121
+ key
1122
+ x
1123
+ 2
1124
+ []
1125
+ x
1126
+ 6
1127
+ secret
1128
+ s
1129
+ 6
1130
+ secret
1131
+ x
1132
+ 10
1133
+ initialize
1134
+ s
1135
+ 9
1136
+ Operation
1137
+ s
1138
+ 10
1139
+ ItemSearch
1140
+ s
1141
+ 11
1142
+ SearchIndex
1143
+ s
1144
+ 11
1145
+ KindleStore
1146
+ s
1147
+ 8
1148
+ Keywords
1149
+ s
1150
+ 7
1151
+ deleuze
1152
+ s
1153
+ 13
1154
+ ResponseGroup
1155
+ s
1156
+ 14
1157
+ ItemAttributes
1158
+ x
1159
+ 2
1160
+ <<
1161
+ x
1162
+ 3
1163
+ get
1164
+ s
1165
+ 4
1166
+ Item
1167
+ x
1168
+ 4
1169
+ find
1170
+ p
1171
+ 33
1172
+ I
1173
+ 0
1174
+ I
1175
+ 22
1176
+ I
1177
+ 0
1178
+ I
1179
+ 23
1180
+ I
1181
+ e
1182
+ I
1183
+ 26
1184
+ I
1185
+ 17
1186
+ I
1187
+ 24
1188
+ I
1189
+ 21
1190
+ I
1191
+ 25
1192
+ I
1193
+ 31
1194
+ I
1195
+ 26
1196
+ I
1197
+ 50
1198
+ I
1199
+ 24
1200
+ I
1201
+ 5a
1202
+ I
1203
+ 25
1204
+ I
1205
+ 6a
1206
+ I
1207
+ 26
1208
+ I
1209
+ 7f
1210
+ I
1211
+ 27
1212
+ I
1213
+ 81
1214
+ I
1215
+ 2b
1216
+ I
1217
+ 8a
1218
+ I
1219
+ 28
1220
+ I
1221
+ 95
1222
+ I
1223
+ 29
1224
+ I
1225
+ a0
1226
+ I
1227
+ 2a
1228
+ I
1229
+ ab
1230
+ I
1231
+ 2b
1232
+ I
1233
+ b9
1234
+ I
1235
+ 2c
1236
+ I
1237
+ c5
1238
+ x
1239
+ 54
1240
+ /Users/snl/code/sucker/spec/integration/kindle_spec.rb
1241
+ p
1242
+ 1
1243
+ x
1244
+ 6
1245
+ worker
1246
+ x
1247
+ 3
1248
+ let
1249
+ s
1250
+ 13
1251
+ finds matches
1252
+ M
1253
+ 1
1254
+ p
1255
+ 2
1256
+ x
1257
+ 9
1258
+ for_block
1259
+ t
1260
+ n
1261
+ x
1262
+ 6
1263
+ Sucker
1264
+ i
1265
+ 25
1266
+ 5
1267
+ 48
1268
+ 0
1269
+ 49
1270
+ 1
1271
+ 0
1272
+ 7
1273
+ 2
1274
+ 64
1275
+ 49
1276
+ 3
1277
+ 1
1278
+ 7
1279
+ 4
1280
+ 64
1281
+ 49
1282
+ 3
1283
+ 1
1284
+ 5
1285
+ 48
1286
+ 5
1287
+ 49
1288
+ 6
1289
+ 1
1290
+ 11
1291
+ I
1292
+ 3
1293
+ I
1294
+ 0
1295
+ I
1296
+ 0
1297
+ I
1298
+ 0
1299
+ I
1300
+ -2
1301
+ p
1302
+ 7
1303
+ x
1304
+ 5
1305
+ items
1306
+ x
1307
+ 5
1308
+ first
1309
+ s
1310
+ 14
1311
+ ItemAttributes
1312
+ x
1313
+ 2
1314
+ []
1315
+ s
1316
+ 5
1317
+ Title
1318
+ x
1319
+ 6
1320
+ be_nil
1321
+ x
1322
+ 10
1323
+ should_not
1324
+ p
1325
+ 5
1326
+ I
1327
+ 0
1328
+ I
1329
+ 2f
1330
+ I
1331
+ 0
1332
+ I
1333
+ 30
1334
+ I
1335
+ 19
1336
+ x
1337
+ 54
1338
+ /Users/snl/code/sucker/spec/integration/kindle_spec.rb
1339
+ p
1340
+ 0
1341
+ x
1342
+ 2
1343
+ it
1344
+ p
1345
+ 9
1346
+ I
1347
+ 0
1348
+ I
1349
+ 1e
1350
+ I
1351
+ 0
1352
+ I
1353
+ 20
1354
+ I
1355
+ 19
1356
+ I
1357
+ 22
1358
+ I
1359
+ 23
1360
+ I
1361
+ 2f
1362
+ I
1363
+ 2e
1364
+ x
1365
+ 54
1366
+ /Users/snl/code/sucker/spec/integration/kindle_spec.rb
1367
+ p
1368
+ 0
1369
+ p
1370
+ 7
1371
+ I
1372
+ 0
1373
+ I
1374
+ 5
1375
+ I
1376
+ 0
1377
+ I
1378
+ 7
1379
+ I
1380
+ b
1381
+ I
1382
+ 1e
1383
+ I
1384
+ 16
1385
+ x
1386
+ 54
1387
+ /Users/snl/code/sucker/spec/integration/kindle_spec.rb
1388
+ p
1389
+ 0
1390
+ x
1391
+ 8
1392
+ describe
1393
+ p
1394
+ 3
1395
+ I
1396
+ 2
1397
+ I
1398
+ 5
1399
+ I
1400
+ d
1401
+ x
1402
+ 54
1403
+ /Users/snl/code/sucker/spec/integration/kindle_spec.rb
1404
+ p
1405
+ 0
1406
+ x
1407
+ 13
1408
+ attach_method
1409
+ p
1410
+ 5
1411
+ I
1412
+ 0
1413
+ I
1414
+ 1
1415
+ I
1416
+ 9
1417
+ I
1418
+ 3
1419
+ I
1420
+ 25
1421
+ x
1422
+ 54
1423
+ /Users/snl/code/sucker/spec/integration/kindle_spec.rb
1424
+ p
1425
+ 0