jekyll: add RedCloth dependency for textile support

This allows jekyll to be used with textile markup

+13
+1
pkgs/applications/misc/jekyll/Gemfile
··· 2 2 3 3 gem 'jekyll' 4 4 gem 'rdiscount' 5 + gem 'RedCloth'
+5
pkgs/applications/misc/jekyll/Gemfile.lock
··· 1 1 GEM 2 2 remote: https://rubygems.org/ 3 3 specs: 4 + RedCloth (4.2.9) 4 5 blankslate (2.1.2.4) 5 6 celluloid (0.16.0) 6 7 timers (~> 4.0.0) ··· 68 69 ruby 69 70 70 71 DEPENDENCIES 72 + RedCloth 71 73 jekyll 72 74 rdiscount 75 + 76 + BUNDLED WITH 77 + 1.10.6
+7
pkgs/applications/misc/jekyll/gemset.nix
··· 1 1 { 2 + "RedCloth" = { 3 + version = "4.2.9"; 4 + source = { 5 + type = "gem"; 6 + sha256 = "06pahxyrckhgb7alsxwhhlx1ib2xsx33793finj01jk8i054bkxl"; 7 + }; 8 + }; 2 9 "blankslate" = { 3 10 version = "2.1.2.4"; 4 11 source = {