summary refs log tree commit diff
path: root/pkgs/development/interpreters/ruby/generated.nix
blob: 6ec0f4f73e5d186261c9e10128aba65f6839fd5f (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
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
# 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_10_1;
    actionmailer = g.actionmailer_4_1_5;
    actionpack = g.actionpack_4_1_5;
    actionview = g.actionview_4_1_5;
    activemodel = g.activemodel_4_1_5;
    activerecord = g.activerecord_4_1_5;
    activesupport = g.activesupport_4_1_5;
    addressable = g.addressable_2_3_6;
    arel = g.arel_5_0_1_20140414130214;
    atoulme_Antwrap = g.atoulme_Antwrap_0_7_4;
    autotest_rails = g.autotest_rails_4_2_1;
    aws_sdk = g.aws_sdk_1_51_0;
    backports = g.backports_3_6_0;
    bitbucket_backup = g.bitbucket_backup_0_3_1;
    builder = g.builder_3_2_2;
    buildr = g.buildr_1_4_19;
    bundler = g.bundler_1_7_1;
    childprocess = g.childprocess_0_5_3;
    chronic = g.chronic_0_10_2;
    coderay = g.coderay_1_1_0;
    cucumber = g.cucumber_1_3_16;
    daemons = g.daemons_1_1_9;
    diff_lcs = g.diff_lcs_1_2_5;
    dimensions = g.dimensions_1_2_0;
    domain_name = g.domain_name_0_5_20;
    dotenv = g.dotenv_0_11_1;
    dotenv_deployment = g.dotenv_deployment_0_0_2;
    em_resolv_replace = g.em_resolv_replace_1_1_3;
    erubis = g.erubis_2_7_0;
    ethon = g.ethon_0_7_1;
    eventmachine = g.eventmachine_1_0_3;
    eventmachine_tail = g.eventmachine_tail_0_6_4;
    fakes3 = g.fakes3_0_1_5_2;
    faraday = g.faraday_0_9_0;
    faraday_middleware = g.faraday_middleware_0_9_1;
    ffi = g.ffi_1_9_3;
    file_tail = g.file_tail_1_0_12;
    foreman = g.foreman_0_74_0;
    gettext = g.gettext_3_1_3;
    gh = g.gh_0_13_2;
    gherkin = g.gherkin_2_12_2;
    highline = g.highline_1_6_21;
    hike = g.hike_1_2_3;
    hoe = g.hoe_3_7_1;
    http_cookie = g.http_cookie_1_0_2;
    i18n = g.i18n_0_6_11;
    iconv = g.iconv_1_0_4;
    jsduck = g.jsduck_5_3_4;
    json = g.json_1_8_1;
    json_pure = g.json_pure_1_8_0;
    launchy = g.launchy_2_4_2;
    locale = g.locale_2_1_0;
    lockfile = g.lockfile_2_1_3;
    macaddr = g.macaddr_1_7_1;
    mail = g.mail_2_6_1;
    mechanize = g.mechanize_2_7_3;
    method_source = g.method_source_0_8_2;
    mime_types = g.mime_types_2_3;
    mini_portile = g.mini_portile_0_6_0;
    minitar = g.minitar_0_5_4;
    minitest = g.minitest_5_4_0;
    multi_json = g.multi_json_1_10_1;
    multi_test = g.multi_test_0_1_1;
    multipart_post = g.multipart_post_2_0_0;
    net_http_digest_auth = g.net_http_digest_auth_1_4;
    net_http_persistent = g.net_http_persistent_2_9_4;
    net_http_pipeline = g.net_http_pipeline_1_0_1;
    net_sftp = g.net_sftp_2_1_2;
    net_ssh = g.net_ssh_2_9_1;
    nix = g.nix_0_1_1;
    nokogiri = g.nokogiri_1_6_3_1;
    ntlm_http = g.ntlm_http_0_1_1;
    orderedhash = g.orderedhash_0_0_6;
    papertrail = g.papertrail_0_9_10;
    papertrail_cli = g.papertrail_cli_0_9_3;
    parallel = g.parallel_0_7_1;
    polyglot = g.polyglot_0_3_5;
    pry = g.pry_0_9_12_6;
    pusher_client = g.pusher_client_0_6_0;
    rack = g.rack_1_5_2;
    rack_protection = g.rack_protection_1_5_3;
    rack_test = g.rack_test_0_6_2;
    rails = g.rails_4_1_5;
    railties = g.railties_4_1_5;
    rake = g.rake_10_3_2;
    rb_fsevent = g.rb_fsevent_0_9_4;
    rdiscount = g.rdiscount_2_1_7_1;
    remote_syslog = g.remote_syslog_1_6_14;
    riemann_dash = g.riemann_dash_0_2_9;
    right_aws = g.right_aws_3_1_0;
    right_http_connection = g.right_http_connection_1_5_0;
    rjb = g.rjb_1_4_9;
    rkelly_remix = g.rkelly_remix_0_0_6;
    rmail = g.rmail_1_0_0;
    rspec = g.rspec_2_14_1;
    rspec_core = g.rspec_core_2_14_8;
    rspec_expectations = g.rspec_expectations_2_14_5;
    rspec_mocks = g.rspec_mocks_2_14_6;
    rubyzip = g.rubyzip_1_1_6;
    sass = g.sass_3_4_1;
    selenium_webdriver = g.selenium_webdriver_2_42_0;
    servolux = g.servolux_0_10_0;
    sinatra = g.sinatra_1_4_5;
    slop = g.slop_3_6_0;
    sprockets = g.sprockets_2_12_1;
    sprockets_rails = g.sprockets_rails_2_1_3;
    syslog_protocol = g.syslog_protocol_0_9_2;
    systemu = g.systemu_2_6_4;
    taskjuggler = g.taskjuggler_3_5_0;
    term_ansicolor = g.term_ansicolor_1_3_0;
    terminal_notifier = g.terminal_notifier_1_6_1;
    text = g.text_1_3_0;
    thin = g.thin_1_6_2;
    thor = g.thor_0_19_1;
    thread_safe = g.thread_safe_0_3_4;
    tilt = g.tilt_1_4_1;
    tins = g.tins_1_3_2;
    travis = g.travis_1_7_1;
    treetop = g.treetop_1_4_15;
    trollop = g.trollop_2_0;
    typhoeus = g.typhoeus_0_6_9;
    tzinfo = g.tzinfo_1_2_2;
    unf = g.unf_0_1_4;
    unf_ext = g.unf_ext_0_0_6;
    uuid = g.uuid_2_3_7;
    webrick = g.webrick_1_3_1;
    webrobots = g.webrobots_0_1_1;
    websocket = g.websocket_1_2_0;
    xapian_full = g.xapian_full_1_2_3;
    xapian_ruby = g.xapian_ruby_1_2_17;
    xml_simple = g.xml_simple_1_1_2;
  };
  gem_nix_args = [ ''autotest-rails'' ''aws-sdk'' ''bitbucket-backup'' ''buildr'' ''cucumber'' ''fakes3'' ''foreman'' ''gettext'' ''iconv'' ''jsduck'' ''lockfile'' ''mechanize'' ''nix'' ''papertrail-cli'' ''rails'' ''rake'' ''rb-fsevent'' ''remote_syslog'' ''riemann-dash'' ''right_aws'' ''rmail'' ''sass'' ''selenium-webdriver'' ''sinatra-1.3.2'' ''taskjuggler'' ''terminal-notifier'' ''thin'' ''travis'' ''trollop'' ''uuid'' ''xapian-full'' ''xapian-ruby'' ];
  gems = {
    ZenTest_4_10_1 = {
      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.10.1'';
      requiredGems = [  ];
      sha256 = ''1jyk0lag27s71idna2h72ljskimj0snsiw7diyjx5rqxnz6fj7z1'';
    };
    actionmailer_4_1_5 = {
      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-4.1.5'';
      requiredGems = [ g.actionpack_4_1_5 g.actionview_4_1_5 g.mail_2_5_4 ];
      sha256 = ''19frz9njy6jbxh7yasx62l4ifns3dxfkfqvnxlqb4pwsz7lqcp9c'';
    };
    actionpack_4_1_5 = {
      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-4.1.5'';
      requiredGems = [ g.activesupport_4_1_5 g.rack_1_5_2 g.rack_test_0_6_2 g.actionview_4_1_5 ];
      sha256 = ''05wh3c5rw3c0rsza3bnpmr6s63n481d4gkbhsp3ngwn9lpp3jdb6'';
    };
    actionview_4_1_5 = {
      basename = ''actionview'';
      meta = {
        description = ''Rendering framework putting the V in MVC (part of Rails).'';
        homepage = ''http://www.rubyonrails.org'';
        longDescription = ''Simple, battle-tested conventions and helpers for building web pages.'';
      };
      name = ''actionview-4.1.5'';
      requiredGems = [ g.activesupport_4_1_5 g.builder_3_2_2 g.erubis_2_7_0 ];
      sha256 = ''02zb4xi2farzh892j9awxshyly7ijlvbj39g6cwq5mhs5cx59qk8'';
    };
    activemodel_4_1_5 = {
      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. Rich support for attributes, callbacks, validations, serialization, internationalization, and testing.'';
      };
      name = ''activemodel-4.1.5'';
      requiredGems = [ g.activesupport_4_1_5 g.builder_3_2_2 ];
      sha256 = ''1anbjwdfgdjfxiv5vzysrdd98mapvd2h8xjkayq3vq54n13ymjvl'';
    };
    activerecord_4_1_5 = {
      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-4.1.5'';
      requiredGems = [ g.activesupport_4_1_5 g.activemodel_4_1_5 g.arel_5_0_1_20140414130214 ];
      sha256 = ''1z8awkkl4bn4ghdp432n2qpagbb8569ffq63kmgkbwf8127kmzrc'';
    };
    activesupport_4_1_5 = {
      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-4.1.5'';
      requiredGems = [ g.i18n_0_6_11 g.json_1_8_1 g.tzinfo_1_2_2 g.minitest_5_4_0 g.thread_safe_0_3_4 ];
      sha256 = ''0vmf58q96469dci509hhbqxwr7gaxq4yjsb37xd56ggpqn3qm30k'';
    };
    addressable_2_3_6 = {
      basename = ''addressable'';
      meta = {
        description = ''URI Implementation'';
        homepage = ''http://addressable.rubyforge.org/'';
        longDescription = ''Addressable is a replacement for the URI implementation that is part of
Ruby's standard library. It more closely conforms to the relevant RFCs and
adds support for IRIs and URI templates.
'';
      };
      name = ''addressable-2.3.6'';
      requiredGems = [  ];
      sha256 = ''137fj0whmn1kvaq8wjalp8x4qbblwzvg3g4bfx8d8lfi6f0w48p8'';
    };
    arel_5_0_1_20140414130214 = {
      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 RDBMSes

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-5.0.1.20140414130214'';
      requiredGems = [  ];
      sha256 = ''0dhnc20h1v8ml3nmkxq92rr7qxxpk6ixhwvwhgl2dbw9mmxz0hf9'';
    };
    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_9 ];
      sha256 = ''0sh9capkya88qm9mvixwly32fwb2c4nzif9j9vv0f73rqw8kz4j4'';
    };
    autotest_rails_4_2_1 = {
      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.2.1'';
      requiredGems = [ g.ZenTest_4_10_1 ];
      sha256 = ''1v1dm9zlhdlrxvk90zs8d439ldar674ix41s7pncddgyswcfgg5l'';
    };
    aws_sdk_1_51_0 = {
      basename = ''aws_sdk'';
      meta = {
        description = ''AWS SDK for Ruby'';
        homepage = ''http://aws.amazon.com/sdkforruby'';
        longDescription = ''AWS SDK for Ruby'';
      };
      name = ''aws-sdk-1.51.0'';
      requiredGems = [ g.nokogiri_1_6_3_1 g.json_1_8_1 ];
      sha256 = ''092a7km6ar7zvyyzgiqsb0dm354sqa6mzx7sa0c8ndwm918lbqai'';
    };
    backports_3_6_0 = {
      basename = ''backports'';
      meta = {
        description = ''Backports of Ruby features for older Ruby.'';
        homepage = ''http://github.com/marcandre/backports'';
        longDescription = ''Essential backports that enable many of the nice features of Ruby 1.8.7 up to 2.0.0 for earlier versions.'';
      };
      name = ''backports-3.6.0'';
      requiredGems = [  ];
      sha256 = ''1pinn0m4fmq124adc6xjl2hk9799xq5jw4bva82cdzd4h2hwrgq5'';
    };
    bitbucket_backup_0_3_1 = {
      basename = ''bitbucket_backup'';
      meta = {
        description = ''A tool to backup Bitbucket repos.'';
        homepage = ''https://bitbucket.org/seth/bitbucket-backup'';
        longDescription = ''A tool to backup Bitbucket repos.'';
      };
      name = ''bitbucket-backup-0.3.1'';
      requiredGems = [ g.highline_1_6_21 g.json_1_8_1 ];
      sha256 = ''17d2pfk0z3cxcx9m90avcp5wxhdbrq23zd665263m3hh9b5qi0fj'';
    };
    builder_3_2_2 = {
      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.2.2'';
      requiredGems = [  ];
      sha256 = ''14fii7ab8qszrvsvhz6z2z3i4dw0h41a62fjr2h1j8m41vbrmyv2'';
    };
    buildr_1_4_19 = {
      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.19'';
      requiredGems = [ g.rake_0_9_2_2 g.builder_3_2_2 g.net_ssh_2_7_0 g.net_sftp_2_1_2 g.rubyzip_0_9_9 g.json_pure_1_8_0 g.hoe_3_7_1 g.rjb_1_4_8 g.atoulme_Antwrap_0_7_4 g.diff_lcs_1_2_4 g.rspec_expectations_2_14_3 g.rspec_mocks_2_14_3 g.rspec_core_2_14_5 g.rspec_2_14_1 g.xml_simple_1_1_2 g.minitar_0_5_4 g.bundler_1_7_1 g.orderedhash_0_0_6 ];
      sha256 = ''07k6z149si7v1h5m1bvdhjcv0nnjwkd2c6a8n1779l8g47ckccj0'';
    };
    bundler_1_7_1 = {
      basename = ''bundler'';
      meta = {
        description = ''The best way to manage your application's dependencies'';
        homepage = ''http://bundler.io'';
        longDescription = ''Bundler manages an application's dependencies through its entire life, across many machines, systematically and repeatably'';
      };
      name = ''bundler-1.7.1'';
      requiredGems = [  ];
      sha256 = ''144yqbmi89gl933rh8dv58bm7ia14s4a098qdi2z0q09ank9n5h2'';
    };
    childprocess_0_5_3 = {
      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.5.3'';
      requiredGems = [ g.ffi_1_9_3 ];
      sha256 = ''12djpdr487fddq55sav8gw1pjglcbb0ab0s6npga0ywgsqdyvsww'';
    };
    chronic_0_10_2 = {
      basename = ''chronic'';
      meta = {
        description = ''Natural language date/time parsing.'';
        homepage = ''http://github.com/mojombo/chronic'';
        longDescription = ''Chronic is a natural language date/time parser written in pure Ruby.'';
      };
      name = ''chronic-0.10.2'';
      requiredGems = [  ];
      sha256 = ''1hrdkn4g8x7dlzxwb1rfgr8kw3bp4ywg5l4y4i9c2g5cwv62yvvn'';
    };
    coderay_1_1_0 = {
      basename = ''coderay'';
      meta = {
        description = ''Fast syntax highlighting for selected languages.'';
        homepage = ''http://coderay.rubychan.de'';
        longDescription = ''Fast and easy syntax highlighting for selected languages, written in Ruby. Comes with RedCloth integration and LOC counter.'';
      };
      name = ''coderay-1.1.0'';
      requiredGems = [  ];
      sha256 = ''059wkzlap2jlkhg460pkwc1ay4v4clsmg1bp4vfzjzkgwdckr52s'';
    };
    cucumber_1_3_16 = {
      basename = ''cucumber'';
      meta = {
        description = ''cucumber-1.3.16'';
        homepage = ''http://cukes.info'';
        longDescription = ''Behaviour Driven Development with elegance and joy'';
      };
      name = ''cucumber-1.3.16'';
      requiredGems = [ g.builder_3_2_2 g.diff_lcs_1_2_5 g.gherkin_2_12_2 g.multi_json_1_10_1 g.multi_test_0_1_1 ];
      sha256 = ''11cjw2d03r41b5pn5in6q822s3v6bpd8isxc9dl7by01jrzi0662'';
    };
    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_2_4 = {
      basename = ''diff_lcs'';
      meta = {
        description = ''Diff::LCS computes the difference between two Enumerable sequences using the McIlroy-Hunt longest common subsequence (LCS) algorithm'';
        homepage = ''http://diff-lcs.rubyforge.org/'';
        longDescription = ''Diff::LCS computes the difference between two Enumerable sequences using the
McIlroy-Hunt longest common subsequence (LCS) algorithm. It includes utilities
to create a simple HTML diff output format and a standard diff-like tool.

This is release 1.2.4, fixing a bug introduced after diff-lcs 1.1.3 that did
not properly prune common sequences at the beginning of a comparison set.
Thanks to Paul Kunysch for fixing this issue.

Coincident with the release of diff-lcs 1.2.3, we reported an issue with
Rubinius in 1.9 mode
({rubinius/rubinius#2268}[https://github.com/rubinius/rubinius/issues/2268]).
We are happy to report that this issue has been resolved.'';
      };
      name = ''diff-lcs-1.2.4'';
      requiredGems = [  ];
      sha256 = ''09xbffjg639y8n43zp88ki0m489vv2c86znmfib2fg1di6svi1xd'';
    };
    diff_lcs_1_2_5 = {
      basename = ''diff_lcs'';
      meta = {
        description = ''Diff::LCS computes the difference between two Enumerable sequences using the McIlroy-Hunt longest common subsequence (LCS) algorithm'';
        homepage = ''http://diff-lcs.rubyforge.org/'';
        longDescription = ''Diff::LCS computes the difference between two Enumerable sequences using the
McIlroy-Hunt longest common subsequence (LCS) algorithm. It includes utilities
to create a simple HTML diff output format and a standard diff-like tool.

This is release 1.2.4, fixing a bug introduced after diff-lcs 1.1.3 that did
not properly prune common sequences at the beginning of a comparison set.
Thanks to Paul Kunysch for fixing this issue.

Coincident with the release of diff-lcs 1.2.3, we reported an issue with
Rubinius in 1.9 mode
({rubinius/rubinius#2268}[https://github.com/rubinius/rubinius/issues/2268]).
We are happy to report that this issue has been resolved.'';
      };
      name = ''diff-lcs-1.2.5'';
      requiredGems = [  ];
      sha256 = ''1vf9civd41bnqi6brr5d9jifdw73j9khc6fkhfl1f8r9cpkdvlx1'';
    };
    dimensions_1_2_0 = {
      basename = ''dimensions'';
      meta = {
        description = ''Pure Ruby dimension measurement for GIF, PNG, JPEG and TIFF images'';
        homepage = ''https://github.com/sstephenson/dimensions'';
        longDescription = ''A pure Ruby library for measuring the dimensions and rotation angles of GIF, PNG, JPEG and TIFF images.'';
      };
      name = ''dimensions-1.2.0'';
      requiredGems = [  ];
      sha256 = ''1pqb7yzjcpbgbyi196ifqbd1wy570cn12bkzcvpcha4xilhajja0'';
    };
    domain_name_0_5_20 = {
      basename = ''domain_name'';
      meta = {
        description = ''Domain Name manipulation library for Ruby'';
        homepage = ''https://github.com/knu/ruby-domain_name'';
        longDescription = ''This is a Domain Name manipulation library for Ruby.

It can also be used for cookie domain validation based on the Public
Suffix List.
'';
      };
      name = ''domain_name-0.5.20'';
      requiredGems = [ g.unf_0_1_4 ];
      sha256 = ''17ls88kp18dxjc93q8kmyx2anknva0vbmny60xbgpbwq3hg0qv6s'';
    };
    dotenv_0_11_1 = {
      basename = ''dotenv'';
      meta = {
        description = ''Loads environment variables from `.env`.'';
        homepage = ''https://github.com/bkeepers/dotenv'';
        longDescription = ''Loads environment variables from `.env`.'';
      };
      name = ''dotenv-0.11.1'';
      requiredGems = [ g.dotenv_deployment_0_0_2 ];
      sha256 = ''09z0y0d6bks7i0sqvd8szfqj9i1kkj01anzly7shi83b3gxhrq9m'';
    };
    dotenv_deployment_0_0_2 = {
      basename = ''dotenv_deployment'';
      meta = {
        description = ''Deployment concerns for dotenv'';
        homepage = ''https://github.com/bkeepers/dotenv-deployment'';
      };
      name = ''dotenv-deployment-0.0.2'';
      requiredGems = [  ];
      sha256 = ''1ad66jq9a09qq1js8wsyil97018s7y6x0vzji0dy34gh65sbjz8c'';
    };
    em_resolv_replace_1_1_3 = {
      basename = ''em_resolv_replace'';
      meta = {
        description = ''EventMachine-aware DNS lookup for Ruby'';
        homepage = ''http://github.com/mperham/em-resolv-replace'';
      };
      name = ''em-resolv-replace-1.1.3'';
      requiredGems = [  ];
      sha256 = ''1w5y4rzmp51ni56v05qwgay5wrs2i6i3q92pvlcrghmhxhgsbqg7'';
    };
    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'';
    };
    ethon_0_7_1 = {
      basename = ''ethon'';
      meta = {
        description = ''Libcurl wrapper.'';
        homepage = ''https://github.com/typhoeus/ethon'';
        longDescription = ''Very lightweight libcurl wrapper.'';
      };
      name = ''ethon-0.7.1'';
      requiredGems = [ g.ffi_1_9_3 ];
      sha256 = ''0b762cmnj20fjlrlzk5vsndzv4ac3ybdi4vikx5c11abl7x5wbg6'';
    };
    eventmachine_1_0_3 = {
      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.3'';
      requiredGems = [  ];
      sha256 = ''09sqlsb6x9ddlgfw5gsw7z0yjg5m2qfjiqkz2fx70zsizj3lqhil'';
    };
    eventmachine_tail_0_6_4 = {
      basename = ''eventmachine_tail'';
      meta = {
        description = ''eventmachine tail - a file tail implementation with glob support'';
        homepage = ''http://code.google.com/p/semicomplete/wiki/EventMachineTail'';
        longDescription = ''Add file 'tail' implemented with EventMachine. Also includes a 'glob watch' class for watching a directory pattern for new matches, like /var/log/*.log'';
      };
      name = ''eventmachine-tail-0.6.4'';
      requiredGems = [ g.eventmachine_1_0_3 ];
      sha256 = ''1pvlb34vdzd81kf9f3xyibb4f55xjqm7lqqy28dgyci5cyv50y61'';
    };
    fakes3_0_1_5_2 = {
      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.2'';
      requiredGems = [ g.thor_0_19_1 g.builder_3_2_2 ];
      sha256 = ''1gmg428s1jpdwn7bd9pi4ikxg8440nq9yqs22wv0k355z5cqb8by'';
    };
    faraday_0_9_0 = {
      basename = ''faraday'';
      meta = {
        description = ''HTTP/REST API client library.'';
        homepage = ''https://github.com/lostisland/faraday'';
      };
      name = ''faraday-0.9.0'';
      requiredGems = [ g.multipart_post_2_0_0 ];
      sha256 = ''13wi8y7j6mp0mszps50gqr0fyddiz45wqkvpnnrv797gklr9sh46'';
    };
    faraday_middleware_0_9_1 = {
      basename = ''faraday_middleware'';
      meta = {
        description = ''Various middleware for Faraday'';
        homepage = ''https://github.com/lostisland/faraday_middleware'';
        longDescription = ''Various middleware for Faraday'';
      };
      name = ''faraday_middleware-0.9.1'';
      requiredGems = [ g.faraday_0_9_0 ];
      sha256 = ''1kndkrww1biz9j64fnyaqgis1gdiawxfv0ncadsz06gd555fgs6q'';
    };
    ffi_1_9_3 = {
      basename = ''ffi'';
      meta = {
        description = ''Ruby FFI'';
        homepage = ''http://wiki.github.com/ffi/ffi'';
        longDescription = ''Ruby FFI library'';
      };
      name = ''ffi-1.9.3'';
      requiredGems = [  ];
      sha256 = ''0873h6jp3v65mll7av9bxlzp9m9l1cc66j0krg0llchwbh4pv5sp'';
    };
    file_tail_1_0_12 = {
      basename = ''file_tail'';
      meta = {
        description = ''File::Tail for Ruby'';
        homepage = ''http://github.com/flori/file-tail'';
        longDescription = ''Library to tail files in Ruby'';
      };
      name = ''file-tail-1.0.12'';
      requiredGems = [ g.tins_0_13_2 ];
      sha256 = ''0mzxxnwj7k5pwxs0rdbmb3b41zgvzw7x40sf3qlkch4zdfx91i1j'';
    };
    foreman_0_74_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.74.0'';
      requiredGems = [ g.thor_0_19_1 g.dotenv_0_11_1 ];
      sha256 = ''0jqblq0myzmdp2cywzz7flvgqnhf267ykcdn250cccy68s9wm37m'';
    };
    gettext_3_1_3 = {
      basename = ''gettext'';
      meta = {
        description = ''Gettext is a pure Ruby libary and tools to localize messages.'';
        homepage = ''http://ruby-gettext.github.com/'';
        longDescription = ''Gettext is a GNU gettext-like program for Ruby.
The catalog file(po-file) is same format with GNU gettext.
So you can use GNU gettext tools for maintaining.
'';
      };
      name = ''gettext-3.1.3'';
      requiredGems = [ g.locale_2_1_0 g.text_1_3_0 ];
      sha256 = ''066x2dbryab02kdbk6km79h4j9b0f0ynsnzcygjgvzn9001ybf9q'';
    };
    gh_0_13_2 = {
      basename = ''gh'';
      meta = {
        description = ''layered github client'';
        homepage = ''http://gh.rkh.im/'';
        longDescription = ''multi-layer client for the github api v3'';
      };
      name = ''gh-0.13.2'';
      requiredGems = [ g.faraday_0_9_0 g.backports_3_6_0 g.multi_json_1_10_1 g.addressable_2_3_6 g.net_http_persistent_2_9_4 g.net_http_pipeline_1_0_1 ];
      sha256 = ''17scqa35j6ghpykzk986gnd6dvbrh8nn60ib04hb2gbyh9dns1dj'';
    };
    gherkin_2_12_2 = {
      basename = ''gherkin'';
      meta = {
        description = ''gherkin-2.12.2'';
        homepage = ''http://github.com/cucumber/gherkin'';
        longDescription = ''A fast Gherkin lexer/parser based on the Ragel State Machine Compiler.'';
      };
      name = ''gherkin-2.12.2'';
      requiredGems = [ g.multi_json_1_10_1 ];
      sha256 = ''1mxfgw15pii1jmq00xxbyp77v71mh3bp99ndgwzfwkxvbcisha25'';
    };
    highline_1_6_21 = {
      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.21'';
      requiredGems = [  ];
      sha256 = ''06bml1fjsnrhd956wqq5k3w8cyd09rv1vixdpa3zzkl6xs72jdn1'';
    };
    hike_1_2_3 = {
      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.3'';
      requiredGems = [  ];
      sha256 = ''0i6c9hrszzg3gn2j41v3ijnwcm8cc2931fnjiv6mnpl4jcjjykhm'';
    };
    hoe_3_7_1 = {
      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.7.1'';
      requiredGems = [ g.rake_10_3_2 ];
      sha256 = ''0lyrdbzxj4isxzyfp93w0q1g9sqw6grkjp91xirzlw1z1714qsw3'';
    };
    http_cookie_1_0_2 = {
      basename = ''http_cookie'';
      meta = {
        description = ''A Ruby library to handle HTTP Cookies based on RFC 6265'';
        homepage = ''https://github.com/sparklemotion/http-cookie'';
        longDescription = ''HTTP::Cookie is a Ruby library to handle HTTP Cookies based on RFC 6265.  It has with security, standards compliance and compatibility in mind, to behave just the same as today's major web browsers.  It has builtin support for the legacy cookies.txt and the latest cookies.sqlite formats of Mozilla Firefox, and its modular API makes it easy to add support for a new backend store.'';
      };
      name = ''http-cookie-1.0.2'';
      requiredGems = [ g.domain_name_0_5_20 ];
      sha256 = ''0cz2fdkngs3jc5w32a6xcl511hy03a7zdiy988jk1sf3bf5v3hdw'';
    };
    i18n_0_6_11 = {
      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.11'';
      requiredGems = [  ];
      sha256 = ''0fwjlgmgry2blf8zlxn9c555cf4a16p287l599kz5104ncjxlzdk'';
    };
    iconv_1_0_4 = {
      basename = ''iconv'';
      meta = {
        description = ''iconv wrapper library'';
        homepage = ''https://github.com/nurse/iconv'';
        longDescription = ''iconv wrapper library'';
      };
      name = ''iconv-1.0.4'';
      requiredGems = [  ];
      sha256 = ''16sgj6gqs4bgwv6q4vv811fb43908psr33dz7sphn1z8la3y7m2v'';
    };
    jsduck_5_3_4 = {
      basename = ''jsduck'';
      meta = {
        description = ''Simple JavaScript Duckumentation generator'';
        homepage = ''https://github.com/senchalabs/jsduck'';
        longDescription = ''Documentation generator for Sencha JS frameworks'';
      };
      name = ''jsduck-5.3.4'';
      requiredGems = [ g.rdiscount_2_1_7_1 g.json_1_8_1 g.parallel_0_7_1 g.rkelly_remix_0_0_6 g.dimensions_1_2_0 ];
      sha256 = ''0hac7g9g6gg10bigbm8dskwwbv1dfch8ca353gh2bkwf244qq2xr'';
    };
    json_1_8_1 = {
      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.8.1'';
      requiredGems = [  ];
      sha256 = ''0002bsycvizvkmk1jyv8px1hskk6wrjfk4f7x5byi8gxm6zzn6wn'';
    };
    json_pure_1_8_0 = {
      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.8.0'';
      requiredGems = [  ];
      sha256 = ''0kkn5zhiffav2cffj43wwvzj07825r4j463ilfjgik034vnbjs83'';
    };
    launchy_2_4_2 = {
      basename = ''launchy'';
      meta = {
        description = ''Launchy is helper class for launching cross-platform applications in a fire and forget manner.'';
        homepage = ''http://github.com/copiousfreetime/launchy'';
        longDescription = ''Launchy is helper class for launching cross-platform applications in a fire and forget manner. There are application concepts (browser, email client, etc) that are common across all platforms, and they may be launched differently on each platform. Launchy is here to make a common approach to launching external application from within ruby programs.'';
      };
      name = ''launchy-2.4.2'';
      requiredGems = [ g.addressable_2_3_6 ];
      sha256 = ''0i1nmlrqpnk2q6f7iq85cqaa7b8fw4bmqm57w60g92lsfmszs8iv'';
    };
    locale_2_1_0 = {
      basename = ''locale'';
      meta = {
        description = ''Ruby-Locale is the pure ruby library which provides basic APIs for localization.'';
        homepage = ''https://github.com/ruby-gettext/locale'';
        longDescription = ''Ruby-Locale is the pure ruby library which provides basic APIs for localization.
'';
      };
      name = ''locale-2.1.0'';
      requiredGems = [  ];
      sha256 = ''18bb0g24flq9dr8qv4j7pm7w9i2vmvmqrbmry95ibf1r1c4s60yj'';
    };
    lockfile_2_1_3 = {
      basename = ''lockfile'';
      meta = {
        description = ''lockfile'';
        homepage = ''https://github.com/ahoward/lockfile'';
        longDescription = ''a ruby library for creating perfect and NFS safe lockfiles'';
      };
      name = ''lockfile-2.1.3'';
      requiredGems = [  ];
      sha256 = ''0dij3ijywylvfgrpi2i0k17f6w0wjhnjjw0k9030f54z56cz7jrr'';
    };
    macaddr_1_7_1 = {
      basename = ''macaddr'';
      meta = {
        description = ''macaddr'';
        homepage = ''https://github.com/ahoward/macaddr'';
        longDescription = ''cross platform mac address determination for ruby'';
      };
      name = ''macaddr-1.7.1'';
      requiredGems = [ g.systemu_2_6_4 ];
      sha256 = ''1clii8mvhmh5lmnm95ljnjygyiyhdpja85c5vy487rhxn52scn0b'';
    };
    mail_2_5_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.5.4'';
      requiredGems = [ g.mime_types_1_25_1 g.treetop_1_4_15 ];
      sha256 = ''0z15ksb8blcppchv03g34844f7xgf36ckp484qjj2886ig1qara4'';
    };
    mail_2_6_1 = {
      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.6.1'';
      requiredGems = [ g.mime_types_2_3 ];
      sha256 = ''17gsw57nc7ihk4xnbq9lidzv6h1ivh4l5m16hy790vs219n22mhx'';
    };
    mechanize_2_7_3 = {
      basename = ''mechanize'';
      meta = {
        description = ''The Mechanize library is used for automating interaction with websites'';
        homepage = ''http://mechanize.rubyforge.org'';
        longDescription = ''The Mechanize library is used for automating interaction with websites.
Mechanize automatically stores and sends cookies, follows redirects,
and can follow links and submit forms.  Form fields can be populated and
submitted.  Mechanize also keeps track of the sites that you have visited as
a history.'';
      };
      name = ''mechanize-2.7.3'';
      requiredGems = [ g.net_http_digest_auth_1_4 g.net_http_persistent_2_9_4 g.mime_types_2_3 g.http_cookie_1_0_2 g.nokogiri_1_6_3_1 g.ntlm_http_0_1_1 g.webrobots_0_1_1 g.domain_name_0_5_20 ];
      sha256 = ''00jkazj8fqnynaxca0lnwx5a084irxrnw8n8i0kppq4vg71g7rrx'';
    };
    method_source_0_8_2 = {
      basename = ''method_source'';
      meta = {
        description = ''retrieve the sourcecode for a method'';
        homepage = ''http://banisterfiend.wordpress.com'';
        longDescription = ''retrieve the sourcecode for a method'';
      };
      name = ''method_source-0.8.2'';
      requiredGems = [  ];
      sha256 = ''1g5i4w0dmlhzd18dijlqw5gk27bv6dj2kziqzrzb7mpgxgsd1sf2'';
    };
    mime_types_1_25_1 = {
      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.25.1, fixing an issue with priority comparison for
mime-types 1.x. The current release is 2.0, which only supports Ruby 1.9 or
later.

Release 1.25.1 contains all features of 1.25, including the experimental
caching and lazy loading functionality. The caching and lazy loading features
were initially implemented by Greg Brockman (gdb). As these features are
experimental, they are disabled by default and must be enabled through the use
of environment variables. The cache is invalidated on a per-version basis; the
cache for version 1.25 will not be reused for any later version.

To use lazy loading, set the environment variable +RUBY_MIME_TYPES_LAZY_LOAD+
to any value other than 'false'. When using lazy loading, the initial startup
of MIME::Types is around 12–25× faster than normal startup (on my system,
normal startup is about 90 ms; lazy startup is about 4 ms). This isn't
generally useful, however, as the MIME::Types database has not been loaded.
Lazy startup and load is just *slightly* faster—around 1 ms. The real advantage
comes from using the cache.

To enable the cache, set the environment variable +RUBY_MIME_TYPES_CACHE+ to a
filename where MIME::Types will have read-write access. The first time a new
version of MIME::Types is run using this file, it will be created, taking a
little longer than normal. Subsequent loads using the same cache file will be
approximately 3½× faster (25 ms) than normal loads. This can be combined with
+RUBY_MIME_TYPES_LAZY_LOAD+, but this is *not* recommended in a multithreaded
or multiprocess environment where all threads or processes will be using the
same cache file.

As the caching interface is still experimental, the only values cached are the
default MIME::Types database, not any custom MIME::Types added by users.

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 MIME::Types for Perl by Mark
Overmeer, copyright 2001 - 2009.

MIME::Types is built to conform to the MIME types of RFCs 2045 and 2231. It
tracks the {IANA registry}[http://www.iana.org/assignments/media-types/]
({ftp}[ftp://ftp.iana.org/assignments/media-types]) with some unofficial types
added from the {LTSW collection}[http://www.ltsw.se/knbase/internet/mime.htp]
and added by the users of MIME::Types.'';
      };
      name = ''mime-types-1.25.1'';
      requiredGems = [  ];
      sha256 = ''0mhzsanmnzdshaba7gmsjwnv168r1yj8y0flzw88frw1cickrvw8'';
    };
    mime_types_2_3 = {
      basename = ''mime_types'';
      meta = {
        description = ''The mime-types library provides a library and registry for information about MIME content type definitions'';
        homepage = ''https://github.com/halostatue/mime-types/'';
        longDescription = ''The mime-types library provides a library and registry for information about
MIME content type definitions. It can be used to determine defined filename
extensions for MIME types, or to use filename extensions to look up the likely
MIME type definitions.

MIME content types are used in MIME-compliant communications, as in e-mail or
HTTP traffic, to indicate the type of content which is transmitted. The
mime-types library provides the ability for detailed information about MIME
entities (provided as an enumerable collection 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 by definition incomplete; don't hesitate to to
add additional type definitions (see Contributing.rdoc). The primary sources
for MIME type definitions found in mime-types is the IANA collection of
registrations (see below for the link), RFCs, and W3C recommendations.

This is release 2.2, mostly changing how the MIME type registry is updated from
the IANA registry (the format of which was incompatibly changed shortly before
this release) and taking advantage of the extra data available from IANA
registry in the form of MIME::Type#xrefs. In addition, the {LTSW
list}[http://www.ltsw.se/knbase/internet/mime.htp] has been dropped as a
supported list.

As a reminder, mime-types 2.x is no longer compatible with Ruby 1.8 and
mime-types 1.x is only being maintained for security issues. No new MIME types
or features will be added.

mime-types (previously called MIME::Types for Ruby) was originally based on
MIME::Types for Perl by Mark Overmeer, copyright 2001 - 2009. It is built to
conform to the MIME types of RFCs 2045 and 2231. It tracks the {IANA Media
Types registry}[https://www.iana.org/assignments/media-types/media-types.xhtml]
with some types added by the users of mime-types.'';
      };
      name = ''mime-types-2.3'';
      requiredGems = [  ];
      sha256 = ''0j0mwzr2q9fmisp3r8rp7j95dns2gw7sd8c5sb5y6z0dfj56a4vd'';
    };
    mini_portile_0_6_0 = {
      basename = ''mini_portile'';
      meta = {
        description = ''Simplistic port-like solution for developers'';
        homepage = ''http://github.com/luislavena/mini_portile'';
        longDescription = ''Simplistic port-like solution for developers. It provides a standard and simplified way to compile against dependency libraries without messing up your system.'';
      };
      name = ''mini_portile-0.6.0'';
      requiredGems = [  ];
      sha256 = ''09kcn4g63xrdirgwxgjikqg976rr723bkc9bxfr29pk22cj3wavn'';
    };
    minitar_0_5_4 = {
      basename = ''minitar'';
      meta = {
        description = ''Provides POSIX tarchive management from Ruby programs.'';
        homepage = ''http://www.github.com/atoulme/minitar'';
        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. Antoine Toulme forked the original project on rubyforge to place it on github, under http://www.github.com/atoulme/minitar'';
      };
      name = ''minitar-0.5.4'';
      requiredGems = [  ];
      sha256 = ''1vpdjfmdq1yc4i620frfp9af02ia435dnpj8ybsd7dc3rypkvbka'';
    };
    minitest_5_4_0 = {
      basename = ''minitest'';
      meta = {
        description = ''minitest provides a complete suite of testing facilities supporting TDD, BDD, mocking, and benchmarking'';
        homepage = ''https://github.com/seattlerb/minitest'';
        longDescription = ''minitest provides a complete suite of testing facilities supporting
TDD, BDD, mocking, and benchmarking.

    "I had a class with Jim Weirich on testing last week and we were
     allowed to choose our testing frameworks. Kirk Haines and I were
     paired up and we cracked open the code for a few test
     frameworks...

     I MUST say that minitest is *very* readable / understandable
     compared to the 'other two' options we looked at. Nicely done and
     thank you for helping us keep our mental sanity."

    -- Wayne E. Seguin

minitest/unit is a small and incredibly fast unit testing framework.
It provides a rich set of assertions to make your tests clean and
readable.

minitest/spec is a functionally complete spec engine. It hooks onto
minitest/unit and seamlessly bridges test assertions over to spec
expectations.

minitest/benchmark is an awesome way to assert the performance of your
algorithms in a repeatable manner. Now you can assert that your newb
co-worker doesn't replace your linear algorithm with an exponential
one!

minitest/mock by Steven Baker, is a beautifully tiny mock (and stub)
object framework.

minitest/pride shows pride in testing and adds coloring to your test
output. I guess it is an example of how to write IO pipes too. :P

minitest/unit is meant to have a clean implementation for language
implementors that need a minimal set of methods to bootstrap a working
test suite. For example, there is no magic involved for test-case
discovery.

    "Again, I can't praise enough the idea of a testing/specing
     framework that I can actually read in full in one sitting!"

    -- Piotr Szotkowski

Comparing to rspec:

    rspec is a testing DSL. minitest is ruby.

    -- Adam Hawkins, "Bow Before MiniTest"

minitest doesn't reinvent anything that ruby already provides, like:
classes, modules, inheritance, methods. This means you only have to
learn ruby to use minitest and all of your regular OO practices like
extract-method refactorings still apply.'';
      };
      name = ''minitest-5.4.0'';
      requiredGems = [  ];
      sha256 = ''002xflqz5wl8gcj9gw4q66mq5jkp445zgd9c5vs6cw6lsfsyg4rl'';
    };
    multi_json_1_10_1 = {
      basename = ''multi_json'';
      meta = {
        description = ''A common interface to multiple JSON libraries.'';
        homepage = ''http://github.com/intridea/multi_json'';
        longDescription = ''A common interface to multiple JSON libraries, including Oj, Yajl, the JSON gem (with C-extensions), the pure-Ruby JSON gem, NSJSONSerialization, gson.rb, JrJackson, and OkJson.'';
      };
      name = ''multi_json-1.10.1'';
      requiredGems = [  ];
      sha256 = ''1ll21dz01jjiplr846n1c8yzb45kj5hcixgb72rz0zg8fyc9g61c'';
    };
    multi_json_1_3_6 = {
      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.3.6'';
      requiredGems = [  ];
      sha256 = ''0q2zjfvd2ibds9g9nzf2p1b47fc1wqliwfywv5pw85w15lmy91yr'';
    };
    multi_test_0_1_1 = {
      basename = ''multi_test'';
      meta = {
        description = ''multi-test-0.1.1'';
        homepage = ''http://cukes.info'';
        longDescription = ''Wafter-thin gem to help control rogue test/unit/autorun requires'';
      };
      name = ''multi_test-0.1.1'';
      requiredGems = [  ];
      sha256 = ''1dd810limbdc8k7ss83g83krrsjjqs79nicbdxk74l1a2sp2jhwv'';
    };
    multipart_post_2_0_0 = {
      basename = ''multipart_post'';
      meta = {
        description = ''A multipart form post accessory for Net::HTTP.'';
        homepage = ''https://github.com/nicksieger/multipart-post'';
        longDescription = ''Use with Net::HTTP to do multipart form posts.  IO values that have #content_type, #original_filename, and #local_path will be posted as a binary file.'';
      };
      name = ''multipart-post-2.0.0'';
      requiredGems = [  ];
      sha256 = ''09k0b3cybqilk1gwrwwain95rdypixb2q9w65gd44gfzsd84xi1x'';
    };
    net_http_digest_auth_1_4 = {
      basename = ''net_http_digest_auth'';
      meta = {
        description = ''An implementation of RFC 2617 - Digest Access Authentication'';
        homepage = ''http://github.com/drbrain/net-http-digest_auth'';
        longDescription = ''An implementation of RFC 2617 - Digest Access Authentication.  At this time
the gem does not drop in to Net::HTTP and can be used for with other HTTP
clients.

In order to use net-http-digest_auth you'll need to perform some request
wrangling on your own.  See the class documentation at Net::HTTP::DigestAuth
for an example.'';
      };
      name = ''net-http-digest_auth-1.4'';
      requiredGems = [  ];
      sha256 = ''14801gr34g0rmqz9pv4rkfa3crfdbyfk6r48vpg5a5407v0sixqi'';
    };
    net_http_persistent_2_9_4 = {
      basename = ''net_http_persistent'';
      meta = {
        description = ''Manages persistent connections using Net::HTTP plus a speed fix for Ruby 1.8'';
        homepage = ''http://docs.seattlerb.org/net-http-persistent'';
        longDescription = ''Manages persistent connections using Net::HTTP plus a speed fix for Ruby 1.8.
It's thread-safe too!

Using persistent HTTP connections can dramatically increase the speed of HTTP.
Creating a new HTTP connection for every request involves an extra TCP
round-trip and causes TCP congestion avoidance negotiation to start over.

Net::HTTP supports persistent connections with some API methods but does not
handle reconnection gracefully.  Net::HTTP::Persistent supports reconnection
and retry according to RFC 2616.'';
      };
      name = ''net-http-persistent-2.9.4'';
      requiredGems = [  ];
      sha256 = ''1y9fhaax0d9kkslyiqi1zys6cvpaqx9a0y0cywp24rpygwh4s9r4'';
    };
    net_http_pipeline_1_0_1 = {
      basename = ''net_http_pipeline'';
      meta = {
        description = ''An HTTP/1.1 pipelining implementation atop Net::HTTP'';
        homepage = ''http://docs.seattlerb.org/net-http-pipeline'';
        longDescription = ''An HTTP/1.1 pipelining implementation atop Net::HTTP.  A pipelined connection
sends multiple requests to the HTTP server without waiting for the responses.
The server will respond in-order.'';
      };
      name = ''net-http-pipeline-1.0.1'';
      requiredGems = [  ];
      sha256 = ''0bxjy33yhxwsbnld8xj3zv64ibgfjn9rjpiqkyd5ipmz50pww8v9'';
    };
    net_sftp_2_1_2 = {
      basename = ''net_sftp'';
      meta = {
        description = ''A pure Ruby implementation of the SFTP client protocol'';
        homepage = ''https://github.com/net-ssh/net-sftp'';
        longDescription = ''A pure Ruby implementation of the SFTP client protocol'';
      };
      name = ''net-sftp-2.1.2'';
      requiredGems = [ g.net_ssh_2_9_1 ];
      sha256 = ''04674g4n6mryjajlcd82af8g8k95la4b1bj712dh71hw1c9vhw1y'';
    };
    net_ssh_2_7_0 = {
      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.7.0'';
      requiredGems = [  ];
      sha256 = ''14v0cq2fws54kxpgz249xmjlajynhcs4s2szl8kjxgn4c78lrkmr'';
    };
    net_ssh_2_9_1 = {
      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.9.1'';
      requiredGems = [  ];
      sha256 = ''1vscp4r58jisiigqc6d6752w19m1m6hmi3jkzmp3ydxai7h3jb2j'';
    };
    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_6_3_1 = {
      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.6.3.1'';
      requiredGems = [ g.mini_portile_0_6_0 ];
      sha256 = ''11958hlfd8i3i9y0wk1b6ck9x0j95l4zdbbixmdnnh1r8ijilxli'';
    };
    ntlm_http_0_1_1 = {
      basename = ''ntlm_http'';
      meta = {
        description = ''Ruby/NTLM HTTP library.'';
        homepage = ''http://www.mindflowsolutions.net'';
        longDescription = ''Ruby/NTLM HTTP provides NTLM authentication over http.'';
      };
      name = ''ntlm-http-0.1.1'';
      requiredGems = [  ];
      sha256 = ''0yx01ffrw87wya1syivqzf8hz02axk7jdpw6aw221xwvib767d36'';
    };
    orderedhash_0_0_6 = {
      basename = ''orderedhash'';
      meta = {
        description = ''orderedhash'';
        homepage = ''http://codeforpeople.com/lib/ruby/orderedhash/'';
      };
      name = ''orderedhash-0.0.6'';
      requiredGems = [  ];
      sha256 = ''0fryy7f9jbpx33jq5m402yqj01zcg563k9fsxlqbhmq638p4bzd7'';
    };
    papertrail_0_9_10 = {
      basename = ''papertrail'';
      meta = {
        description = ''Command-line client for Papertrail hosted log management service.'';
        homepage = ''http://github.com/papertrail/papertrail-cli'';
        longDescription = ''Command-line client for Papertrail hosted log management service. Tails and searches app server logs and system syslog. Supports Boolean search and works with grep and pipe output (Unix).'';
      };
      name = ''papertrail-0.9.10'';
      requiredGems = [ g.chronic_0_10_2 ];
      sha256 = ''1v2acc896w5q72m5pfxc8rx36gzih4fivyiqp0kxwypgyh0f0x58'';
    };
    papertrail_cli_0_9_3 = {
      basename = ''papertrail_cli'';
      meta = {
        description = ''Placeholder gem to point to new papertrail gem'';
        homepage = ''http://github.com/papertrail/papertrail-cli-gem'';
        longDescription = ''Placeholder gem to point to new papertrail gem.'';
      };
      name = ''papertrail-cli-0.9.3'';
      requiredGems = [ g.papertrail_0_9_10 ];
      sha256 = ''1914dcfqsmw5rl4xd1zwjrfbgwglyncxm8km06bgxaqn4wnaq5iv'';
    };
    parallel_0_7_1 = {
      basename = ''parallel'';
      meta = {
        description = ''Run any kind of code in parallel processes'';
        homepage = ''https://github.com/grosser/parallel'';
      };
      name = ''parallel-0.7.1'';
      requiredGems = [  ];
      sha256 = ''1kzz6ydg7r23ks2b7zbpx4vz3h186n19vhgnjcwi7xwd6h2f1fsq'';
    };
    polyglot_0_3_5 = {
      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.5'';
      requiredGems = [  ];
      sha256 = ''1bqnxwyip623d8pr29rg6m8r0hdg08fpr2yb74f46rn1wgsnxmjr'';
    };
    pry_0_9_12_6 = {
      basename = ''pry'';
      meta = {
        description = ''An IRB alternative and runtime developer console'';
        homepage = ''http://pry.github.com'';
        longDescription = ''An IRB alternative and runtime developer console'';
      };
      name = ''pry-0.9.12.6'';
      requiredGems = [ g.coderay_1_1_0 g.slop_3_6_0 g.method_source_0_8_2 ];
      sha256 = ''0wmgamn83m1zb1fbqc22hiszjf2a2xij5jd95w2gvm5x6l5p61q1'';
    };
    pusher_client_0_6_0 = {
      basename = ''pusher_client'';
      meta = {
        description = ''Client for consuming WebSockets from http://pusher.com'';
        homepage = ''http://github.com/pusher/pusher-ruby-client'';
        longDescription = ''Client for consuming WebSockets from http://pusher.com'';
      };
      name = ''pusher-client-0.6.0'';
      requiredGems = [ g.websocket_1_2_0 g.json_1_8_1 ];
      sha256 = ''0n7l630qg6wgzak45b6gfjg9a0fmpbrs7mwchqqbja9mjs95r8qy'';
    };
    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_protection_1_5_3 = {
      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.5.3'';
      requiredGems = [ g.rack_1_5_2 ];
      sha256 = ''0cvb21zz7p9wy23wdav63z5qzfn4nialik22yqp6gihkgfqqrh5r'';
    };
    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_4_1_5 = {
      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-4.1.5'';
      requiredGems = [ g.activesupport_4_1_5 g.actionpack_4_1_5 g.actionview_4_1_5 g.activemodel_4_1_5 g.activerecord_4_1_5 g.actionmailer_4_1_5 g.railties_4_1_5 g.bundler_1_7_1 g.sprockets_rails_2_1_3 ];
      sha256 = ''12s3jkvd6bn40apxc3973czgs7s6y36aclbwif6j770v7sjd9qj7'';
    };
    railties_4_1_5 = {
      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-4.1.5'';
      requiredGems = [ g.activesupport_4_1_5 g.actionpack_4_1_5 g.rake_10_3_2 g.thor_0_19_1 ];
      sha256 = ''18jkjvny51vk53l2g9ibcnjk3gjj1vgh3pyrskmk69csqm2hmaha'';
    };
    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_10_3_2 = {
      basename = ''rake'';
      meta = {
        description = ''Rake is a Make-like program implemented in Ruby'';
        homepage = ''https://github.com/jimweirich/rake'';
        longDescription = ''Rake is a Make-like program implemented in Ruby. Tasks and dependencies are
specified in standard Ruby syntax.

Rake has the following features:

* Rakefiles (rake's version of Makefiles) are completely defined in
  standard Ruby syntax.  No XML files to edit.  No quirky Makefile
  syntax to worry about (is that a tab or a space?)

* Users can specify tasks with prerequisites.

* Rake supports rule patterns to synthesize implicit tasks.

* Flexible FileLists that act like arrays but know about manipulating
  file names and paths.

* A library of prepackaged tasks to make building rakefiles easier. For example,
  tasks for building tarballs and publishing to FTP or SSH sites.  (Formerly
  tasks for building RDoc and Gems were included in rake but they're now
  available in RDoc and RubyGems respectively.)

* Supports parallel execution of tasks.'';
      };
      name = ''rake-10.3.2'';
      requiredGems = [  ];
      sha256 = ''0nvpkjrpsk8xxnij2wd1cdn6arja9q11sxx4aq4fz18bc6fss15m'';
    };
    rb_fsevent_0_9_4 = {
      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.4'';
      requiredGems = [  ];
      sha256 = ''12if5xsik64kihxf5awsyavlp595y47g9qz77vfp2zvkxgglaka7'';
    };
    rdiscount_2_1_7_1 = {
      basename = ''rdiscount'';
      meta = {
        description = ''Fast Implementation of Gruber's Markdown in C'';
        homepage = ''http://dafoster.net/projects/rdiscount/'';
      };
      name = ''rdiscount-2.1.7.1'';
      requiredGems = [  ];
      sha256 = ''1g70vsgv7mdwcyk9rxja7wm4qqap67prqwkj335c460vlzs6pqii'';
    };
    remote_syslog_1_6_14 = {
      basename = ''remote_syslog'';
      meta = {
        description = ''Monitor plain text log file(s) for new entries and send to remote syslog collector'';
        homepage = ''http://github.com/papertrail/remote_syslog'';
        longDescription = ''Lightweight daemon to tail one or more log files and transmit UDP syslog messages to a remote syslog host (centralized log aggregation). Generates UDP packets itself instead of depending on a system syslog daemon, so it doesn't affect system-wide logging configuration.'';
      };
      name = ''remote_syslog-1.6.14'';
      requiredGems = [ g.servolux_0_10_0 g.file_tail_1_0_12 g.eventmachine_1_0_3 g.eventmachine_tail_0_6_4 g.syslog_protocol_0_9_2 g.em_resolv_replace_1_1_3 ];
      sha256 = ''1f2yjyqhbdc4vlx52zli1b33f6yn8qc1kd4n0dpv27zswj9qfdkr'';
    };
    riemann_dash_0_2_9 = {
      basename = ''riemann_dash'';
      meta = {
        description = ''HTTP dashboard for the distributed event system Riemann.'';
        homepage = ''https://github.com/aphyr/riemann-dash'';
        longDescription = ''HTTP dashboard for the distributed event system Riemann.'';
      };
      name = ''riemann-dash-0.2.9'';
      requiredGems = [ g.erubis_2_7_0 g.sinatra_1_4_5 g.sass_3_4_1 g.webrick_1_3_1 g.multi_json_1_3_6 ];
      sha256 = ''0ws5wmjbv8w9lcr3i2mdinj2qm91p6c85k6c067i67cf0p90jxq3'';
    };
    right_aws_3_1_0 = {
      basename = ''right_aws'';
      meta = {
        description = ''The RightScale AWS gems have been designed to provide a robust, fast, and secure interface to Amazon EC2, EBS, S3, SQS, SDB, and CloudFront.'';
        longDescription = ''== DESCRIPTION:

The RightScale AWS gems have been designed to provide a robust, fast, and secure interface to Amazon EC2, EBS, S3, SQS, SDB, and CloudFront.
These gems have been used in production by RightScale since late 2006 and are being maintained to track enhancements made by Amazon.
The RightScale AWS gems comprise:

- RightAws::Ec2 -- interface to Amazon EC2 (Elastic Compute Cloud) and the
  associated EBS (Elastic Block Store)
- RightAws::S3 and RightAws::S3Interface -- interface to Amazon S3 (Simple Storage Service)
- RightAws::Sqs and RightAws::SqsInterface -- interface to first-generation Amazon SQS (Simple Queue Service) (API version 2007-05-01)
- RightAws::SqsGen2 and RightAws::SqsGen2Interface -- interface to second-generation Amazon SQS (Simple Queue Service) (API version 2008-01-01)
- RightAws::SdbInterface and RightAws::ActiveSdb -- interface to Amazon SDB (SimpleDB)
- RightAws::AcfInterface -- interface to Amazon CloudFront, a content distribution service

== FEATURES:

- Full programmmatic access to EC2, EBS, S3, SQS, SDB, and CloudFront.
- Complete error handling: all operations check for errors and report complete
  error information by raising an AwsError.
- Persistent HTTP connections with robust network-level retry layer using
  RightHttpConnection).  This includes socket timeouts and retries.
- Robust HTTP-level retry layer.  Certain (user-adjustable) HTTP errors returned
  by Amazon's services are classified as temporary errors.
  These errors are automaticallly retried using exponentially increasing intervals.
  The number of retries is user-configurable.
- Fast REXML-based parsing of responses (as fast as a pure Ruby solution allows).
- Uses libxml (if available) for faster response parsing.
- Support for large S3 list operations.  Buckets and key subfolders containing
  many (> 1000) keys are listed in entirety.  Operations based on list (like
  bucket clear) work on arbitrary numbers of keys.
- Support for streaming GETs from S3, and streaming PUTs to S3 if the data source is a file.
- Support for single-threaded usage, multithreaded usage, as well as usage with multiple
  AWS accounts.
- Support for both first- and second-generation SQS (API versions 2007-05-01
  and 2008-01-01).  These versions of SQS are not compatible.
- Support for signature versions 0 and 1 on SQS, SDB, and EC2.
- Interoperability with any cloud running Eucalyptus (http://eucalyptus.cs.ucsb.edu)
- Test suite (requires AWS account to do "live" testing).
'';
      };
      name = ''right_aws-3.1.0'';
      requiredGems = [ g.right_http_connection_1_5_0 ];
      sha256 = ''1a3l5vyvq078nq976rzkrd6fbj522sbgrxpdq3p9z373h0awha09'';
    };
    right_http_connection_1_5_0 = {
      basename = ''right_http_connection'';
      meta = {
        description = ''RightScale's robust HTTP/S connection module'';
        homepage = ''http://rightscale.rubyforge.org/'';
        longDescription = ''Rightscale::HttpConnection is a robust HTTP/S library.  It implements a retry
algorithm for low-level network errors.

== FEATURES:

- provides put/get streaming
- does configurable retries on connect and read timeouts, DNS failures, etc.
- HTTPS certificate checking
'';
      };
      name = ''right_http_connection-1.5.0'';
      requiredGems = [  ];
      sha256 = ''0shd8v24aqxdvim1gdqzwxpanjhfgkhdaw0m0lzz7sybkb02j8qf'';
    };
    rjb_1_4_8 = {
      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.8'';
      requiredGems = [  ];
      sha256 = ''06ps4ssaxb8jwja53h7v7kb31hsdr997b8na89d1yasm5zyraliw'';
    };
    rjb_1_4_9 = {
      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.9'';
      requiredGems = [  ];
      sha256 = ''062f7bjwz6iz6da49nzzbbx4xn8ahqqha2smqvqhbf0i7kd5v0yz'';
    };
    rkelly_remix_0_0_6 = {
      basename = ''rkelly_remix'';
      meta = {
        description = ''RKelly Remix is a fork of the RKelly[https://github.com/tenderlove/rkelly] JavaScript parser.'';
        homepage = ''https://github.com/nene/rkelly-remix'';
        longDescription = ''RKelly Remix is a fork of the
RKelly[https://github.com/tenderlove/rkelly] JavaScript parser.'';
      };
      name = ''rkelly-remix-0.0.6'';
      requiredGems = [  ];
      sha256 = ''1ihsns5v8nx96gvj7sqw5m8d6dsnmpfzpd07y860bldjhkjsxp1z'';
    };
    rmail_1_0_0 = {
      basename = ''rmail'';
      meta = {
        description = ''A MIME mail parsing and generation library.'';
        homepage = ''http://www.rfc20.org/rubymail'';
        longDescription = ''RMail is a lightweight mail library containing various utility classes and modules that allow ruby scripts to parse, modify, and generate MIME mail messages.'';
      };
      name = ''rmail-1.0.0'';
      requiredGems = [  ];
      sha256 = ''0nsg7yda1gdwa96j4hlrp2s0m06vrhcc4zy5mbq7gxmlmwf9yixp'';
    };
    rspec_2_14_1 = {
      basename = ''rspec'';
      meta = {
        description = ''rspec-2.14.1'';
        homepage = ''http://github.com/rspec'';
        longDescription = ''BDD for Ruby'';
      };
      name = ''rspec-2.14.1'';
      requiredGems = [ g.rspec_core_2_14_8 g.rspec_expectations_2_14_5 g.rspec_mocks_2_14_6 ];
      sha256 = ''134y4wzk1prninb5a0bhxgm30kqfzl8dg06af4js5ylnhv2wd7sg'';
    };
    rspec_core_2_14_5 = {
      basename = ''rspec_core'';
      meta = {
        description = ''rspec-core-2.14.5'';
        homepage = ''http://github.com/rspec/rspec-core'';
        longDescription = ''BDD for Ruby. RSpec runner and example groups.'';
      };
      name = ''rspec-core-2.14.5'';
      requiredGems = [  ];
      sha256 = ''18zk2y5agzj4ps16hh1jlcqmyj0bmlcr24bl0m8gyhwf0gk1xmcr'';
    };
    rspec_core_2_14_8 = {
      basename = ''rspec_core'';
      meta = {
        description = ''rspec-core-2.14.8'';
        homepage = ''http://github.com/rspec/rspec-core'';
        longDescription = ''BDD for Ruby. RSpec runner and example groups.'';
      };
      name = ''rspec-core-2.14.8'';
      requiredGems = [  ];
      sha256 = ''0psjy5kdlz3ph39br0m01w65i1ikagnqlg39f8p65jh5q7dz8hwc'';
    };
    rspec_expectations_2_14_3 = {
      basename = ''rspec_expectations'';
      meta = {
        description = ''rspec-expectations-2.14.3'';
        homepage = ''http://github.com/rspec/rspec-expectations'';
        longDescription = ''rspec expectations (should[_not] and matchers)'';
      };
      name = ''rspec-expectations-2.14.3'';
      requiredGems = [ g.diff_lcs_1_2_5 ];
      sha256 = ''0gv5sqizmw0hdj1gl57mynp5i27kj4i0gpksrwwg9gazciq898n2'';
    };
    rspec_expectations_2_14_5 = {
      basename = ''rspec_expectations'';
      meta = {
        description = ''rspec-expectations-2.14.5'';
        homepage = ''http://github.com/rspec/rspec-expectations'';
        longDescription = ''rspec expectations (should[_not] and matchers)'';
      };
      name = ''rspec-expectations-2.14.5'';
      requiredGems = [ g.diff_lcs_1_2_5 ];
      sha256 = ''1ni8kw8kjv76jvwjzi4jba00k3qzj9f8wd94vm6inz0jz3gwjqf9'';
    };
    rspec_mocks_2_14_3 = {
      basename = ''rspec_mocks'';
      meta = {
        description = ''rspec-mocks-2.14.3'';
        homepage = ''http://github.com/rspec/rspec-mocks'';
        longDescription = ''RSpec's 'test double' framework, with support for stubbing and mocking'';
      };
      name = ''rspec-mocks-2.14.3'';
      requiredGems = [  ];
      sha256 = ''1xfhjisvpmb212jhb3k4r1ji3rrlv509mphcf345ij5b75gaybzr'';
    };
    rspec_mocks_2_14_6 = {
      basename = ''rspec_mocks'';
      meta = {
        description = ''rspec-mocks-2.14.6'';
        homepage = ''http://github.com/rspec/rspec-mocks'';
        longDescription = ''RSpec's 'test double' framework, with support for stubbing and mocking'';
      };
      name = ''rspec-mocks-2.14.6'';
      requiredGems = [  ];
      sha256 = ''1fwsmijd6w6cmqyh4ky2nq89jrpzh56hzmndx9wgkmdgfhfakv30'';
    };
    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'';
    };
    rubyzip_1_1_6 = {
      basename = ''rubyzip'';
      meta = {
        description = ''rubyzip is a ruby module for reading and writing zip files'';
        homepage = ''http://github.com/rubyzip/rubyzip'';
      };
      name = ''rubyzip-1.1.6'';
      requiredGems = [  ];
      sha256 = ''17ha7kmgcnhnxyfp9wgyrd2synp17v9g8j1pknhfd2v9x5g475m9'';
    };
    sass_3_4_1 = {
      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.4.1'';
      requiredGems = [  ];
      sha256 = ''0f997m7g6gcd4yaxxrf1nylk2x8ynf7w2l631sby51zfn21rfli4'';
    };
    selenium_webdriver_2_42_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.42.0'';
      requiredGems = [ g.multi_json_1_10_1 g.rubyzip_1_1_6 g.childprocess_0_5_3 g.websocket_1_0_7 ];
      sha256 = ''04yjwzc7cy2ax5xgp618z9jbm55cx4b5l546l7xnxj1hk30znw6q'';
    };
    servolux_0_10_0 = {
      basename = ''servolux'';
      meta = {
        description = ''* {Homepage}[http://rubygems.'';
        homepage = ''http://gemcutter.org/gems/servolux'';
        longDescription = ''Serv-O-Lux is a collection of Ruby classes that are useful for daemon and
process management, and for writing your own Ruby services. The code is well
documented and tested. It works with Ruby and JRuby supporting both 1.8 and 1.9
interpreters.'';
      };
      name = ''servolux-0.10.0'';
      requiredGems = [  ];
      sha256 = ''08jdrk35f61ab8b48ffm85p9lgfpbnzq3n4is00gqhpcrrq72dhs'';
    };
    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_5_3 g.tilt_1_4_1 ];
      sha256 = ''05blf915zpiwyz7agcn9rwdmddwxz0z4l3gd4qlqmrgd2vkw4sxc'';
    };
    sinatra_1_4_5 = {
      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.4.5'';
      requiredGems = [ g.rack_1_5_2 g.tilt_1_4_1 g.rack_protection_1_5_3 ];
      sha256 = ''0qyna3wzlnvsz69d21lxcm3ixq7db08mi08l0a88011qi4qq701s'';
    };
    slop_3_6_0 = {
      basename = ''slop'';
      meta = {
        description = ''Simple Lightweight Option Parsing'';
        homepage = ''http://github.com/leejarvis/slop'';
        longDescription = ''A simple DSL for gathering options and parsing the command line'';
      };
      name = ''slop-3.6.0'';
      requiredGems = [  ];
      sha256 = ''00w8g3j7k7kl8ri2cf1m58ckxk8rn350gp4chfscmgv6pq1spk3n'';
    };
    sprockets_2_12_1 = {
      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.12.1'';
      requiredGems = [ g.hike_1_2_3 g.multi_json_1_10_1 g.rack_1_5_2 g.tilt_1_4_1 ];
      sha256 = ''0fi5f32i3bj739qb0zn050k5jjkfqzkn8fjz5dfjwhmh9hl5pb1y'';
    };
    sprockets_rails_2_1_3 = {
      basename = ''sprockets_rails'';
      meta = {
        description = ''Sprockets Rails integration'';
        homepage = ''https://github.com/rails/sprockets-rails'';
      };
      name = ''sprockets-rails-2.1.3'';
      requiredGems = [ g.sprockets_2_12_1 g.actionpack_4_1_5 g.activesupport_4_1_5 ];
      sha256 = ''12kdy9vjn3ygrxhn9jxxx0rvsq601vayrkgbr3rqcpyhqhl4s4wy'';
    };
    syslog_protocol_0_9_2 = {
      basename = ''syslog_protocol'';
      meta = {
        description = ''Syslog protocol parser and generator'';
        homepage = ''https://github.com/eric/syslog_protocol'';
        longDescription = ''Syslog protocol parser and generator'';
      };
      name = ''syslog_protocol-0.9.2'';
      requiredGems = [  ];
      sha256 = ''1yb2cmbyj0zmb2yhkgnmghcngrkhcxs4g1svcmgfj90l2hs23nmc'';
    };
    systemu_2_6_4 = {
      basename = ''systemu'';
      meta = {
        description = ''systemu'';
        homepage = ''https://github.com/ahoward/systemu'';
        longDescription = ''universal capture of stdout and stderr and handling of child process pid for windows, *nix, etc.'';
      };
      name = ''systemu-2.6.4'';
      requiredGems = [  ];
      sha256 = ''16k94azpsy1r958r6ysk4ksnpp54rqmh5hyamad9kwc3lk83i32z'';
    };
    taskjuggler_3_5_0 = {
      basename = ''taskjuggler'';
      meta = {
        description = ''A Project Management Software'';
        homepage = ''http://www.taskjuggler.org'';
        longDescription = ''TaskJuggler is a modern and powerful, Free and Open Source Software project
management tool. Its new approach to project planing and tracking is more
flexible and superior to the commonly used Gantt chart editing tools.

TaskJuggler is project management software for serious project managers. It
covers the complete spectrum of project management tasks from the first idea
to the completion of the project. It assists you during project scoping,
resource assignment, cost and revenue planing, risk and communication
management.
'';
      };
      name = ''taskjuggler-3.5.0'';
      requiredGems = [ g.mail_2_6_1 g.term_ansicolor_1_3_0 ];
      sha256 = ''0r84rlc7a6w7p9nc9mgycbs5h0hq0kzscjq7zj3296xyf0afiwj2'';
    };
    term_ansicolor_1_3_0 = {
      basename = ''term_ansicolor'';
      meta = {
        description = ''Ruby library that colors strings using ANSI escape sequences'';
        homepage = ''http://flori.github.com/term-ansicolor'';
        longDescription = ''This library uses ANSI escape sequences to control the attributes of terminal output'';
      };
      name = ''term-ansicolor-1.3.0'';
      requiredGems = [ g.tins_1_3_2 ];
      sha256 = ''1a2gw7gmpmx57sdpyhjwl0zn4bqp7jyjz7aslpvvphd075layp4b'';
    };
    terminal_notifier_1_6_1 = {
      basename = ''terminal_notifier'';
      meta = {
        description = ''Send User Notifications on Mac OS X 10.8 or higher.'';
        homepage = ''https://github.com/alloy/terminal-notifier'';
      };
      name = ''terminal-notifier-1.6.1'';
      requiredGems = [  ];
      sha256 = ''0j14sblviiypzc9vb508ldd78winba4vhnm9nhg3zpq07p3528g7'';
    };
    text_1_3_0 = {
      basename = ''text'';
      meta = {
        description = ''A collection of text algorithms'';
        homepage = ''http://github.com/threedaymonk/text'';
        longDescription = ''A collection of text algorithms: Levenshtein, Soundex, Metaphone, Double Metaphone, Porter Stemming'';
      };
      name = ''text-1.3.0'';
      requiredGems = [  ];
      sha256 = ''1bfn0rm2a7gpsxplx3dii3a7q16hi7idsqp54fh92b3j9sqgidj7'';
    };
    thin_1_6_2 = {
      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.6.2'';
      requiredGems = [ g.rack_1_5_2 g.eventmachine_1_0_3 g.daemons_1_1_9 ];
      sha256 = ''0v90rnnai8sc40c02dxj9aawj2mi1mhjnmi4ws0rg4yrkc6fxvmq'';
    };
    thor_0_19_1 = {
      basename = ''thor'';
      meta = {
        description = ''Thor is a toolkit for building powerful command-line interfaces.'';
        homepage = ''http://whatisthor.com/'';
        longDescription = ''Thor is a toolkit for building powerful command-line interfaces.'';
      };
      name = ''thor-0.19.1'';
      requiredGems = [  ];
      sha256 = ''08p5gx18yrbnwc6xc0mxvsfaxzgy2y9i78xq7ds0qmdm67q39y4z'';
    };
    thread_safe_0_3_4 = {
      basename = ''thread_safe'';
      meta = {
        description = ''A collection of data structures and utilities to make thread-safe programming in Ruby easier'';
        homepage = ''https://github.com/headius/thread_safe'';
        longDescription = ''Thread-safe collections and utilities for Ruby'';
      };
      name = ''thread_safe-0.3.4'';
      requiredGems = [  ];
      sha256 = ''1cil2zcdzqkyr8zrwhlg7gywryg36j4mxlxw0h0x0j0wjym5nc8n'';
    };
    tilt_1_4_1 = {
      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.4.1'';
      requiredGems = [  ];
      sha256 = ''00sr3yy7sbqaq7cb2d2kpycajxqf1b1wr1yy33z4bnzmqii0b0ir'';
    };
    tins_0_13_2 = {
      basename = ''tins'';
      meta = {
        description = ''Useful stuff.'';
        homepage = ''http://flori.github.com/tins'';
        longDescription = ''All the stuff that isn't good/big enough for a real library.'';
      };
      name = ''tins-0.13.2'';
      requiredGems = [  ];
      sha256 = ''1ygkm4ava7x6ap61qz6pn79193g6g29248fa04mwknsz6acfjs2y'';
    };
    tins_1_3_2 = {
      basename = ''tins'';
      meta = {
        description = ''Useful stuff.'';
        homepage = ''http://flori.github.com/tins'';
        longDescription = ''All the stuff that isn't good/big enough for a real library.'';
      };
      name = ''tins-1.3.2'';
      requiredGems = [  ];
      sha256 = ''1i27zj1bhmgq19f3i5i08njprfnlv3yi5frm8ax6w0b342p6v8ly'';
    };
    travis_1_7_1 = {
      basename = ''travis'';
      meta = {
        description = ''Travis CI client'';
        homepage = ''https://github.com/travis-ci/travis.rb'';
        longDescription = ''CLI and Ruby client library for Travis CI'';
      };
      name = ''travis-1.7.1'';
      requiredGems = [ g.faraday_0_9_0 g.faraday_middleware_0_9_1 g.highline_1_6_21 g.backports_3_6_0 g.gh_0_13_2 g.launchy_2_4_2 g.pry_0_9_12_6 g.typhoeus_0_6_9 g.pusher_client_0_6_0 g.addressable_2_3_6 ];
      sha256 = ''1h0xajfzkz7pdrbhs2650nl5www8qfmgazmmmw0bcr3dai5kimdf'';
    };
    treetop_1_4_15 = {
      basename = ''treetop'';
      meta = {
        description = ''A Ruby-based text parsing and interpretation DSL'';
        homepage = ''https://github.com/cjheath/treetop'';
      };
      name = ''treetop-1.4.15'';
      requiredGems = [ g.polyglot_0_3_5 g.polyglot_0_3_5 ];
      sha256 = ''1zqj5y0mvfvyz11nhsb4d5ch0i0rfcyj64qx19mw4qhg3hh8z9pz'';
    };
    trollop_2_0 = {
      basename = ''trollop'';
      meta = {
        description = ''Trollop is a commandline option parser for Ruby that just gets out of your way.'';
        homepage = ''http://trollop.rubyforge.org'';
        longDescription = ''Trollop is a commandline option parser for Ruby that just
gets out of your way. One line of code per option is all you need to write.
For that, you get a nice automatically-generated help page, robust option
parsing, command subcompletion, and sensible defaults for everything you don't
specify.'';
      };
      name = ''trollop-2.0'';
      requiredGems = [  ];
      sha256 = ''0iz5k7ax7a5jm9x6p81k6f4mgp48wxxb0j55ypnwxnznih8fsghz'';
    };
    typhoeus_0_6_9 = {
      basename = ''typhoeus'';
      meta = {
        description = ''Parallel HTTP library on top of libcurl multi.'';
        homepage = ''https://github.com/typhoeus/typhoeus'';
        longDescription = ''Like a modern code version of the mythical beast with 100 serpent heads, Typhoeus runs HTTP requests in parallel while cleanly encapsulating handling logic.'';
      };
      name = ''typhoeus-0.6.9'';
      requiredGems = [ g.ethon_0_7_1 ];
      sha256 = ''1j4l2zwx821hzsfqskcq47xpk6b7yzl30mhzmdrfrsrhsigmayar'';
    };
    tzinfo_1_2_2 = {
      basename = ''tzinfo'';
      meta = {
        description = ''Daylight savings aware timezone library'';
        homepage = ''http://tzinfo.github.io'';
        longDescription = ''TZInfo provides daylight savings aware transformations between times in different time zones.'';
      };
      name = ''tzinfo-1.2.2'';
      requiredGems = [ g.thread_safe_0_3_4 ];
      sha256 = ''1c01p3kg6xvy1cgjnzdfq45fggbwish8krd0h864jvbpybyx7cgx'';
    };
    unf_0_1_4 = {
      basename = ''unf'';
      meta = {
        description = ''A wrapper library to bring Unicode Normalization Form support to Ruby/JRuby'';
        homepage = ''https://github.com/knu/ruby-unf'';
        longDescription = ''This is a wrapper library to bring Unicode Normalization Form support
to Ruby/JRuby.
'';
      };
      name = ''unf-0.1.4'';
      requiredGems = [ g.unf_ext_0_0_6 ];
      sha256 = ''0bh2cf73i2ffh4fcpdn9ir4mhq8zi50ik0zqa1braahzadx536a9'';
    };
    unf_ext_0_0_6 = {
      basename = ''unf_ext'';
      meta = {
        description = ''Unicode Normalization Form support library for CRuby'';
        homepage = ''https://github.com/knu/ruby-unf_ext'';
        longDescription = ''Unicode Normalization Form support library for CRuby'';
      };
      name = ''unf_ext-0.0.6'';
      requiredGems = [  ];
      sha256 = ''07zbmkzcid6pzdqgla3456ipfdka7j1v4hsx1iaa8rbnllqbmkdg'';
    };
    uuid_2_3_7 = {
      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.7'';
      requiredGems = [ g.macaddr_1_7_1 ];
      sha256 = ''04q10an3v40zwjihvdwm23fw6vl39fbkhdiwfw78a51ym9airnlp'';
    };
    webrick_1_3_1 = {
      basename = ''webrick'';
      meta = {
        description = ''WEBrick is an HTTP server toolkit that can be configured as an HTTPS server,'';
        homepage = ''http://github.com/nahi/webrick'';
      };
      name = ''webrick-1.3.1'';
      requiredGems = [  ];
      sha256 = ''0s42mxihcl2bx0h9q0v2syl70qndydfkl39a06h9il17p895ya8g'';
    };
    webrobots_0_1_1 = {
      basename = ''webrobots'';
      meta = {
        description = ''A Ruby library to help write robots.txt compliant web robots'';
        homepage = ''https://github.com/knu/webrobots'';
        longDescription = ''This library helps write robots.txt compliant web robots in Ruby.
'';
      };
      name = ''webrobots-0.1.1'';
      requiredGems = [  ];
      sha256 = ''1jlnhhpa1mkrgsmihs2qx13z3n6xhswjnlk5a2ypyplw2id5x32n'';
    };
    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'';
    };
    websocket_1_2_0 = {
      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.2.0'';
      requiredGems = [  ];
      sha256 = ''17q3fsqwa44cali3x852jzjpzgcvvly0n8gszmkaqx520lb9r5l4'';
    };
    xapian_full_1_2_3 = {
      basename = ''xapian_full'';
      meta = {
        description = ''xapian-core + Ruby xapian-bindings'';
        longDescription = ''Xapian bindings for Ruby without dependency on system Xapian library'';
      };
      name = ''xapian-full-1.2.3'';
      requiredGems = [  ];
      sha256 = ''02z0wsir38jsp5d6sqrkgv5prk8s6sdf6g2h718j2374kpnkyrxv'';
    };
    xapian_ruby_1_2_17 = {
      basename = ''xapian_ruby'';
      meta = {
        description = ''xapian libraries and ruby bindings'';
        homepage = ''https://github.com/garaio/xapian-ruby'';
      };
      name = ''xapian-ruby-1.2.17'';
      requiredGems = [  ];
      sha256 = ''1vhqykr0b877pb8x5n3v4fb4znm92mqhijinss7mvqzfimwfbxfg'';
    };
    xml_simple_1_1_2 = {
      basename = ''xml_simple'';
      meta = {
        description = ''A simple API for XML processing.'';
        homepage = ''https://github.com/maik/xml-simple'';
      };
      name = ''xml-simple-1.1.2'';
      requiredGems = [  ];
      sha256 = ''0ni8cbkj7l2k5pc4fs2jzp1ymxy4xqa2jc681l4y9iy9chrayddb'';
    };
  };
}