summary refs log tree commit diff
path: root/pkgs/development/interpreters/ruby/generated.nix
blob: 08c07a7197358635ceb2b2e9bbd9e019dce6fb8b (plain) (blame)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
# WARNING: automatically generated file
# Generated by 'gem nix' command that comes from 'nix' gem
g: # Get dependencies from patched gems
{
  aliases = {
    ZenTest = g.ZenTest_4_9_0;
    actionmailer = g.actionmailer_3_2_12;
    actionpack = g.actionpack_3_2_12;
    activemodel = g.activemodel_3_2_12;
    activerecord = g.activerecord_3_2_12;
    activeresource = g.activeresource_3_2_12;
    activesupport = g.activesupport_3_2_12;
    arel = g.arel_3_0_2;
    atoulme_Antwrap = g.atoulme_Antwrap_0_7_4;
    autotest_rails = g.autotest_rails_4_1_2;
    aws_sdk = g.aws_sdk_1_8_1_2;
    builder = g.builder_3_1_4;
    buildr = g.buildr_1_4_9;
    bundler = g.bundler_1_2_3;
    childprocess = g.childprocess_0_3_8;
    daemons = g.daemons_1_1_9;
    diff_lcs = g.diff_lcs_1_1_3;
    erubis = g.erubis_2_7_0;
    eventmachine = g.eventmachine_1_0_0;
    fakes3 = g.fakes3_0_1_5;
    ffi = g.ffi_1_3_1;
    foreman = g.foreman_0_61_0;
    highline = g.highline_1_6_2;
    hike = g.hike_1_2_1;
    hoe = g.hoe_3_1_0;
    i18n = g.i18n_0_6_1;
    journey = g.journey_1_0_4;
    jruby_pageant = g.jruby_pageant_1_1_1;
    json = g.json_1_7_7;
    json_pure = g.json_pure_1_7_7;
    macaddr = g.macaddr_1_6_1;
    mail = g.mail_2_4_4;
    mime_types = g.mime_types_1_21;
    minitar = g.minitar_0_5_3;
    multi_json = g.multi_json_1_5_1;
    net_sftp = g.net_sftp_2_0_5;
    net_ssh = g.net_ssh_2_6_5;
    nix = g.nix_0_1_1;
    nokogiri = g.nokogiri_1_5_6;
    polyglot = g.polyglot_0_3_3;
    rack = g.rack_1_5_2;
    rack_cache = g.rack_cache_1_2;
    rack_protection = g.rack_protection_1_3_2;
    rack_ssl = g.rack_ssl_1_3_3;
    rack_test = g.rack_test_0_6_2;
    rails = g.rails_3_2_12;
    railties = g.railties_3_2_12;
    rake = g.rake_10_0_3;
    rb_fsevent = g.rb_fsevent_0_9_3;
    rdoc = g.rdoc_3_12_1;
    rjb = g.rjb_1_4_6;
    rspec = g.rspec_2_11_0;
    rspec_core = g.rspec_core_2_11_1;
    rspec_expectations = g.rspec_expectations_2_11_3;
    rspec_mocks = g.rspec_mocks_2_11_3;
    rubyforge = g.rubyforge_2_0_4;
    rubyzip = g.rubyzip_0_9_9;
    sass = g.sass_3_2_5;
    selenium_webdriver = g.selenium_webdriver_2_29_0;
    sinatra = g.sinatra_1_3_2;
    sprockets = g.sprockets_2_2_2;
    systemu = g.systemu_2_5_2;
    thin = g.thin_1_5_0;
    thor = g.thor_0_17_0;
    tilt = g.tilt_1_3_3;
    treetop = g.treetop_1_4_12;
    tzinfo = g.tzinfo_0_3_35;
    uuid = g.uuid_2_3_6;
    uuidtools = g.uuidtools_2_1_3;
    websocket = g.websocket_1_0_7;
    xml_simple = g.xml_simple_1_1_1;
  };
  gem_nix_args = [ ''autotest-rails'' ''aws-sdk'' ''buildr'' ''fakes3'' ''foreman'' ''nix'' ''rails'' ''rake'' ''rb-fsevent'' ''sass'' ''selenium-webdriver'' ''sinatra-1.3.2'' ''thin'' ''uuid'' ];
  gems = {
    ZenTest_4_9_0 = {
      basename = ''ZenTest'';
      meta = {
        description = ''ZenTest provides 4 different tools: zentest, unit_diff, autotest, and multiruby'';
        homepage = ''https://github.com/seattlerb/zentest'';
        longDescription = ''ZenTest provides 4 different tools: zentest, unit_diff, autotest, and
multiruby.

zentest scans your target and unit-test code and writes your missing
code based on simple naming rules, enabling XP at a much quicker pace.
zentest only works with Ruby and Minitest or Test::Unit. There is
enough evidence to show that this is still proving useful to users, so
it stays.

unit_diff is a command-line filter to diff expected results from
actual results and allow you to quickly see exactly what is wrong.
Do note that minitest 2.2+ provides an enhanced assert_equal obviating
the need for unit_diff

autotest is a continous testing facility meant to be used during
development. As soon as you save a file, autotest will run the
corresponding dependent tests.

multiruby runs anything you want on multiple versions of ruby. Great
for compatibility checking! Use multiruby_setup to manage your
installed versions.'';
      };
      name = ''ZenTest-4.9.0'';
      requiredGems = [  ];
      sha256 = ''16bp7rwl463m0d213rmwp4rjfwiw1bm529c518v91l18h7hcnb96'';
    };
    actionmailer_3_2_12 = {
      basename = ''actionmailer'';
      meta = {
        description = ''Email composition, delivery, and receiving framework (part of Rails).'';
        homepage = ''http://www.rubyonrails.org'';
        longDescription = ''Email on Rails. Compose, deliver, receive, and test emails using the familiar controller/view pattern. First-class support for multipart email and attachments.'';
      };
      name = ''actionmailer-3.2.12'';
      requiredGems = [ g.actionpack_3_2_12 g.mail_2_4_4 ];
      sha256 = ''0rjcyz5p139iv7r9gb9nw6c490mksf6n3rnfxsg6bdaxpabinlc7'';
    };
    actionpack_3_2_12 = {
      basename = ''actionpack'';
      meta = {
        description = ''Web-flow and rendering framework putting the VC in MVC (part of Rails).'';
        homepage = ''http://www.rubyonrails.org'';
        longDescription = ''Web apps on Rails. Simple, battle-tested conventions for building and testing MVC web applications. Works with any Rack-compatible server.'';
      };
      name = ''actionpack-3.2.12'';
      requiredGems = [ g.activesupport_3_2_12 g.activemodel_3_2_12 g.rack_cache_1_2 g.builder_3_0_4 g.rack_1_4_5 g.rack_test_0_6_2 g.journey_1_0_4 g.sprockets_2_2_2 g.erubis_2_7_0 ];
      sha256 = ''19p8slf607ssvhd1xkqmk0ddhxqh99faqbgw9i0gyjh1hxyh4apk'';
    };
    activemodel_3_2_12 = {
      basename = ''activemodel'';
      meta = {
        description = ''A toolkit for building modeling frameworks (part of Rails).'';
        homepage = ''http://www.rubyonrails.org'';
        longDescription = ''A toolkit for building modeling frameworks like Active Record and Active Resource. Rich support for attributes, callbacks, validations, observers, serialization, internationalization, and testing.'';
      };
      name = ''activemodel-3.2.12'';
      requiredGems = [ g.activesupport_3_2_12 g.builder_3_0_4 ];
      sha256 = ''1w43k2yhdybrrhph87zhb9shc1j8z1ryhpqy15y7cj9gc4a1bnqf'';
    };
    activerecord_3_2_12 = {
      basename = ''activerecord'';
      meta = {
        description = ''Object-relational mapper framework (part of Rails).'';
        homepage = ''http://www.rubyonrails.org'';
        longDescription = ''Databases on Rails. Build a persistent domain model by mapping database tables to Ruby classes. Strong conventions for associations, validations, aggregations, migrations, and testing come baked-in.'';
      };
      name = ''activerecord-3.2.12'';
      requiredGems = [ g.activesupport_3_2_12 g.activemodel_3_2_12 g.arel_3_0_2 g.tzinfo_0_3_35 ];
      sha256 = ''0fl8iyv3gcy72y79iv4ccyck8ik02rrl3pdy7yxfhlnqgryp8syi'';
    };
    activeresource_3_2_12 = {
      basename = ''activeresource'';
      meta = {
        description = ''REST modeling framework (part of Rails).'';
        homepage = ''http://www.rubyonrails.org'';
        longDescription = ''REST on Rails. Wrap your RESTful web app with Ruby classes and work with them like Active Record models.'';
      };
      name = ''activeresource-3.2.12'';
      requiredGems = [ g.activesupport_3_2_12 g.activemodel_3_2_12 ];
      sha256 = ''0dmy7n93ndxfqkccs0mv82dzkr130414djg96qi8njyj07ad84fi'';
    };
    activesupport_3_2_12 = {
      basename = ''activesupport'';
      meta = {
        description = ''A toolkit of support libraries and Ruby core extensions extracted from the Rails framework.'';
        homepage = ''http://www.rubyonrails.org'';
        longDescription = ''A toolkit of support libraries and Ruby core extensions extracted from the Rails framework. Rich support for multibyte strings, internationalization, time zones, and testing.'';
      };
      name = ''activesupport-3.2.12'';
      requiredGems = [ g.i18n_0_6_1 g.multi_json_1_5_1 ];
      sha256 = ''1giqkprxjf5gyfyhn5nz9q8a5gi3v8irxhkpqr00zc5fw1azllsg'';
    };
    arel_3_0_2 = {
      basename = ''arel'';
      meta = {
        description = ''Arel is a SQL AST manager for Ruby'';
        homepage = ''http://github.com/rails/arel'';
        longDescription = ''Arel is a SQL AST manager for Ruby. It

1. Simplifies the generation of complex SQL queries
2. Adapts to various RDBMS systems

It is intended to be a framework framework; that is, you can build your own ORM
with it, focusing on innovative object and collection modeling as opposed to
database compatibility and query generation.'';
      };
      name = ''arel-3.0.2'';
      requiredGems = [  ];
      sha256 = ''158bvrhammpblky9z9dgimjr55bdypfx6w5s1dm4vyj42h49qpkx'';
    };
    atoulme_Antwrap_0_7_4 = {
      basename = ''atoulme_Antwrap'';
      meta = {
        description = ''A Ruby module that wraps the Apache Ant build tool. Antwrap can be used to invoke Ant Tasks from a Ruby or a JRuby script.'';
        homepage = ''http://rubyforge.org/projects/antwrap/'';
        longDescription = ''	A Ruby module that wraps the Apache Ant build tool. Antwrap can be used to invoke Ant Tasks from a Ruby or a JRuby script.

== FEATURES/PROBLEMS:

	Antwrap runs on the native Ruby interpreter via the RJB (Ruby Java Bridge gem) and on the JRuby interpreter. Antwrap is compatible with Ant versions 1.5.4, 
	1.6.5 and 1.7.0. For more information, 	see the Project Info (http://rubyforge.org/projects/antwrap/) page. 
	 
== SYNOPSIS:

	Antwrap is a Ruby library that can be used to invoke Ant tasks. It is being used in the Buildr (http://incubator.apache.org/buildr/) project to execute 
	Ant (http://ant.apache.org/) tasks in a Java project. If you are tired of fighting with Ant or Maven XML files in your Java project, take some time to 
	check out Buildr!'';
      };
      name = ''atoulme-Antwrap-0.7.4'';
      requiredGems = [ g.rjb_1_4_6 ];
      sha256 = ''0sh9capkya88qm9mvixwly32fwb2c4nzif9j9vv0f73rqw8kz4j4'';
    };
    autotest_rails_4_1_2 = {
      basename = ''autotest_rails'';
      meta = {
        description = ''This is an autotest plugin to provide rails support'';
        homepage = ''https://github.com/seattlerb/autotest-rails'';
        longDescription = ''This is an autotest plugin to provide rails support. It provides basic
rails support and extra plugins for migrations and fixtures.'';
      };
      name = ''autotest-rails-4.1.2'';
      requiredGems = [ g.ZenTest_4_9_0 ];
      sha256 = ''1wkb5jayb39yx0i8ly7sibygf9f9c3w24jg2z1qgm135zlb070v4'';
    };
    aws_sdk_1_8_1_2 = {
      basename = ''aws_sdk'';
      meta = {
        description = ''AWS SDK for Ruby'';
        homepage = ''http://aws.amazon.com/sdkforruby'';
        longDescription = ''AWS SDK for Ruby'';
      };
      name = ''aws-sdk-1.8.1.2'';
      requiredGems = [ g.uuidtools_2_1_3 g.nokogiri_1_5_6 g.json_1_7_7 ];
      sha256 = ''0z3ins8rd8v3r40sn70kg21f5di58lqjfxppl19hi3pdjxgdrr7x'';
    };
    builder_3_0_4 = {
      basename = ''builder'';
      meta = {
        description = ''Builders for MarkUp.'';
        homepage = ''http://onestepback.org'';
        longDescription = ''Builder provides a number of builder objects that make creating structured data
simple to do.  Currently the following builder objects are supported:

* XML Markup
* XML Events
'';
      };
      name = ''builder-3.0.4'';
      requiredGems = [  ];
      sha256 = ''0hn41h249v82wj7d9vji2lm568jxv8pzq2czh2v0603hjv21r8x1'';
    };
    builder_3_1_3 = {
      basename = ''builder'';
      meta = {
        description = ''Builders for MarkUp.'';
        homepage = ''http://onestepback.org'';
        longDescription = ''Builder provides a number of builder objects that make creating structured data
simple to do.  Currently the following builder objects are supported:

* XML Markup
* XML Events
'';
      };
      name = ''builder-3.1.3'';
      requiredGems = [  ];
      sha256 = ''0w6xsq9vyvzdy0xb52sajgipr9ml2bbpivk6dxm69c6987dk7him'';
    };
    builder_3_1_4 = {
      basename = ''builder'';
      meta = {
        description = ''Builders for MarkUp.'';
        homepage = ''http://onestepback.org'';
        longDescription = ''Builder provides a number of builder objects that make creating structured data
simple to do.  Currently the following builder objects are supported:

* XML Markup
* XML Events
'';
      };
      name = ''builder-3.1.4'';
      requiredGems = [  ];
      sha256 = ''1p0bjy1vb0zbswd6bsh5qda0f0br53p8vak8cm7hls62094r405p'';
    };
    buildr_1_4_9 = {
      basename = ''buildr'';
      meta = {
        description = ''Build like you code'';
        homepage = ''http://buildr.apache.org/'';
        longDescription = ''Apache Buildr is a build system for Java-based applications, including support
for Scala, Groovy and a growing number of JVM languages and tools.  We wanted
something that's simple and intuitive to use, so we only need to tell it what
to do, and it takes care of the rest.  But also something we can easily extend
for those one-off tasks, with a language that's a joy to use.
'';
      };
      name = ''buildr-1.4.9'';
      requiredGems = [ g.rake_0_9_2_2 g.builder_3_1_3 g.net_ssh_2_6_0 g.net_sftp_2_0_5 g.rubyzip_0_9_9 g.highline_1_6_2 g.json_pure_1_7_5 g.rubyforge_2_0_4 g.hoe_3_1_0 g.rjb_1_4_2 g.atoulme_Antwrap_0_7_4 g.diff_lcs_1_1_3 g.rspec_expectations_2_11_3 g.rspec_mocks_2_11_3 g.rspec_core_2_11_1 g.rspec_2_11_0 g.xml_simple_1_1_1 g.minitar_0_5_3 ];
      sha256 = ''1ws8cdc7ylfq0aqbcmgwj3d8jxh8lp8zgxx0w0a7ippvvjjxb7az'';
    };
    bundler_1_2_3 = {
      basename = ''bundler'';
      meta = {
        description = ''The best way to manage your application's dependencies'';
        homepage = ''http://gembundler.com'';
        longDescription = ''Bundler manages an application's dependencies through its entire life, across many machines, systematically and repeatably'';
      };
      name = ''bundler-1.2.3'';
      requiredGems = [  ];
      sha256 = ''0bf6ync0901d9q4cg5ws4ra0qh9ssw2xgsip8dka34sbm59kav4w'';
    };
    childprocess_0_3_8 = {
      basename = ''childprocess'';
      meta = {
        description = ''This gem aims at being a simple and reliable solution for controlling external programs running in the background on any Ruby / OS combination.'';
        homepage = ''http://github.com/jarib/childprocess'';
        longDescription = ''This gem aims at being a simple and reliable solution for controlling external programs running in the background on any Ruby / OS combination.'';
      };
      name = ''childprocess-0.3.8'';
      requiredGems = [ g.ffi_1_3_1 ];
      sha256 = ''08rp4krw0g60567ih4w51ndlq2pg92al0dycy0bs0m3msq68nlq4'';
    };
    daemons_1_1_9 = {
      basename = ''daemons'';
      meta = {
        description = ''A toolkit to create and control daemons in different ways'';
        homepage = ''http://daemons.rubyforge.org'';
        longDescription = ''Daemons provides an easy way to wrap existing ruby scripts (for example a self-written server)  to be run as a daemon and to be controlled by simple start/stop/restart commands.  You can also call blocks as daemons and control them from the parent or just daemonize the current process.  Besides this basic functionality, daemons offers many advanced features like exception  backtracing and logging (in case your ruby script crashes) and monitoring and automatic restarting of your processes if they crash.'';
      };
      name = ''daemons-1.1.9'';
      requiredGems = [  ];
      sha256 = ''1j1m64pirsldhic6x6sg4lcrmp1bs1ihpd49xm8m1b2rc1c3irzy'';
    };
    diff_lcs_1_1_3 = {
      basename = ''diff_lcs'';
      meta = {
        description = ''Diff::LCS is a port of Perl's Algorithm::Diff that uses the McIlroy-Hunt longest common subsequence (LCS) algorithm to compute intelligent differences between two sequenced enumerable containers'';
        longDescription = ''Diff::LCS is a port of Perl's Algorithm::Diff that uses the McIlroy-Hunt
longest common subsequence (LCS) algorithm to compute intelligent differences
between two sequenced enumerable containers. The implementation is based on
Mario I. Wolczko's {Smalltalk version 1.2}[ftp://st.cs.uiuc.edu/pub/Smalltalk/MANCHESTER/manchester/4.0/diff.st]
(1993) and Ned Konz's Perl version
{Algorithm::Diff 1.15}[http://search.cpan.org/~nedkonz/Algorithm-Diff-1.15/].

This is release 1.1.3, fixing several small bugs found over the years. Version
1.1.0 added new features, including the ability to #patch and #unpatch changes
as well as a new contextual diff callback, Diff::LCS::ContextDiffCallbacks,
that should improve the context sensitivity of patching.

This library is called Diff::LCS because of an early version of Algorithm::Diff
which was restrictively licensed. This version has seen a minor license change:
instead of being under Ruby's license as an option, the third optional license
is the MIT license.'';
      };
      name = ''diff-lcs-1.1.3'';
      requiredGems = [  ];
      sha256 = ''15wqs3md9slif6ag43vp6gw63r3a2zdqiyfapnnzkb7amgg930pv'';
    };
    erubis_2_7_0 = {
      basename = ''erubis'';
      meta = {
        description = ''a fast and extensible eRuby implementation which supports multi-language'';
        homepage = ''http://www.kuwata-lab.com/erubis/'';
        longDescription = ''  Erubis is an implementation of eRuby and has the following features:

  * Very fast, almost three times faster than ERB and about 10% faster than eruby.
  * Multi-language support (Ruby/PHP/C/Java/Scheme/Perl/Javascript)
  * Auto escaping support
  * Auto trimming spaces around '<% %>'
  * Embedded pattern changeable (default '<% %>')
  * Enable to handle Processing Instructions (PI) as embedded pattern (ex. '<?rb ... ?>')
  * Context object available and easy to combine eRuby template with YAML datafile
  * Print statement available
  * Easy to extend and customize in subclass
  * Ruby on Rails support
'';
      };
      name = ''erubis-2.7.0'';
      requiredGems = [  ];
      sha256 = ''1fj827xqjs91yqsydf0zmfyw9p4l2jz5yikg3mppz6d7fi8kyrb3'';
    };
    eventmachine_1_0_0 = {
      basename = ''eventmachine'';
      meta = {
        description = ''Ruby/EventMachine library'';
        homepage = ''http://rubyeventmachine.com'';
        longDescription = ''EventMachine implements a fast, single-threaded engine for arbitrary network
communications. It's extremely easy to use in Ruby. EventMachine wraps all
interactions with IP sockets, allowing programs to concentrate on the
implementation of network protocols. It can be used to create both network
servers and clients. To create a server or client, a Ruby program only needs
to specify the IP address and port, and provide a Module that implements the
communications protocol. Implementations of several standard network protocols
are provided with the package, primarily to serve as examples. The real goal
of EventMachine is to enable programs to easily interface with other programs
using TCP/IP, especially if custom protocols are required.'';
      };
      name = ''eventmachine-1.0.0'';
      requiredGems = [  ];
      sha256 = ''1qshsikskkfbbhai9s0qhmnpa326m83k9yzivwvkl2dc1ffpk2pz'';
    };
    fakes3_0_1_5 = {
      basename = ''fakes3'';
      meta = {
        description = ''FakeS3 is a server that simulates S3 commands so you can test your S3 functionality in your projects'';
        longDescription = ''Use FakeS3 to test basic S3 functionality without actually connecting to S3'';
      };
      name = ''fakes3-0.1.5'';
      requiredGems = [ g.thor_0_17_0 g.builder_3_1_4 ];
      sha256 = ''1na5wrbarla6s414svqmr5spbpv6vmcgpswal444x4clcpmadhib'';
    };
    ffi_1_3_1 = {
      basename = ''ffi'';
      meta = {
        description = ''Ruby FFI'';
        homepage = ''http://wiki.github.com/ffi/ffi'';
        longDescription = ''Ruby FFI library'';
      };
      name = ''ffi-1.3.1'';
      requiredGems = [  ];
      sha256 = ''0hbrfwgaw3ilmb47lvg9gzdnnfs0q0dzp6dki7rphcvsgirhp0sb'';
    };
    foreman_0_61_0 = {
      basename = ''foreman'';
      meta = {
        description = ''Process manager for applications with multiple components'';
        homepage = ''http://github.com/ddollar/foreman'';
        longDescription = ''Process manager for applications with multiple components'';
      };
      name = ''foreman-0.61.0'';
      requiredGems = [ g.thor_0_17_0 ];
      sha256 = ''1h9dmzq1cwz87qyzx2ibpjghsxjnnqbh485l3sdxyfh5k3v79k7z'';
    };
    highline_1_6_2 = {
      basename = ''highline'';
      meta = {
        description = ''HighLine is a high-level command-line IO library.'';
        homepage = ''http://highline.rubyforge.org'';
        longDescription = ''A high-level IO library that provides validation, type conversion, and more for
command-line interfaces. HighLine also includes a complete menu system that can
crank out anything from simple list selection to complete shells with just
minutes of work.
'';
      };
      name = ''highline-1.6.2'';
      requiredGems = [  ];
      sha256 = ''0azmahb70f1nlg6lq5wljbzcijhfb9lz8skwb4k2977kdml07mcn'';
    };
    hike_1_2_1 = {
      basename = ''hike'';
      meta = {
        description = ''Find files in a set of paths'';
        homepage = ''http://github.com/sstephenson/hike'';
        longDescription = ''A Ruby library for finding files in a set of paths.'';
      };
      name = ''hike-1.2.1'';
      requiredGems = [  ];
      sha256 = ''1c78gja9i9nj76gdj65czhvwam6550l0w9ilnn8vysj9cwv0rg7b'';
    };
    hoe_3_1_0 = {
      basename = ''hoe'';
      meta = {
        description = ''Hoe is a rake/rubygems helper for project Rakefiles'';
        homepage = ''http://www.zenspider.com/projects/hoe.html'';
        longDescription = ''Hoe is a rake/rubygems helper for project Rakefiles. It helps you
manage, maintain, and release your project and includes a dynamic
plug-in system allowing for easy extensibility. Hoe ships with
plug-ins for all your usual project tasks including rdoc generation,
testing, packaging, deployment, and announcement..

See class rdoc for help. Hint: `ri Hoe` or any of the plugins listed
below.

For extra goodness, see: http://seattlerb.rubyforge.org/hoe/Hoe.pdf'';
      };
      name = ''hoe-3.1.0'';
      requiredGems = [ g.rake_0_9_6 ];
      sha256 = ''0i961x0hrd6fs1nsfham87dhn64gqpnai27l14jag7qbnp3a79yp'';
    };
    i18n_0_6_1 = {
      basename = ''i18n'';
      meta = {
        description = ''New wave Internationalization support for Ruby'';
        homepage = ''http://github.com/svenfuchs/i18n'';
        longDescription = ''New wave Internationalization support for Ruby.'';
      };
      name = ''i18n-0.6.1'';
      requiredGems = [  ];
      sha256 = ''0x3lhp1vl1k4dfqx6k93hhxcpjkz57y8cf007ws7p845ywk6ibfl'';
    };
    journey_1_0_4 = {
      basename = ''journey'';
      meta = {
        description = ''Journey is a router'';
        homepage = ''http://github.com/rails/journey'';
        longDescription = ''Journey is a router.  It routes requests.'';
      };
      name = ''journey-1.0.4'';
      requiredGems = [  ];
      sha256 = ''03y1xidg1rx1yjz8xb50083vfwcsfkgs4zmizc040y1h4mhvhm3l'';
    };
    jruby_pageant_1_1_1 = {
      basename = ''jruby_pageant'';
      meta = {
        description = ''jruby-pageant allows Pageant access on JRuby + Windows'';
        homepage = ''http://github.com/arturaz/jruby-pageant'';
        longDescription = ''This is a convenience gem packaging required JNA/JSCH jars.'';
      };
      name = ''jruby-pageant-1.1.1'';
      requiredGems = [  ];
      sha256 = ''1kgqsn0bagr41gf5kbqaxbs38a7s5bm85m0pdx4qz7d70v9nc9cl'';
    };
    json_1_7_7 = {
      basename = ''json'';
      meta = {
        description = ''JSON Implementation for Ruby'';
        homepage = ''http://flori.github.com/json'';
        longDescription = ''This is a JSON implementation as a Ruby extension in C.'';
      };
      name = ''json-1.7.7'';
      requiredGems = [  ];
      sha256 = ''1v5pn3g9ignbgrfl72dbf7bzvxsm90ybp24fa3bm9cv5cpa2ww7x'';
    };
    json_pure_1_7_5 = {
      basename = ''json_pure'';
      meta = {
        description = ''JSON Implementation for Ruby'';
        homepage = ''http://flori.github.com/json'';
        longDescription = ''This is a JSON implementation in pure Ruby.'';
      };
      name = ''json_pure-1.7.5'';
      requiredGems = [  ];
      sha256 = ''14nwwf001mh70qnynpb3h8c0kgcfi666yrg2frib4p6lr57jx8ap'';
    };
    json_pure_1_7_7 = {
      basename = ''json_pure'';
      meta = {
        description = ''JSON Implementation for Ruby'';
        homepage = ''http://flori.github.com/json'';
        longDescription = ''This is a JSON implementation in pure Ruby.'';
      };
      name = ''json_pure-1.7.7'';
      requiredGems = [  ];
      sha256 = ''0jxp0amx9xhka0ixnhvfgwc5ydr82hkxp81pvw32z31arx7jrwl6'';
    };
    macaddr_1_6_1 = {
      basename = ''macaddr'';
      meta = {
        description = ''macaddr'';
        homepage = ''https://github.com/ahoward/macaddr'';
        longDescription = ''description: macaddr kicks the ass'';
      };
      name = ''macaddr-1.6.1'';
      requiredGems = [ g.systemu_2_5_2 ];
      sha256 = ''1vd9l1d0lc0sq3rn1ya816wrzgxxqdzq6pgq0y0435qm6ikwy7ch'';
    };
    mail_2_4_4 = {
      basename = ''mail'';
      meta = {
        description = ''Mail provides a nice Ruby DSL for making, sending and reading emails.'';
        homepage = ''http://github.com/mikel/mail'';
        longDescription = ''A really Ruby Mail handler.'';
      };
      name = ''mail-2.4.4'';
      requiredGems = [ g.mime_types_1_21 g.treetop_1_4_12 g.i18n_0_6_1 ];
      sha256 = ''0idylz5pnlz34mrxm7gs9jbll2c0k0y9dq2qarhxk30gwyvjaxi3'';
    };
    mime_types_1_21 = {
      basename = ''mime_types'';
      meta = {
        description = ''This library allows for the identification of a file's likely MIME content type'';
        homepage = ''http://mime-types.rubyforge.org/'';
        longDescription = ''This library allows for the identification of a file's likely MIME content
type. This is release 1.21 with new MIME types. The identification of MIME
content type is based on a file's filename extensions.

MIME types are used in MIME-compliant communications, as in e-mail or
HTTP traffic, to indicate the type of content which is transmitted.
MIME::Types provides the ability for detailed information about MIME
entities (provided as a set of MIME::Type objects) to be determined and
used programmatically. There are many types defined by RFCs and vendors,
so the list is long but not complete; don't hesitate to ask to add
additional information. This library follows the IANA collection of MIME
types (see below for reference).

MIME::Types for Ruby was originally based on and synchronized with MIME::Types
for Perl by Mark Overmeer, copyright 2001 - 2009. As of version 1.15, the data
format for the MIME::Type list has changed and the synchronization will no
longer happen.

MIME::Types is built to conform to the MIME types of RFCs 2045 and 2231. It
follows the official {IANA registry}[http://www.iana.org/assignments/media-types/]
({ftp}[ftp://ftp.iana.org/assignments/media-types]) with some unofficial types
added from the the {LTSW collection}[http://www.ltsw.se/knbase/internet/mime.htp].'';
      };
      name = ''mime-types-1.21'';
      requiredGems = [  ];
      sha256 = ''1qmx53a2kqk0nnhjbfvbc213wsxiprl0wqm7f2xvcsh253ld91iw'';
    };
    minitar_0_5_3 = {
      basename = ''minitar'';
      meta = {
        description = ''Provides POSIX tarchive management from Ruby programs.'';
        homepage = ''http://rubyforge.org/projects/ruwiki/'';
        longDescription = ''Archive::Tar::Minitar is a pure-Ruby library and command-line utility that provides the ability to deal with POSIX tar(1) archive files. The implementation is based heavily on Mauricio Ferna'ndez's implementation in rpa-base, but has been reorganised to promote reuse in other projects.'';
      };
      name = ''minitar-0.5.3'';
      requiredGems = [  ];
      sha256 = ''035vs1knnnjsb8arfp8vx75warvwcdpiljjwv38lqljai9v8fq53'';
    };
    multi_json_1_5_1 = {
      basename = ''multi_json'';
      meta = {
        description = ''A gem to provide swappable JSON backends.'';
        homepage = ''http://github.com/intridea/multi_json'';
        longDescription = ''A gem to provide easy switching between different JSON backends, including Oj, Yajl, the JSON gem (with C-extensions), the pure-Ruby JSON gem, and OkJson.'';
      };
      name = ''multi_json-1.5.1'';
      requiredGems = [  ];
      sha256 = ''0c2jxjg6lx811515s35vnyjl9m9rsb2adw6yj2fxgqkc7yx1fjsz'';
    };
    net_sftp_2_0_5 = {
      basename = ''net_sftp'';
      meta = {
        description = ''A pure Ruby implementation of the SFTP client protocol'';
        homepage = ''http://net-ssh.rubyforge.org/sftp'';
        longDescription = ''A pure Ruby implementation of the SFTP client protocol'';
      };
      name = ''net-sftp-2.0.5'';
      requiredGems = [ g.net_ssh_2_6_5 ];
      sha256 = ''0lqk735wspm8rbiyxpbil8ikrqcyg00ss1df7fny0761c3as6m0v'';
    };
    net_ssh_2_6_0 = {
      basename = ''net_ssh'';
      meta = {
        description = ''Net::SSH: a pure-Ruby implementation of the SSH2 client protocol.'';
        homepage = ''http://github.com/net-ssh/net-ssh'';
        longDescription = ''Net::SSH: a pure-Ruby implementation of the SSH2 client protocol. It allows you to write programs that invoke and interact with processes on remote servers, via SSH2.'';
      };
      name = ''net-ssh-2.6.0'';
      requiredGems = [ g.jruby_pageant_1_1_1 ];
      sha256 = ''18fsgps4a9dfrjszkl3py8j7vw0xwi70bcp59ccj2rlr6i1jv5gw'';
    };
    net_ssh_2_6_5 = {
      basename = ''net_ssh'';
      meta = {
        description = ''Net::SSH: a pure-Ruby implementation of the SSH2 client protocol.'';
        homepage = ''https://github.com/net-ssh/net-ssh'';
        longDescription = ''Net::SSH: a pure-Ruby implementation of the SSH2 client protocol. It allows you to write programs that invoke and interact with processes on remote servers, via SSH2.'';
      };
      name = ''net-ssh-2.6.5'';
      requiredGems = [  ];
      sha256 = ''1f21r78b0rm9gyzdc96fzih27nrags3pk00zlhfviqlfbmb1c48x'';
    };
    nix_0_1_1 = {
      basename = ''nix'';
      meta = {
        description = ''Nix package manager interface'';
        homepage = ''http://gitorious.org/ruby-nix'';
        longDescription = ''Adds 'gem nix' command that dumps given set of gems to format suitable for Nix package manager'';
      };
      name = ''nix-0.1.1'';
      requiredGems = [  ];
      sha256 = ''0kwrbkkg0gxibhsz9dpd5zabcf2wqsicg28yiazyb3dc9dslk26k'';
    };
    nokogiri_1_5_6 = {
      basename = ''nokogiri'';
      meta = {
        description = ''Nokogiri (鋸) is an HTML, XML, SAX, and Reader parser'';
        homepage = ''http://nokogiri.org'';
        longDescription = ''Nokogiri (鋸) is an HTML, XML, SAX, and Reader parser.  Among Nokogiri's
many features is the ability to search documents via XPath or CSS3 selectors.

XML is like violence - if it doesn’t solve your problems, you are not using
enough of it.'';
      };
      name = ''nokogiri-1.5.6'';
      requiredGems = [  ];
      sha256 = ''1235h8k242f6yi5qgb8rfcx6gp7g99djwqgrz0vb6w12pbp9kar8'';
    };
    polyglot_0_3_3 = {
      basename = ''polyglot'';
      meta = {
        description = ''Augment 'require' to load non-Ruby file types'';
        homepage = ''http://github.com/cjheath/polyglot'';
        longDescription = ''
The Polyglot library allows a Ruby module to register a loader
for the file type associated with a filename extension, and it
augments 'require' to find and load matching files.'';
      };
      name = ''polyglot-0.3.3'';
      requiredGems = [  ];
      sha256 = ''082zmail2h3cxd9z1wnibhk6aj4sb1f3zzwra6kg9bp51kx2c00v'';
    };
    rack_1_4_5 = {
      basename = ''rack'';
      meta = {
        description = ''a modular Ruby webserver interface'';
        homepage = ''http://rack.github.com/'';
        longDescription = ''Rack provides a minimal, modular and adaptable interface for developing
web applications in Ruby.  By wrapping HTTP requests and responses in
the simplest way possible, it unifies and distills the API for web
servers, web frameworks, and software in between (the so-called
middleware) into a single method call.

Also see http://rack.github.com/.
'';
      };
      name = ''rack-1.4.5'';
      requiredGems = [  ];
      sha256 = ''027k0nbb8d7cl24x2cywdc6lgrr4lwvdwwjk8wkgz8h9ism3zgzp'';
    };
    rack_1_5_2 = {
      basename = ''rack'';
      meta = {
        description = ''a modular Ruby webserver interface'';
        homepage = ''http://rack.github.com/'';
        longDescription = ''Rack provides a minimal, modular and adaptable interface for developing
web applications in Ruby.  By wrapping HTTP requests and responses in
the simplest way possible, it unifies and distills the API for web
servers, web frameworks, and software in between (the so-called
middleware) into a single method call.

Also see http://rack.github.com/.
'';
      };
      name = ''rack-1.5.2'';
      requiredGems = [  ];
      sha256 = ''19szfw76cscrzjldvw30jp3461zl00w4xvw1x9lsmyp86h1g0jp6'';
    };
    rack_cache_1_2 = {
      basename = ''rack_cache'';
      meta = {
        description = ''HTTP Caching for Rack'';
        homepage = ''http://tomayko.com/src/rack-cache/'';
        longDescription = ''Rack::Cache is suitable as a quick drop-in component to enable HTTP caching for Rack-based applications that produce freshness (Expires, Cache-Control) and/or validation (Last-Modified, ETag) information.'';
      };
      name = ''rack-cache-1.2'';
      requiredGems = [ g.rack_1_5_2 ];
      sha256 = ''073ffpsqmy4nqxz178qisb3a4v3305c49ypj0jw6s9mkz02yvgq2'';
    };
    rack_protection_1_3_2 = {
      basename = ''rack_protection'';
      meta = {
        description = ''You should use protection!'';
        homepage = ''http://github.com/rkh/rack-protection'';
        longDescription = ''You should use protection!'';
      };
      name = ''rack-protection-1.3.2'';
      requiredGems = [ g.rack_1_5_2 ];
      sha256 = ''0f69d491xciq1hb3mm26nxnsb3pvlf3gdkggj4ryiphimsy05n0k'';
    };
    rack_ssl_1_3_3 = {
      basename = ''rack_ssl'';
      meta = {
        description = ''Force SSL/TLS in your app.'';
        homepage = ''https://github.com/josh/rack-ssl'';
        longDescription = ''    Rack middleware to force SSL/TLS.
'';
      };
      name = ''rack-ssl-1.3.3'';
      requiredGems = [ g.rack_1_5_2 ];
      sha256 = ''0rkmj71s87prswa8sqal42kdllgpfd35ir5m9ahhnlmrrpqd0hr5'';
    };
    rack_test_0_6_2 = {
      basename = ''rack_test'';
      meta = {
        description = ''Simple testing API built on Rack'';
        homepage = ''http://github.com/brynary/rack-test'';
        longDescription = ''Rack::Test is a small, simple testing API for Rack apps. It can be used on its
own or as a reusable starting point for Web frameworks and testing libraries
to build on. Most of its initial functionality is an extraction of Merb 1.0's
request helpers feature.'';
      };
      name = ''rack-test-0.6.2'';
      requiredGems = [ g.rack_1_5_2 ];
      sha256 = ''01mk715ab5qnqf6va8k3hjsvsmplrfqpz6g58qw4m3l8mim0p4ky'';
    };
    rails_3_2_12 = {
      basename = ''rails'';
      meta = {
        description = ''Full-stack web application framework.'';
        homepage = ''http://www.rubyonrails.org'';
        longDescription = ''Ruby on Rails is a full-stack web framework optimized for programmer happiness and sustainable productivity. It encourages beautiful code by favoring convention over configuration.'';
      };
      name = ''rails-3.2.12'';
      requiredGems = [ g.activesupport_3_2_12 g.actionpack_3_2_12 g.activerecord_3_2_12 g.activeresource_3_2_12 g.actionmailer_3_2_12 g.railties_3_2_12 g.bundler_1_2_3 ];
      sha256 = ''1jjnm74nzl5v3461c0mrbpa471yd6s8hnkmnxb64c2rm95c61wxz'';
    };
    railties_3_2_12 = {
      basename = ''railties'';
      meta = {
        description = ''Tools for creating, working with, and running Rails applications.'';
        homepage = ''http://www.rubyonrails.org'';
        longDescription = ''Rails internals: application bootup, plugins, generators, and rake tasks.'';
      };
      name = ''railties-3.2.12'';
      requiredGems = [ g.rake_10_0_3 g.rack_ssl_1_3_3 g.thor_0_17_0 g.rdoc_3_12_1 g.activesupport_3_2_12 g.actionpack_3_2_12 ];
      sha256 = ''0d8wy1n591x12bigj3jh8c9djzi8k68vh14342mc22raxwp5rwdw'';
    };
    rake_0_9_2_2 = {
      basename = ''rake'';
      meta = {
        description = ''Ruby based make-like utility.'';
        homepage = ''http://rake.rubyforge.org'';
        longDescription = ''Rake is a Make-like program implemented in Ruby. Tasks and dependencies arespecified in standard Ruby syntax.'';
      };
      name = ''rake-0.9.2.2'';
      requiredGems = [  ];
      sha256 = ''19n4qp5gzbcqy9ajh56kgwqv9p9w2hnczhyvaqz0nlvk9diyng6q'';
    };
    rake_0_9_6 = {
      basename = ''rake'';
      meta = {
        description = ''Ruby based make-like utility.'';
        homepage = ''http://rake.rubyforge.org'';
        longDescription = ''Rake is a Make-like program implemented in Ruby. Tasks and dependencies arespecified in standard Ruby syntax.'';
      };
      name = ''rake-0.9.6'';
      requiredGems = [  ];
      sha256 = ''09kyh351gddn6gjz255hbaza1cw235xvfz9dc15rhyq9phvqdphc'';
    };
    rake_10_0_3 = {
      basename = ''rake'';
      meta = {
        description = ''Ruby based make-like utility.'';
        homepage = ''http://rake.rubyforge.org'';
        longDescription = ''Rake is a Make-like program implemented in Ruby. Tasks and dependencies arespecified in standard Ruby syntax.'';
      };
      name = ''rake-10.0.3'';
      requiredGems = [  ];
      sha256 = ''09vvf3ylhdkr10vz7ajl3c7ql6dsnzkh3qclpafar433bzadfbpf'';
    };
    rb_fsevent_0_9_3 = {
      basename = ''rb_fsevent'';
      meta = {
        description = ''Very simple & usable FSEvents API'';
        homepage = ''http://rubygems.org/gems/rb-fsevent'';
        longDescription = ''FSEvents API with Signals catching (without RubyCocoa)'';
      };
      name = ''rb-fsevent-0.9.3'';
      requiredGems = [  ];
      sha256 = ''0bdnxwdxj4r1kdxfi5nszbsb126njrr81p912g64xxs2bgxd1bp1'';
    };
    rdoc_3_12_1 = {
      basename = ''rdoc'';
      meta = {
        description = ''RDoc produces HTML and command-line documentation for Ruby projects'';
        homepage = ''http://docs.seattlerb.org/rdoc'';
        longDescription = ''RDoc produces HTML and command-line documentation for Ruby projects.  RDoc
includes the +rdoc+ and +ri+ tools for generating and displaying online
documentation.

See RDoc for a description of RDoc's markup and basic use.'';
      };
      name = ''rdoc-3.12.1'';
      requiredGems = [ g.json_1_7_7 ];
      sha256 = ''1hflgw2v0lyx38kdwj71jyibc14j6ghb6zmp2l3g47v7d2m47z4g'';
    };
    rjb_1_4_2 = {
      basename = ''rjb'';
      meta = {
        description = ''Ruby Java bridge'';
        homepage = ''http://rjb.rubyforge.org/'';
        longDescription = ''RJB is a bridge program that connect between Ruby and Java with Java Native Interface.
'';
      };
      name = ''rjb-1.4.2'';
      requiredGems = [  ];
      sha256 = ''1cgbwpc45djs0mw05ydxf5apmb9ibj61n240ylqwzrajf13banzh'';
    };
    rjb_1_4_6 = {
      basename = ''rjb'';
      meta = {
        description = ''Ruby Java bridge'';
        homepage = ''http://rjb.rubyforge.org/'';
        longDescription = ''RJB is a bridge program that connect between Ruby and Java with Java Native Interface.
'';
      };
      name = ''rjb-1.4.6'';
      requiredGems = [  ];
      sha256 = ''0q2czc3ghk32hnxf76xsf0jqcfrnx60aqarvdjhgsfdc9a5pmk20'';
    };
    rspec_2_11_0 = {
      basename = ''rspec'';
      meta = {
        description = ''rspec-2.11.0'';
        homepage = ''http://github.com/rspec'';
        longDescription = ''BDD for Ruby'';
      };
      name = ''rspec-2.11.0'';
      requiredGems = [ g.rspec_core_2_11_1 g.rspec_expectations_2_11_3 g.rspec_mocks_2_11_3 ];
      sha256 = ''0k55akvs2xhs57kz81g37s4v56vybq46sjs7f8wpybrwxryg1vxs'';
    };
    rspec_core_2_11_1 = {
      basename = ''rspec_core'';
      meta = {
        description = ''rspec-core-2.11.1'';
        homepage = ''http://github.com/rspec/rspec-core'';
        longDescription = ''BDD for Ruby. RSpec runner and example groups.'';
      };
      name = ''rspec-core-2.11.1'';
      requiredGems = [  ];
      sha256 = ''035ki561pryy05y8cvv3mkihjwp9r2ychnazb7s33gl7q0l0jni4'';
    };
    rspec_expectations_2_11_3 = {
      basename = ''rspec_expectations'';
      meta = {
        description = ''rspec-expectations-2.11.3'';
        homepage = ''http://github.com/rspec/rspec-expectations'';
        longDescription = ''rspec expectations (should[_not] and matchers)'';
      };
      name = ''rspec-expectations-2.11.3'';
      requiredGems = [ g.diff_lcs_1_1_3 ];
      sha256 = ''0vqqw4hkaff6v6i6kinki4jxp9xv8b2nbmz91qa1yhjd3wr14ai5'';
    };
    rspec_mocks_2_11_3 = {
      basename = ''rspec_mocks'';
      meta = {
        description = ''rspec-mocks-2.11.3'';
        homepage = ''http://github.com/rspec/rspec-mocks'';
        longDescription = ''RSpec's 'test double' framework, with support for stubbing and mocking'';
      };
      name = ''rspec-mocks-2.11.3'';
      requiredGems = [  ];
      sha256 = ''1rna3ii52rlhhca49zigk692hdcmz7qib42i4hhny478k04wx0qg'';
    };
    rubyforge_2_0_4 = {
      basename = ''rubyforge'';
      meta = {
        description = ''A script which automates a limited set of rubyforge operations'';
        homepage = ''http://codeforpeople.rubyforge.org/rubyforge/'';
        longDescription = ''A script which automates a limited set of rubyforge operations.

* Run 'rubyforge help' for complete usage.
* Setup: For first time users AND upgrades to 0.4.0:
  * rubyforge setup (deletes your username and password, so run sparingly!)
  * edit ~/.rubyforge/user-config.yml
  * rubyforge config
* For all rubyforge upgrades, run 'rubyforge config' to ensure you have latest.'';
      };
      name = ''rubyforge-2.0.4'';
      requiredGems = [ g.json_pure_1_7_7 ];
      sha256 = ''1wdaa4nzy39yzy848fa1rybi72qlyf9vhi1ra9wpx9rpi810fwh1'';
    };
    rubyzip_0_9_9 = {
      basename = ''rubyzip'';
      meta = {
        description = ''rubyzip is a ruby module for reading and writing zip files'';
        homepage = ''http://github.com/aussiegeek/rubyzip'';
      };
      name = ''rubyzip-0.9.9'';
      requiredGems = [  ];
      sha256 = ''1khf6d903agnwd8965f5f8b353rzmfvygxp53z1199rqzw8h46q2'';
    };
    sass_3_2_5 = {
      basename = ''sass'';
      meta = {
        description = ''A powerful but elegant CSS compiler that makes CSS fun again.'';
        homepage = ''http://sass-lang.com/'';
        longDescription = ''      Sass makes CSS fun again. Sass is an extension of CSS3, adding
      nested rules, variables, mixins, selector inheritance, and more.
      It's translated to well-formatted, standard CSS using the
      command line tool or a web-framework plugin.
'';
      };
      name = ''sass-3.2.5'';
      requiredGems = [  ];
      sha256 = ''1ys7pfadw61dm09yyk28zrssi8zsyj99fyq6bdf2xmi8yp1avs6k'';
    };
    selenium_webdriver_2_29_0 = {
      basename = ''selenium_webdriver'';
      meta = {
        description = ''The next generation developer focused tool for automated testing of webapps'';
        homepage = ''http://selenium.googlecode.com'';
        longDescription = ''WebDriver is a tool for writing automated tests of websites. It aims to mimic the behaviour of a real user, and as such interacts with the HTML of the application.'';
      };
      name = ''selenium-webdriver-2.29.0'';
      requiredGems = [ g.multi_json_1_5_1 g.rubyzip_0_9_9 g.childprocess_0_3_8 g.websocket_1_0_7 ];
      sha256 = ''0c5fybp19mawq07h59b16h736pz8sz017m1pwalb6mcyliqmlwcj'';
    };
    sinatra_1_3_2 = {
      basename = ''sinatra'';
      meta = {
        description = ''Classy web-development dressed in a DSL'';
        homepage = ''http://www.sinatrarb.com/'';
        longDescription = ''Sinatra is a DSL for quickly creating web applications in Ruby with minimal effort.'';
      };
      name = ''sinatra-1.3.2'';
      requiredGems = [ g.rack_1_5_2 g.rack_protection_1_3_2 g.tilt_1_3_3 ];
      sha256 = ''05blf915zpiwyz7agcn9rwdmddwxz0z4l3gd4qlqmrgd2vkw4sxc'';
    };
    sprockets_2_2_2 = {
      basename = ''sprockets'';
      meta = {
        description = ''Rack-based asset packaging system'';
        homepage = ''http://getsprockets.org/'';
        longDescription = ''Sprockets is a Rack-based asset packaging system that concatenates and serves JavaScript, CoffeeScript, CSS, LESS, Sass, and SCSS.'';
      };
      name = ''sprockets-2.2.2'';
      requiredGems = [ g.hike_1_2_1 g.multi_json_1_5_1 g.rack_1_5_2 g.tilt_1_3_3 ];
      sha256 = ''15ngw3bjbyr31ygzmmdxxa30ylah6pdn8akgdy9w30vfx2vr7s7s'';
    };
    systemu_2_5_2 = {
      basename = ''systemu'';
      meta = {
        description = ''systemu'';
        homepage = ''https://github.com/ahoward/systemu'';
        longDescription = ''description: systemu kicks the ass'';
      };
      name = ''systemu-2.5.2'';
      requiredGems = [  ];
      sha256 = ''0h834ajdg9w4xrijp31fn98pjfj08gi08xjvp5xh3i6hz9a25fhr'';
    };
    thin_1_5_0 = {
      basename = ''thin'';
      meta = {
        description = ''A thin and fast web server'';
        homepage = ''http://code.macournoyer.com/thin/'';
        longDescription = ''A thin and fast web server'';
      };
      name = ''thin-1.5.0'';
      requiredGems = [ g.rack_1_5_2 g.eventmachine_1_0_0 g.daemons_1_1_9 ];
      sha256 = ''14sd2qbbk6y108z6v723mh3f1mk8s4fwxmmn9f8dk4xkhk4rwvq1'';
    };
    thor_0_17_0 = {
      basename = ''thor'';
      meta = {
        description = ''A scripting framework that replaces rake, sake and rubigen'';
        homepage = ''http://whatisthor.com/'';
        longDescription = ''A scripting framework that replaces rake, sake and rubigen'';
      };
      name = ''thor-0.17.0'';
      requiredGems = [  ];
      sha256 = ''0gf46qafcfgmi20a2mnb3wkd9y6spgy2hq22h70377daj4zjxla2'';
    };
    tilt_1_3_3 = {
      basename = ''tilt'';
      meta = {
        description = ''Generic interface to multiple Ruby template engines'';
        homepage = ''http://github.com/rtomayko/tilt/'';
        longDescription = ''Generic interface to multiple Ruby template engines'';
      };
      name = ''tilt-1.3.3'';
      requiredGems = [  ];
      sha256 = ''18qdl8nllbgwipa2ab9df3wlfgvsc8ml78hbypwc17b9qwv9bbs8'';
    };
    treetop_1_4_12 = {
      basename = ''treetop'';
      meta = {
        description = ''A Ruby-based text parsing and interpretation DSL'';
        homepage = ''https://github.com/cjheath/treetop'';
      };
      name = ''treetop-1.4.12'';
      requiredGems = [ g.polyglot_0_3_3 g.polyglot_0_3_3 ];
      sha256 = ''1jlfjq67n933sm0px0s2j965v1kl1rj8fbx6xk8y4yppkv6ygxc8'';
    };
    tzinfo_0_3_35 = {
      basename = ''tzinfo'';
      meta = {
        description = ''Daylight-savings aware timezone library'';
        homepage = ''http://tzinfo.rubyforge.org/'';
        longDescription = ''TZInfo is a Ruby library that uses the standard tz (Olson) database to provide daylight savings aware transformations between times in different time zones.'';
      };
      name = ''tzinfo-0.3.35'';
      requiredGems = [  ];
      sha256 = ''1c52ndjqcxpgxhlclbxf98clcpni216xk5zgrkcd4px84riyjbmp'';
    };
    uuid_2_3_6 = {
      basename = ''uuid'';
      meta = {
        description = ''UUID generator'';
        homepage = ''http://github.com/assaf/uuid'';
        longDescription = ''UUID generator for producing universally unique identifiers based on RFC 4122
(http://www.ietf.org/rfc/rfc4122.txt).
'';
      };
      name = ''uuid-2.3.6'';
      requiredGems = [ g.macaddr_1_6_1 ];
      sha256 = ''194xznnxncfgr0nx84l11gnafvkfzr1nj1swnwas75q0ld0ri2l8'';
    };
    uuidtools_2_1_3 = {
      basename = ''uuidtools'';
      meta = {
        description = ''UUID generator'';
        homepage = ''http://uuidtools.rubyforge.org/'';
        longDescription = ''A simple universally unique ID generation library.
'';
      };
      name = ''uuidtools-2.1.3'';
      requiredGems = [  ];
      sha256 = ''0v8scs7760334kkwca7n8kah6nk4hyw7izgk014zg1l1yv7kzpi9'';
    };
    websocket_1_0_7 = {
      basename = ''websocket'';
      meta = {
        description = ''Universal Ruby library to handle WebSocket protocol'';
        homepage = ''http://github.com/imanel/websocket-ruby'';
        longDescription = ''Universal Ruby library to handle WebSocket protocol'';
      };
      name = ''websocket-1.0.7'';
      requiredGems = [  ];
      sha256 = ''1jrfz4295qbnjaxv37fw9jzxyxz61izp7c0683mnscacpx262zw0'';
    };
    xml_simple_1_1_1 = {
      basename = ''xml_simple'';
      meta = {
        description = ''A simple API for XML processing.'';
        homepage = ''http://xml-simple.rubyforge.org'';
      };
      name = ''xml-simple-1.1.1'';
      requiredGems = [  ];
      sha256 = ''0zlwz8kvpm45m227aazg369fapbqyhvd5v9aga8cvxyhqnq0b87i'';
    };
  };
}