-
Notifications
You must be signed in to change notification settings - Fork 81
/
Copy pathbenchmark.rb
3593 lines (3585 loc) · 230 KB
/
benchmark.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
require_relative "spec/spec_helper"
ready "search matching a large list of choices" do
before do
config = Configuration.from_inputs(PATHS[0,500], Configuration.default_options)
@search = Search.from_config(config)
end
go "filtering with no matches" do
@search.append_search_string("zxzxzx").best_matches
end
go "filtering with many matches" do
@search.append_search_string("e").best_matches
end
go "progressive query appending, sequential, few matches" do
@search
.append_search_string("x")
.append_search_string("t")
.append_search_string("c")
.append_search_string("o")
.append_search_string("n")
.append_search_string("f")
end
go "progressive query appending, sequential, many matches" do
@search
.append_search_string("g")
.append_search_string("e")
.append_search_string("m")
.append_search_string("r")
.append_search_string("u")
.append_search_string("b")
.append_search_string("y")
end
go "progressive query appending, non-sequential, few matches" do
@search
.append_search_string("x")
.append_search_string("c")
.append_search_string("o")
.append_search_string("n")
.append_search_string("f")
end
go "progressive query appending, non-sequential, many matches" do
@search
.append_search_string("g")
.append_search_string("m")
.append_search_string("r")
.append_search_string("u")
.append_search_string("b")
.append_search_string("y")
end
end
PATHS = [
"./.gem",
"./.gem/ruby",
"./.gem/ruby/2.1.0",
"./.gem/ruby/2.1.0/bin",
"./.gem/ruby/2.1.0/bin/autospec",
"./.gem/ruby/2.1.0/bin/benchmark_ips",
"./.gem/ruby/2.1.0/bin/bundle",
"./.gem/ruby/2.1.0/bin/bundler",
"./.gem/ruby/2.1.0/bin/htmldiff",
"./.gem/ruby/2.1.0/bin/ldiff",
"./.gem/ruby/2.1.0/bin/rspec",
"./.gem/ruby/2.1.0/build_info",
"./.gem/ruby/2.1.0/build_info/diff-lcs-1.2.4.info",
"./.gem/ruby/2.1.0/build_info/rspec-core-2.14.6.info",
"./.gem/ruby/2.1.0/build_info/rspec-expectations-2.14.3.info",
"./.gem/ruby/2.1.0/build_info/rspec-mocks-2.14.4.info",
"./.gem/ruby/2.1.0/cache",
"./.gem/ruby/2.1.0/cache/benchmark-ips-1.2.0.gem",
"./.gem/ruby/2.1.0/cache/bundler-1.5.3.gem",
"./.gem/ruby/2.1.0/cache/diff-lcs-1.2.4.gem",
"./.gem/ruby/2.1.0/cache/diff-lcs-1.2.5.gem",
"./.gem/ruby/2.1.0/cache/gem-open-0.1.7.gem",
"./.gem/ruby/2.1.0/cache/rspec-2.14.1.gem",
"./.gem/ruby/2.1.0/cache/rspec-core-2.14.6.gem",
"./.gem/ruby/2.1.0/cache/rspec-core-2.14.7.gem",
"./.gem/ruby/2.1.0/cache/rspec-expectations-2.14.3.gem",
"./.gem/ruby/2.1.0/cache/rspec-expectations-2.14.5.gem",
"./.gem/ruby/2.1.0/cache/rspec-mocks-2.14.4.gem",
"./.gem/ruby/2.1.0/cache/rspec-mocks-2.14.6.gem",
"./.gem/ruby/2.1.0/doc",
"./.gem/ruby/2.1.0/extensions",
"./.gem/ruby/2.1.0/gems",
"./.gem/ruby/2.1.0/gems/benchmark-ips-1.2.0",
"./.gem/ruby/2.1.0/gems/benchmark-ips-1.2.0/.autotest",
"./.gem/ruby/2.1.0/gems/benchmark-ips-1.2.0/.gemtest",
"./.gem/ruby/2.1.0/gems/benchmark-ips-1.2.0/bin",
"./.gem/ruby/2.1.0/gems/benchmark-ips-1.2.0/bin/benchmark_ips",
"./.gem/ruby/2.1.0/gems/benchmark-ips-1.2.0/History.txt",
"./.gem/ruby/2.1.0/gems/benchmark-ips-1.2.0/lib",
"./.gem/ruby/2.1.0/gems/benchmark-ips-1.2.0/lib/benchmark",
"./.gem/ruby/2.1.0/gems/benchmark-ips-1.2.0/lib/benchmark/compare.rb",
"./.gem/ruby/2.1.0/gems/benchmark-ips-1.2.0/lib/benchmark/helpers.rb",
"./.gem/ruby/2.1.0/gems/benchmark-ips-1.2.0/lib/benchmark/ips.rb",
"./.gem/ruby/2.1.0/gems/benchmark-ips-1.2.0/lib/benchmark/timing.rb",
"./.gem/ruby/2.1.0/gems/benchmark-ips-1.2.0/Manifest.txt",
"./.gem/ruby/2.1.0/gems/benchmark-ips-1.2.0/Rakefile",
"./.gem/ruby/2.1.0/gems/benchmark-ips-1.2.0/README.txt",
"./.gem/ruby/2.1.0/gems/benchmark-ips-1.2.0/test",
"./.gem/ruby/2.1.0/gems/benchmark-ips-1.2.0/test/test_benchmark_ips.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/.gitignore",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/.rspec",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/.travis.yml",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/bin",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/bin/bundle",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/bin/bundle_ruby",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/bin/bundler",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/bundler.gemspec",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/CHANGELOG.md",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/CONTRIBUTING.md",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/DEVELOPMENT.md",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/ISSUES.md",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/capistrano.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/cli.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/constants.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/current_ruby.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/definition.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/dep_proxy.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/dependency.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/deployment.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/deprecate.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/dsl.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/endpoint_specification.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/env.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/environment.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/fetcher.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/friendly_errors.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/gem_helper.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/gem_helpers.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/gem_installer.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/gem_path_manipulation.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/gem_tasks.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/graph.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/index.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/injector.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/installer.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/lazy_specification.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/lockfile_parser.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/man",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/man/bundle",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/man/bundle-config",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/man/bundle-config.txt",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/man/bundle-exec",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/man/bundle-exec.txt",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/man/bundle-install",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/man/bundle-install.txt",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/man/bundle-package",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/man/bundle-package.txt",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/man/bundle-platform",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/man/bundle-platform.txt",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/man/bundle-update",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/man/bundle-update.txt",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/man/bundle.txt",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/man/gemfile.5",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/man/gemfile.5.txt",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/match_platform.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/parallel_workers",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/parallel_workers/thread_worker.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/parallel_workers/unix_worker.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/parallel_workers/worker.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/parallel_workers.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/psyched_yaml.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/remote_specification.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/resolver.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/retry.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/ruby_dsl.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/ruby_version.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/rubygems_ext.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/rubygems_integration.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/runtime.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/safe_catch.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/settings.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/setup.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/shared_helpers.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/similarity_detector.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/source",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/source/git",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/source/git/git_proxy.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/source/git.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/source/path",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/source/path/installer.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/source/path.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/source/rubygems.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/source.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/spec_set.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/ssl_certs",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/ssl_certs/.document",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/ssl_certs/Class3PublicPrimaryCertificationAuthority.pem",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/ssl_certs/DigiCertHighAssuranceEVRootCA.pem",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/ssl_certs/EntrustnetSecureServerCertificationAuthority.pem",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/ssl_certs/GeoTrustGlobalCA.pem",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/templates",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/templates/Executable",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/templates/Executable.standalone",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/templates/Gemfile",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/templates/newgem",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/templates/newgem/.travis.yml.tt",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/templates/newgem/bin",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/templates/newgem/bin/newgem.tt",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/templates/newgem/Gemfile.tt",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/templates/newgem/gitignore.tt",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/templates/newgem/lib",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/templates/newgem/lib/newgem",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/templates/newgem/lib/newgem/version.rb.tt",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/templates/newgem/lib/newgem.rb.tt",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/templates/newgem/LICENSE.txt.tt",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/templates/newgem/newgem.gemspec.tt",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/templates/newgem/Rakefile.tt",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/templates/newgem/README.md.tt",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/templates/newgem/rspec.tt",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/templates/newgem/spec",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/templates/newgem/spec/newgem_spec.rb.tt",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/templates/newgem/spec/spec_helper.rb.tt",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/templates/newgem/test",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/templates/newgem/test/minitest_helper.rb.tt",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/templates/newgem/test/test_newgem.rb.tt",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/ui.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/vendor",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/vendor/.document",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/vendor/net",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/vendor/net/http",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/vendor/net/http/faster.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/vendor/net/http/persistent",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/vendor/net/http/persistent/ssl_reuse.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/vendor/net/http/persistent.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/vendor/thor",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/vendor/thor/actions",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/vendor/thor/actions/create_file.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/vendor/thor/actions/create_link.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/vendor/thor/actions/directory.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/vendor/thor/actions/empty_directory.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/vendor/thor/actions/file_manipulation.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/vendor/thor/actions/inject_into_file.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/vendor/thor/actions.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/vendor/thor/base.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/vendor/thor/command.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/vendor/thor/core_ext",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/vendor/thor/core_ext/hash_with_indifferent_access.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/vendor/thor/core_ext/io_binary_read.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/vendor/thor/core_ext/ordered_hash.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/vendor/thor/error.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/vendor/thor/group.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/vendor/thor/invocation.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/vendor/thor/line_editor",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/vendor/thor/line_editor/basic.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/vendor/thor/line_editor/readline.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/vendor/thor/line_editor.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/vendor/thor/parser",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/vendor/thor/parser/argument.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/vendor/thor/parser/arguments.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/vendor/thor/parser/option.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/vendor/thor/parser/options.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/vendor/thor/parser.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/vendor/thor/rake_compat.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/vendor/thor/runner.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/vendor/thor/shell",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/vendor/thor/shell/basic.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/vendor/thor/shell/color.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/vendor/thor/shell/html.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/vendor/thor/shell.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/vendor/thor/util.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/vendor/thor/version.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/vendor/thor.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/vendored_persistent.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/vendored_thor.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/version.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler/vlad.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/lib/bundler.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/LICENSE.md",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/man",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/man/bundle-config.ronn",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/man/bundle-exec.ronn",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/man/bundle-install.ronn",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/man/bundle-package.ronn",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/man/bundle-platform.ronn",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/man/bundle-update.ronn",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/man/bundle.ronn",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/man/gemfile.5.ronn",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/man/index.txt",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/Rakefile",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/README.md",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/spec",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/spec/bundler",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/spec/bundler/bundler_spec.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/spec/bundler/cli_rspec.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/spec/bundler/definition_spec.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/spec/bundler/dsl_spec.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/spec/bundler/friendly_errors_spec.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/spec/bundler/gem_helper_spec.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/spec/bundler/psyched_yaml_spec.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/spec/bundler/retry_spec.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/spec/bundler/safe_catch_spec.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/spec/bundler/source_spec.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/spec/cache",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/spec/cache/gems_spec.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/spec/cache/git_spec.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/spec/cache/path_spec.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/spec/cache/platform_spec.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/spec/commands",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/spec/commands/binstubs_spec.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/spec/commands/check_spec.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/spec/commands/clean_spec.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/spec/commands/config_spec.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/spec/commands/console_spec.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/spec/commands/exec_spec.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/spec/commands/help_spec.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/spec/commands/init_spec.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/spec/commands/inject_spec.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/spec/commands/licenses_spec.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/spec/commands/newgem_spec.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/spec/commands/open_spec.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/spec/commands/outdated_spec.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/spec/commands/show_spec.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/spec/install",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/spec/install/binstubs_spec.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/spec/install/bundler_spec.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/spec/install/deploy_spec.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/spec/install/gemfile",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/spec/install/gemfile/gemspec_spec.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/spec/install/gemfile/git_spec.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/spec/install/gemfile/path_spec.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/spec/install/gemfile_spec.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/spec/install/gems",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/spec/install/gems/c_ext_spec.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/spec/install/gems/dependency_api_spec.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/spec/install/gems/env_spec.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/spec/install/gems/flex_spec.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/spec/install/gems/groups_spec.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/spec/install/gems/mirror_spec.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/spec/install/gems/packed_spec.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/spec/install/gems/platform_spec.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/spec/install/gems/post_install_spec.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/spec/install/gems/resolving_spec.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/spec/install/gems/simple_case_spec.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/spec/install/gems/standalone_spec.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/spec/install/gems/sudo_spec.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/spec/install/gems/win32_spec.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/spec/install/gemspecs_spec.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/spec/install/path_spec.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/spec/install/post_bundle_message_spec.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/spec/install/prereleases_spec.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/spec/install/security_policy_spec.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/spec/install/upgrade_spec.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/spec/lock",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/spec/lock/git_spec.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/spec/lock/lockfile_spec.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/spec/other",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/spec/other/bundle_ruby_spec.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/spec/other/cli_dispatch_spec.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/spec/other/ext_spec.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/spec/other/platform_spec.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/spec/quality_spec.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/spec/realworld",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/spec/realworld/dependency_api_spec.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/spec/realworld/edgecases_spec.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/spec/realworld/parallel_spec.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/spec/resolver",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/spec/resolver/basic_spec.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/spec/resolver/platform_spec.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/spec/runtime",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/spec/runtime/executable_spec.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/spec/runtime/load_spec.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/spec/runtime/platform_spec.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/spec/runtime/require_spec.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/spec/runtime/setup_spec.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/spec/runtime/with_clean_env_spec.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/spec/spec_helper.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/spec/support",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/spec/support/artifice",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/spec/support/artifice/endopint_marshal_fail_basic_authentication.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/spec/support/artifice/endpoint.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/spec/support/artifice/endpoint_500.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/spec/support/artifice/endpoint_api_missing.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/spec/support/artifice/endpoint_basic_authentication.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/spec/support/artifice/endpoint_creds_diff_host.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/spec/support/artifice/endpoint_extra.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/spec/support/artifice/endpoint_extra_missing.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/spec/support/artifice/endpoint_fallback.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/spec/support/artifice/endpoint_host_redirect.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/spec/support/artifice/endpoint_marshal_fail.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/spec/support/artifice/endpoint_redirect.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/spec/support/artifice/endpoint_timeout.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/spec/support/builders.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/spec/support/fakeweb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/spec/support/fakeweb/rack-1.0.0.marshal",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/spec/support/fakeweb/windows.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/spec/support/hax.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/spec/support/helpers.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/spec/support/indexes.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/spec/support/matchers.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/spec/support/path.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/spec/support/permissions.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/spec/support/platforms.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/spec/support/ruby_ext.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/spec/support/rubygems_ext.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/spec/support/streams.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/spec/support/sudo.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/spec/update",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/spec/update/gems_spec.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/spec/update/git_spec.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/spec/update/source_spec.rb",
"./.gem/ruby/2.1.0/gems/bundler-1.5.3/UPGRADING.md",
"./.gem/ruby/2.1.0/gems/diff-lcs-1.2.4",
"./.gem/ruby/2.1.0/gems/diff-lcs-1.2.4/.autotest",
"./.gem/ruby/2.1.0/gems/diff-lcs-1.2.4/.gemtest",
"./.gem/ruby/2.1.0/gems/diff-lcs-1.2.4/.hoerc",
"./.gem/ruby/2.1.0/gems/diff-lcs-1.2.4/.rspec",
"./.gem/ruby/2.1.0/gems/diff-lcs-1.2.4/.travis.yml",
"./.gem/ruby/2.1.0/gems/diff-lcs-1.2.4/autotest",
"./.gem/ruby/2.1.0/gems/diff-lcs-1.2.4/autotest/discover.rb",
"./.gem/ruby/2.1.0/gems/diff-lcs-1.2.4/bin",
"./.gem/ruby/2.1.0/gems/diff-lcs-1.2.4/bin/htmldiff",
"./.gem/ruby/2.1.0/gems/diff-lcs-1.2.4/bin/ldiff",
"./.gem/ruby/2.1.0/gems/diff-lcs-1.2.4/Contributing.rdoc",
"./.gem/ruby/2.1.0/gems/diff-lcs-1.2.4/docs",
"./.gem/ruby/2.1.0/gems/diff-lcs-1.2.4/docs/artistic.txt",
"./.gem/ruby/2.1.0/gems/diff-lcs-1.2.4/docs/COPYING.txt",
"./.gem/ruby/2.1.0/gems/diff-lcs-1.2.4/Gemfile",
"./.gem/ruby/2.1.0/gems/diff-lcs-1.2.4/History.rdoc",
"./.gem/ruby/2.1.0/gems/diff-lcs-1.2.4/lib",
"./.gem/ruby/2.1.0/gems/diff-lcs-1.2.4/lib/diff",
"./.gem/ruby/2.1.0/gems/diff-lcs-1.2.4/lib/diff/lcs",
"./.gem/ruby/2.1.0/gems/diff-lcs-1.2.4/lib/diff/lcs/array.rb",
"./.gem/ruby/2.1.0/gems/diff-lcs-1.2.4/lib/diff/lcs/block.rb",
"./.gem/ruby/2.1.0/gems/diff-lcs-1.2.4/lib/diff/lcs/callbacks.rb",
"./.gem/ruby/2.1.0/gems/diff-lcs-1.2.4/lib/diff/lcs/change.rb",
"./.gem/ruby/2.1.0/gems/diff-lcs-1.2.4/lib/diff/lcs/htmldiff.rb",
"./.gem/ruby/2.1.0/gems/diff-lcs-1.2.4/lib/diff/lcs/hunk.rb",
"./.gem/ruby/2.1.0/gems/diff-lcs-1.2.4/lib/diff/lcs/internals.rb",
"./.gem/ruby/2.1.0/gems/diff-lcs-1.2.4/lib/diff/lcs/ldiff.rb",
"./.gem/ruby/2.1.0/gems/diff-lcs-1.2.4/lib/diff/lcs/string.rb",
"./.gem/ruby/2.1.0/gems/diff-lcs-1.2.4/lib/diff/lcs.rb",
"./.gem/ruby/2.1.0/gems/diff-lcs-1.2.4/lib/diff-lcs.rb",
"./.gem/ruby/2.1.0/gems/diff-lcs-1.2.4/License.rdoc",
"./.gem/ruby/2.1.0/gems/diff-lcs-1.2.4/Manifest.txt",
"./.gem/ruby/2.1.0/gems/diff-lcs-1.2.4/Rakefile",
"./.gem/ruby/2.1.0/gems/diff-lcs-1.2.4/README.rdoc",
"./.gem/ruby/2.1.0/gems/diff-lcs-1.2.4/spec",
"./.gem/ruby/2.1.0/gems/diff-lcs-1.2.4/spec/change_spec.rb",
"./.gem/ruby/2.1.0/gems/diff-lcs-1.2.4/spec/diff_spec.rb",
"./.gem/ruby/2.1.0/gems/diff-lcs-1.2.4/spec/hunk_spec.rb",
"./.gem/ruby/2.1.0/gems/diff-lcs-1.2.4/spec/issues_spec.rb",
"./.gem/ruby/2.1.0/gems/diff-lcs-1.2.4/spec/lcs_spec.rb",
"./.gem/ruby/2.1.0/gems/diff-lcs-1.2.4/spec/patch_spec.rb",
"./.gem/ruby/2.1.0/gems/diff-lcs-1.2.4/spec/sdiff_spec.rb",
"./.gem/ruby/2.1.0/gems/diff-lcs-1.2.4/spec/spec_helper.rb",
"./.gem/ruby/2.1.0/gems/diff-lcs-1.2.4/spec/traverse_balanced_spec.rb",
"./.gem/ruby/2.1.0/gems/diff-lcs-1.2.4/spec/traverse_sequences_spec.rb",
"./.gem/ruby/2.1.0/gems/diff-lcs-1.2.5",
"./.gem/ruby/2.1.0/gems/diff-lcs-1.2.5/.autotest",
"./.gem/ruby/2.1.0/gems/diff-lcs-1.2.5/.gemtest",
"./.gem/ruby/2.1.0/gems/diff-lcs-1.2.5/.hoerc",
"./.gem/ruby/2.1.0/gems/diff-lcs-1.2.5/.rspec",
"./.gem/ruby/2.1.0/gems/diff-lcs-1.2.5/.travis.yml",
"./.gem/ruby/2.1.0/gems/diff-lcs-1.2.5/autotest",
"./.gem/ruby/2.1.0/gems/diff-lcs-1.2.5/autotest/discover.rb",
"./.gem/ruby/2.1.0/gems/diff-lcs-1.2.5/bin",
"./.gem/ruby/2.1.0/gems/diff-lcs-1.2.5/bin/htmldiff",
"./.gem/ruby/2.1.0/gems/diff-lcs-1.2.5/bin/ldiff",
"./.gem/ruby/2.1.0/gems/diff-lcs-1.2.5/Contributing.rdoc",
"./.gem/ruby/2.1.0/gems/diff-lcs-1.2.5/docs",
"./.gem/ruby/2.1.0/gems/diff-lcs-1.2.5/docs/artistic.txt",
"./.gem/ruby/2.1.0/gems/diff-lcs-1.2.5/docs/COPYING.txt",
"./.gem/ruby/2.1.0/gems/diff-lcs-1.2.5/Gemfile",
"./.gem/ruby/2.1.0/gems/diff-lcs-1.2.5/History.rdoc",
"./.gem/ruby/2.1.0/gems/diff-lcs-1.2.5/lib",
"./.gem/ruby/2.1.0/gems/diff-lcs-1.2.5/lib/diff",
"./.gem/ruby/2.1.0/gems/diff-lcs-1.2.5/lib/diff/lcs",
"./.gem/ruby/2.1.0/gems/diff-lcs-1.2.5/lib/diff/lcs/array.rb",
"./.gem/ruby/2.1.0/gems/diff-lcs-1.2.5/lib/diff/lcs/block.rb",
"./.gem/ruby/2.1.0/gems/diff-lcs-1.2.5/lib/diff/lcs/callbacks.rb",
"./.gem/ruby/2.1.0/gems/diff-lcs-1.2.5/lib/diff/lcs/change.rb",
"./.gem/ruby/2.1.0/gems/diff-lcs-1.2.5/lib/diff/lcs/htmldiff.rb",
"./.gem/ruby/2.1.0/gems/diff-lcs-1.2.5/lib/diff/lcs/hunk.rb",
"./.gem/ruby/2.1.0/gems/diff-lcs-1.2.5/lib/diff/lcs/internals.rb",
"./.gem/ruby/2.1.0/gems/diff-lcs-1.2.5/lib/diff/lcs/ldiff.rb",
"./.gem/ruby/2.1.0/gems/diff-lcs-1.2.5/lib/diff/lcs/string.rb",
"./.gem/ruby/2.1.0/gems/diff-lcs-1.2.5/lib/diff/lcs.rb",
"./.gem/ruby/2.1.0/gems/diff-lcs-1.2.5/lib/diff-lcs.rb",
"./.gem/ruby/2.1.0/gems/diff-lcs-1.2.5/License.rdoc",
"./.gem/ruby/2.1.0/gems/diff-lcs-1.2.5/Manifest.txt",
"./.gem/ruby/2.1.0/gems/diff-lcs-1.2.5/Rakefile",
"./.gem/ruby/2.1.0/gems/diff-lcs-1.2.5/README.rdoc",
"./.gem/ruby/2.1.0/gems/diff-lcs-1.2.5/spec",
"./.gem/ruby/2.1.0/gems/diff-lcs-1.2.5/spec/change_spec.rb",
"./.gem/ruby/2.1.0/gems/diff-lcs-1.2.5/spec/diff_spec.rb",
"./.gem/ruby/2.1.0/gems/diff-lcs-1.2.5/spec/hunk_spec.rb",
"./.gem/ruby/2.1.0/gems/diff-lcs-1.2.5/spec/issues_spec.rb",
"./.gem/ruby/2.1.0/gems/diff-lcs-1.2.5/spec/lcs_spec.rb",
"./.gem/ruby/2.1.0/gems/diff-lcs-1.2.5/spec/patch_spec.rb",
"./.gem/ruby/2.1.0/gems/diff-lcs-1.2.5/spec/sdiff_spec.rb",
"./.gem/ruby/2.1.0/gems/diff-lcs-1.2.5/spec/spec_helper.rb",
"./.gem/ruby/2.1.0/gems/diff-lcs-1.2.5/spec/traverse_balanced_spec.rb",
"./.gem/ruby/2.1.0/gems/diff-lcs-1.2.5/spec/traverse_sequences_spec.rb",
"./.gem/ruby/2.1.0/gems/gem-open-0.1.7",
"./.gem/ruby/2.1.0/gems/gem-open-0.1.7/.gitignore",
"./.gem/ruby/2.1.0/gems/gem-open-0.1.7/gem-open.gemspec",
"./.gem/ruby/2.1.0/gems/gem-open-0.1.7/Gemfile",
"./.gem/ruby/2.1.0/gems/gem-open-0.1.7/Gemfile.lock",
"./.gem/ruby/2.1.0/gems/gem-open-0.1.7/lib",
"./.gem/ruby/2.1.0/gems/gem-open-0.1.7/lib/rubygems",
"./.gem/ruby/2.1.0/gems/gem-open-0.1.7/lib/rubygems/commands",
"./.gem/ruby/2.1.0/gems/gem-open-0.1.7/lib/rubygems/commands/open.rb",
"./.gem/ruby/2.1.0/gems/gem-open-0.1.7/lib/rubygems_plugin.rb",
"./.gem/ruby/2.1.0/gems/gem-open-0.1.7/Rakefile",
"./.gem/ruby/2.1.0/gems/gem-open-0.1.7/README.rdoc",
"./.gem/ruby/2.1.0/gems/gem-open-0.1.7/test",
"./.gem/ruby/2.1.0/gems/gem-open-0.1.7/test/gem_open_test.rb",
"./.gem/ruby/2.1.0/gems/gem-open-0.1.7/test/resources",
"./.gem/ruby/2.1.0/gems/gem-open-0.1.7/test/resources/activesupport-2.3.5.gemspec",
"./.gem/ruby/2.1.0/gems/gem-open-0.1.7/test/resources/activesupport-3.0.0.beta3.gemspec",
"./.gem/ruby/2.1.0/gems/gem-open-0.1.7/test/resources/imgur2-1.2.0.gemspec",
"./.gem/ruby/2.1.0/gems/gem-open-0.1.7/test/resources/rails-2.3.5.gemspec",
"./.gem/ruby/2.1.0/gems/gem-open-0.1.7/test/resources/sinatra-1.0.gemspec",
"./.gem/ruby/2.1.0/gems/gem-open-0.1.7/test/resources/sinatra-sugar-0.4.1.gemspec",
"./.gem/ruby/2.1.0/gems/rspec-2.14.1",
"./.gem/ruby/2.1.0/gems/rspec-2.14.1/lib",
"./.gem/ruby/2.1.0/gems/rspec-2.14.1/lib/rspec",
"./.gem/ruby/2.1.0/gems/rspec-2.14.1/lib/rspec/version.rb",
"./.gem/ruby/2.1.0/gems/rspec-2.14.1/lib/rspec.rb",
"./.gem/ruby/2.1.0/gems/rspec-2.14.1/License.txt",
"./.gem/ruby/2.1.0/gems/rspec-2.14.1/README.md",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/.document",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/.yardopts",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/Changelog.md",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/exe",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/exe/autospec",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/exe/rspec",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/features",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/features/Autotest.md",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/features/command_line",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/features/command_line/example_name_option.feature",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/features/command_line/exit_status.feature",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/features/command_line/format_option.feature",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/features/command_line/init.feature",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/features/command_line/line_number_appended_to_path.feature",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/features/command_line/line_number_option.feature",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/features/command_line/order.feature",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/features/command_line/pattern_option.feature",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/features/command_line/rake_task.feature",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/features/command_line/README.md",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/features/command_line/require_option.feature",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/features/command_line/ruby.feature",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/features/command_line/tag.feature",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/features/command_line/warnings_option.feature",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/features/configuration",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/features/configuration/alias_example_to.feature",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/features/configuration/backtrace_clean_patterns.feature",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/features/configuration/custom_settings.feature",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/features/configuration/default_path.feature",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/features/configuration/deprecation_stream.feature",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/features/configuration/fail_fast.feature",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/features/configuration/failure_exit_code.feature",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/features/configuration/order_and_seed.feature",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/features/configuration/output_stream.feature",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/features/configuration/pattern.feature",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/features/configuration/profile.feature",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/features/configuration/read_options_from_file.feature",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/features/configuration/run_all_when_everything_filtered.feature",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/features/configuration/show_failures_in_pending_blocks.feature",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/features/configuration/treat_symbols_as_metadata_keys_with_true_values.feature",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/features/example_groups",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/features/example_groups/basic_structure.feature",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/features/example_groups/shared_context.feature",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/features/example_groups/shared_examples.feature",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/features/expectation_framework_integration",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/features/expectation_framework_integration/configure_expectation_framework.feature",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/features/filtering",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/features/filtering/exclusion_filters.feature",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/features/filtering/if_and_unless.feature",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/features/filtering/inclusion_filters.feature",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/features/formatters",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/features/formatters/configurable_colors.feature",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/features/formatters/custom_formatter.feature",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/features/formatters/json_formatter.feature",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/features/formatters/text_formatter.feature",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/features/helper_methods",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/features/helper_methods/arbitrary_methods.feature",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/features/helper_methods/let.feature",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/features/helper_methods/modules.feature",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/features/hooks",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/features/hooks/around_hooks.feature",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/features/hooks/before_and_after_hooks.feature",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/features/hooks/filtering.feature",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/features/metadata",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/features/metadata/current_example.feature",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/features/metadata/described_class.feature",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/features/metadata/user_defined.feature",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/features/mock_framework_integration",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/features/mock_framework_integration/use_any_framework.feature",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/features/mock_framework_integration/use_flexmock.feature",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/features/mock_framework_integration/use_mocha.feature",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/features/mock_framework_integration/use_rr.feature",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/features/mock_framework_integration/use_rspec.feature",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/features/pending",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/features/pending/pending_examples.feature",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/features/README.md",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/features/spec_files",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/features/spec_files/arbitrary_file_suffix.feature",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/features/step_definitions",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/features/step_definitions/additional_cli_steps.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/features/subject",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/features/subject/attribute_of_subject.feature",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/features/subject/explicit_subject.feature",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/features/subject/implicit_receiver.feature",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/features/subject/implicit_subject.feature",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/features/support",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/features/support/env.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/features/support/rubinius.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/features/Upgrade.md",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/lib",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/lib/autotest",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/lib/autotest/discover.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/lib/autotest/rspec2.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/lib/rspec",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/lib/rspec/autorun.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/lib/rspec/core",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/lib/rspec/core/backtrace_cleaner.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/lib/rspec/core/backward_compatibility.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/lib/rspec/core/command_line.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/lib/rspec/core/configuration.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/lib/rspec/core/configuration_options.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/lib/rspec/core/deprecation.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/lib/rspec/core/drb_command_line.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/lib/rspec/core/drb_options.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/lib/rspec/core/dsl.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/lib/rspec/core/example.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/lib/rspec/core/example_group.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/lib/rspec/core/extensions",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/lib/rspec/core/extensions/instance_eval_with_args.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/lib/rspec/core/extensions/kernel.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/lib/rspec/core/extensions/module_eval_with_args.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/lib/rspec/core/extensions/ordered.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/lib/rspec/core/filter_manager.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/lib/rspec/core/formatters",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/lib/rspec/core/formatters/base_formatter.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/lib/rspec/core/formatters/base_text_formatter.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/lib/rspec/core/formatters/deprecation_formatter.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/lib/rspec/core/formatters/documentation_formatter.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/lib/rspec/core/formatters/helpers.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/lib/rspec/core/formatters/html_formatter.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/lib/rspec/core/formatters/html_printer.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/lib/rspec/core/formatters/json_formatter.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/lib/rspec/core/formatters/progress_formatter.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/lib/rspec/core/formatters/snippet_extractor.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/lib/rspec/core/formatters/text_mate_formatter.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/lib/rspec/core/formatters.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/lib/rspec/core/hooks.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/lib/rspec/core/memoized_helpers.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/lib/rspec/core/metadata.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/lib/rspec/core/metadata_hash_builder.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/lib/rspec/core/mocking",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/lib/rspec/core/mocking/with_absolutely_nothing.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/lib/rspec/core/mocking/with_flexmock.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/lib/rspec/core/mocking/with_mocha.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/lib/rspec/core/mocking/with_rr.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/lib/rspec/core/mocking/with_rspec.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/lib/rspec/core/option_parser.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/lib/rspec/core/pending.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/lib/rspec/core/project_initializer.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/lib/rspec/core/rake_task.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/lib/rspec/core/reporter.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/lib/rspec/core/ruby_project.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/lib/rspec/core/runner.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/lib/rspec/core/shared_context.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/lib/rspec/core/shared_example_group",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/lib/rspec/core/shared_example_group/collection.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/lib/rspec/core/shared_example_group.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/lib/rspec/core/version.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/lib/rspec/core/world.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/lib/rspec/core.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/License.txt",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/README.md",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/spec",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/spec/autotest",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/spec/autotest/discover_spec.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/spec/autotest/failed_results_re_spec.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/spec/autotest/rspec_spec.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/spec/command_line",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/spec/command_line/order_spec.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/spec/rspec",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/spec/rspec/core",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/spec/rspec/core/backtrace_cleaner_spec.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/spec/rspec/core/command_line_spec.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/spec/rspec/core/command_line_spec_output.txt",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/spec/rspec/core/configuration_options_spec.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/spec/rspec/core/configuration_spec.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/spec/rspec/core/deprecation_spec.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/spec/rspec/core/deprecations_spec.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/spec/rspec/core/drb_command_line_spec.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/spec/rspec/core/drb_options_spec.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/spec/rspec/core/dsl_spec.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/spec/rspec/core/example_group_spec.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/spec/rspec/core/example_spec.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/spec/rspec/core/filter_manager_spec.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/spec/rspec/core/formatters",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/spec/rspec/core/formatters/base_formatter_spec.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/spec/rspec/core/formatters/base_text_formatter_spec.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/spec/rspec/core/formatters/deprecation_formatter_spec.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/spec/rspec/core/formatters/documentation_formatter_spec.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/spec/rspec/core/formatters/helpers_spec.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/spec/rspec/core/formatters/html_formatted-1.8.7-jruby.html",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/spec/rspec/core/formatters/html_formatted-1.8.7-rbx.html",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/spec/rspec/core/formatters/html_formatted-1.8.7.html",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/spec/rspec/core/formatters/html_formatted-1.9.2.html",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/spec/rspec/core/formatters/html_formatted-1.9.3-jruby.html",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/spec/rspec/core/formatters/html_formatted-1.9.3-rbx.html",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/spec/rspec/core/formatters/html_formatted-1.9.3.html",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/spec/rspec/core/formatters/html_formatted-2.0.0.html",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/spec/rspec/core/formatters/html_formatter_spec.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/spec/rspec/core/formatters/json_formatter_spec.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/spec/rspec/core/formatters/progress_formatter_spec.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/spec/rspec/core/formatters/snippet_extractor_spec.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/spec/rspec/core/formatters/text_mate_formatted-1.8.7-jruby.html",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/spec/rspec/core/formatters/text_mate_formatted-1.8.7-rbx.html",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/spec/rspec/core/formatters/text_mate_formatted-1.8.7.html",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/spec/rspec/core/formatters/text_mate_formatted-1.9.2.html",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/spec/rspec/core/formatters/text_mate_formatted-1.9.3-jruby.html",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/spec/rspec/core/formatters/text_mate_formatted-1.9.3-rbx.html",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/spec/rspec/core/formatters/text_mate_formatted-1.9.3.html",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/spec/rspec/core/formatters/text_mate_formatted-2.0.0.html",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/spec/rspec/core/formatters/text_mate_formatter_spec.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/spec/rspec/core/hooks_filtering_spec.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/spec/rspec/core/hooks_spec.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/spec/rspec/core/kernel_extensions_spec.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/spec/rspec/core/memoized_helpers_spec.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/spec/rspec/core/metadata_spec.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/spec/rspec/core/option_parser_spec.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/spec/rspec/core/pending_example_spec.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/spec/rspec/core/project_initializer_spec.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/spec/rspec/core/rake_task_spec.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/spec/rspec/core/reporter_spec.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/spec/rspec/core/resources",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/spec/rspec/core/resources/a_bar.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/spec/rspec/core/resources/a_foo.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/spec/rspec/core/resources/a_spec.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/spec/rspec/core/resources/custom_example_group_runner.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/spec/rspec/core/resources/formatter_specs.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/spec/rspec/core/resources/utf8_encoded.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/spec/rspec/core/rspec_matchers_spec.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/spec/rspec/core/ruby_project_spec.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/spec/rspec/core/runner_spec.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/spec/rspec/core/shared_context_spec.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/spec/rspec/core/shared_example_group",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/spec/rspec/core/shared_example_group/collection_spec.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/spec/rspec/core/shared_example_group_spec.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/spec/rspec/core/world_spec.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/spec/rspec/core_spec.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/spec/spec_helper.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/spec/support",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/spec/support/config_options_helper.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/spec/support/helper_methods.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/spec/support/in_sub_process.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/spec/support/isolate_load_path_mutation.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/spec/support/isolated_directory.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/spec/support/isolated_home_directory.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/spec/support/matchers.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/spec/support/mathn_integration_support.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/spec/support/sandboxed_mock_space.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/spec/support/shared_example_groups.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.6/spec/support/spec_files.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/.document",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/.yardopts",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/Changelog.md",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/exe",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/exe/autospec",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/exe/rspec",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/features",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/features/Autotest.md",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/features/command_line",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/features/command_line/example_name_option.feature",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/features/command_line/exit_status.feature",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/features/command_line/format_option.feature",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/features/command_line/init.feature",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/features/command_line/line_number_appended_to_path.feature",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/features/command_line/line_number_option.feature",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/features/command_line/order.feature",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/features/command_line/pattern_option.feature",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/features/command_line/rake_task.feature",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/features/command_line/README.md",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/features/command_line/require_option.feature",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/features/command_line/ruby.feature",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/features/command_line/tag.feature",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/features/command_line/warnings_option.feature",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/features/configuration",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/features/configuration/alias_example_to.feature",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/features/configuration/backtrace_clean_patterns.feature",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/features/configuration/custom_settings.feature",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/features/configuration/default_path.feature",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/features/configuration/deprecation_stream.feature",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/features/configuration/fail_fast.feature",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/features/configuration/failure_exit_code.feature",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/features/configuration/order_and_seed.feature",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/features/configuration/output_stream.feature",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/features/configuration/pattern.feature",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/features/configuration/profile.feature",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/features/configuration/read_options_from_file.feature",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/features/configuration/run_all_when_everything_filtered.feature",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/features/configuration/show_failures_in_pending_blocks.feature",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/features/configuration/treat_symbols_as_metadata_keys_with_true_values.feature",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/features/example_groups",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/features/example_groups/basic_structure.feature",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/features/example_groups/shared_context.feature",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/features/example_groups/shared_examples.feature",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/features/expectation_framework_integration",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/features/expectation_framework_integration/configure_expectation_framework.feature",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/features/filtering",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/features/filtering/exclusion_filters.feature",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/features/filtering/if_and_unless.feature",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/features/filtering/inclusion_filters.feature",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/features/formatters",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/features/formatters/configurable_colors.feature",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/features/formatters/custom_formatter.feature",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/features/formatters/json_formatter.feature",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/features/formatters/text_formatter.feature",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/features/helper_methods",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/features/helper_methods/arbitrary_methods.feature",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/features/helper_methods/let.feature",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/features/helper_methods/modules.feature",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/features/hooks",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/features/hooks/around_hooks.feature",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/features/hooks/before_and_after_hooks.feature",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/features/hooks/filtering.feature",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/features/metadata",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/features/metadata/current_example.feature",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/features/metadata/described_class.feature",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/features/metadata/user_defined.feature",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/features/mock_framework_integration",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/features/mock_framework_integration/use_any_framework.feature",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/features/mock_framework_integration/use_flexmock.feature",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/features/mock_framework_integration/use_mocha.feature",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/features/mock_framework_integration/use_rr.feature",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/features/mock_framework_integration/use_rspec.feature",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/features/pending",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/features/pending/pending_examples.feature",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/features/README.md",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/features/spec_files",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/features/spec_files/arbitrary_file_suffix.feature",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/features/step_definitions",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/features/step_definitions/additional_cli_steps.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/features/subject",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/features/subject/attribute_of_subject.feature",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/features/subject/explicit_subject.feature",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/features/subject/implicit_receiver.feature",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/features/subject/implicit_subject.feature",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/features/support",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/features/support/env.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/features/support/rubinius.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/features/Upgrade.md",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/lib",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/lib/autotest",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/lib/autotest/discover.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/lib/autotest/rspec2.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/lib/rspec",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/lib/rspec/autorun.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/lib/rspec/core",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/lib/rspec/core/backtrace_cleaner.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/lib/rspec/core/backward_compatibility.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/lib/rspec/core/command_line.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/lib/rspec/core/configuration.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/lib/rspec/core/configuration_options.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/lib/rspec/core/deprecation.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/lib/rspec/core/drb_command_line.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/lib/rspec/core/drb_options.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/lib/rspec/core/dsl.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/lib/rspec/core/example.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/lib/rspec/core/example_group.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/lib/rspec/core/extensions",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/lib/rspec/core/extensions/instance_eval_with_args.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/lib/rspec/core/extensions/kernel.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/lib/rspec/core/extensions/module_eval_with_args.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/lib/rspec/core/extensions/ordered.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/lib/rspec/core/filter_manager.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/lib/rspec/core/formatters",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/lib/rspec/core/formatters/base_formatter.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/lib/rspec/core/formatters/base_text_formatter.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/lib/rspec/core/formatters/deprecation_formatter.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/lib/rspec/core/formatters/documentation_formatter.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/lib/rspec/core/formatters/helpers.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/lib/rspec/core/formatters/html_formatter.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/lib/rspec/core/formatters/html_printer.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/lib/rspec/core/formatters/json_formatter.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/lib/rspec/core/formatters/progress_formatter.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/lib/rspec/core/formatters/snippet_extractor.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/lib/rspec/core/formatters/text_mate_formatter.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/lib/rspec/core/formatters.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/lib/rspec/core/hooks.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/lib/rspec/core/memoized_helpers.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/lib/rspec/core/metadata.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/lib/rspec/core/metadata_hash_builder.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/lib/rspec/core/mocking",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/lib/rspec/core/mocking/with_absolutely_nothing.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/lib/rspec/core/mocking/with_flexmock.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/lib/rspec/core/mocking/with_mocha.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/lib/rspec/core/mocking/with_rr.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/lib/rspec/core/mocking/with_rspec.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/lib/rspec/core/option_parser.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/lib/rspec/core/pending.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/lib/rspec/core/project_initializer.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/lib/rspec/core/rake_task.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/lib/rspec/core/reporter.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/lib/rspec/core/ruby_project.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/lib/rspec/core/runner.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/lib/rspec/core/shared_context.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/lib/rspec/core/shared_example_group",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/lib/rspec/core/shared_example_group/collection.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/lib/rspec/core/shared_example_group.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/lib/rspec/core/version.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/lib/rspec/core/world.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/lib/rspec/core.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/License.txt",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/README.md",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/spec",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/spec/autotest",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/spec/autotest/discover_spec.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/spec/autotest/failed_results_re_spec.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/spec/autotest/rspec_spec.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/spec/command_line",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/spec/command_line/order_spec.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/spec/rspec",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/spec/rspec/core",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/spec/rspec/core/backtrace_cleaner_spec.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/spec/rspec/core/command_line_spec.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/spec/rspec/core/command_line_spec_output.txt",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/spec/rspec/core/configuration_options_spec.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/spec/rspec/core/configuration_spec.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/spec/rspec/core/deprecation_spec.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/spec/rspec/core/deprecations_spec.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/spec/rspec/core/drb_command_line_spec.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/spec/rspec/core/drb_options_spec.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/spec/rspec/core/dsl_spec.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/spec/rspec/core/example_group_spec.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/spec/rspec/core/example_spec.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/spec/rspec/core/filter_manager_spec.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/spec/rspec/core/formatters",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/spec/rspec/core/formatters/base_formatter_spec.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/spec/rspec/core/formatters/base_text_formatter_spec.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/spec/rspec/core/formatters/deprecation_formatter_spec.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/spec/rspec/core/formatters/documentation_formatter_spec.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/spec/rspec/core/formatters/helpers_spec.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/spec/rspec/core/formatters/html_formatted-1.8.7-jruby.html",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/spec/rspec/core/formatters/html_formatted-1.8.7-rbx.html",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/spec/rspec/core/formatters/html_formatted-1.8.7.html",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/spec/rspec/core/formatters/html_formatted-1.9.2.html",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/spec/rspec/core/formatters/html_formatted-1.9.3-jruby.html",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/spec/rspec/core/formatters/html_formatted-1.9.3-rbx.html",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/spec/rspec/core/formatters/html_formatted-1.9.3.html",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/spec/rspec/core/formatters/html_formatted-2.0.0.html",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/spec/rspec/core/formatters/html_formatter_spec.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/spec/rspec/core/formatters/json_formatter_spec.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/spec/rspec/core/formatters/progress_formatter_spec.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/spec/rspec/core/formatters/snippet_extractor_spec.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/spec/rspec/core/formatters/text_mate_formatted-1.8.7-jruby.html",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/spec/rspec/core/formatters/text_mate_formatted-1.8.7-rbx.html",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/spec/rspec/core/formatters/text_mate_formatted-1.8.7.html",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/spec/rspec/core/formatters/text_mate_formatted-1.9.2.html",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/spec/rspec/core/formatters/text_mate_formatted-1.9.3-jruby.html",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/spec/rspec/core/formatters/text_mate_formatted-1.9.3-rbx.html",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/spec/rspec/core/formatters/text_mate_formatted-1.9.3.html",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/spec/rspec/core/formatters/text_mate_formatted-2.0.0.html",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/spec/rspec/core/formatters/text_mate_formatter_spec.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/spec/rspec/core/hooks_filtering_spec.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/spec/rspec/core/hooks_spec.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/spec/rspec/core/kernel_extensions_spec.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/spec/rspec/core/memoized_helpers_spec.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/spec/rspec/core/metadata_spec.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/spec/rspec/core/option_parser_spec.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/spec/rspec/core/pending_example_spec.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/spec/rspec/core/project_initializer_spec.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/spec/rspec/core/rake_task_spec.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/spec/rspec/core/reporter_spec.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/spec/rspec/core/resources",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/spec/rspec/core/resources/a_bar.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/spec/rspec/core/resources/a_foo.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/spec/rspec/core/resources/a_spec.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/spec/rspec/core/resources/custom_example_group_runner.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/spec/rspec/core/resources/formatter_specs.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/spec/rspec/core/resources/utf8_encoded.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/spec/rspec/core/rspec_matchers_spec.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/spec/rspec/core/ruby_project_spec.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/spec/rspec/core/runner_spec.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/spec/rspec/core/shared_context_spec.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/spec/rspec/core/shared_example_group",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/spec/rspec/core/shared_example_group/collection_spec.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/spec/rspec/core/shared_example_group_spec.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/spec/rspec/core/world_spec.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/spec/rspec/core_spec.rb",
"./.gem/ruby/2.1.0/gems/rspec-core-2.14.7/spec/spec_helper.rb",