gollum: 5.3.3 -> 6.0.1

Changelog: https://github.com/gollum/gollum/releases
This commit is contained in:
Kerstin Humm 2024-07-29 12:33:09 +02:00
parent 6921160271
commit d6b9fb9ba3
No known key found for this signature in database
GPG Key ID: 40293358C7B9326B
4 changed files with 138 additions and 177 deletions

View File

@ -290,6 +290,8 @@
- `security.pam.u2f` now follows RFC42. - `security.pam.u2f` now follows RFC42.
All module options are now settable through the freeform `.settings`. All module options are now settable through the freeform `.settings`.
- Gollum was upgraded to major version 6. Read their [migration notes](https://github.com/gollum/gollum/wiki/6.0-Release-Notes).
- The hooks `yarnConfigHook` and `yarnBuildHook` were added. These should replace `yarn2nix.mkYarnPackage` and other `yarn2nix` related tools. The motivation to get rid of `yarn2nix` tools is the fact that they are too complex and hard to maintain, and they rely upon too much Nix evaluation which is problematic if import-from-derivation is not allowed (see more details at [#296856](https://github.com/NixOS/nixpkgs/issues/296856). The transition from `mkYarnPackage` to `yarn{Config,Build}Hook` is tracked at [#324246](https://github.com/NixOS/nixpkgs/issues/324246). - The hooks `yarnConfigHook` and `yarnBuildHook` were added. These should replace `yarn2nix.mkYarnPackage` and other `yarn2nix` related tools. The motivation to get rid of `yarn2nix` tools is the fact that they are too complex and hard to maintain, and they rely upon too much Nix evaluation which is problematic if import-from-derivation is not allowed (see more details at [#296856](https://github.com/NixOS/nixpkgs/issues/296856). The transition from `mkYarnPackage` to `yarn{Config,Build}Hook` is tracked at [#324246](https://github.com/NixOS/nixpkgs/issues/324246).
- Cinnamon has been updated to 6.2. - Cinnamon has been updated to 6.2.

View File

@ -7,6 +7,13 @@ let
in in
{ {
imports = [
(mkRemovedOptionModule
[ "services" "gollum" "mathjax" ]
"MathJax rendering might be discontinued in the future, use services.gollum.math instead to enable KaTeX rendering or file a PR if you really need Mathjax"
)
];
options.services.gollum = { options.services.gollum = {
enable = mkEnableOption "Gollum, a git-powered wiki service"; enable = mkEnableOption "Gollum, a git-powered wiki service";
@ -28,10 +35,10 @@ in
description = "Content of the configuration file"; description = "Content of the configuration file";
}; };
mathjax = mkOption { math = mkOption {
type = types.bool; type = types.bool;
default = false; default = false;
description = "Enable support for math rendering using MathJax"; description = "Enable support for math rendering using KaTeX";
}; };
allowUploads = mkOption { allowUploads = mkOption {
@ -134,7 +141,7 @@ in
--host ${cfg.address} \ --host ${cfg.address} \
--config ${pkgs.writeText "gollum-config.rb" cfg.extraConfig} \ --config ${pkgs.writeText "gollum-config.rb" cfg.extraConfig} \
--ref ${cfg.branch} \ --ref ${cfg.branch} \
${optionalString cfg.mathjax "--mathjax"} \ ${optionalString cfg.math "--math"} \
${optionalString cfg.emoji "--emoji"} \ ${optionalString cfg.emoji "--emoji"} \
${optionalString cfg.h1-title "--h1-title"} \ ${optionalString cfg.h1-title "--h1-title"} \
${optionalString cfg.no-edit "--no-edit"} \ ${optionalString cfg.no-edit "--no-edit"} \

View File

@ -2,51 +2,48 @@ GEM
remote: https://rubygems.org/ remote: https://rubygems.org/
specs: specs:
RedCloth (4.3.4) RedCloth (4.3.4)
asciidoctor (2.0.22) asciidoctor (2.0.23)
base64 (0.2.0) base64 (0.2.0)
builder (3.2.4) builder (3.3.0)
concurrent-ruby (1.2.3) concurrent-ruby (1.3.3)
crass (1.0.6) crass (1.0.6)
creole (0.5.0) creole (0.5.0)
execjs (2.9.1)
expression_parser (0.9.0) expression_parser (0.9.0)
ffi (1.16.3)
gemojione (4.3.3) gemojione (4.3.3)
json json
github-markup (4.0.2) github-markup (4.0.2)
gollum (5.3.3) gollum (6.0.1)
gemojione (~> 4.1) gemojione (~> 4.1)
gollum-lib (>= 5.2.3, < 6.0) gollum-lib (~> 6.0)
i18n (~> 1.8) i18n (~> 1.8)
kramdown (~> 2.3) kramdown (~> 2.3)
kramdown-parser-gfm (~> 1.1.0) kramdown-parser-gfm (~> 1.1.0)
mustache-sinatra (~> 2.0) mustache-sinatra (~> 2.0)
octicons (~> 12.0) octicons (~> 19.0)
rack (>= 3.0)
rackup (~> 2.1)
rdoc (~> 6) rdoc (~> 6)
rss (~> 0.2.9) rss (~> 0.3)
sass (~> 3.5) sinatra (~> 4.0)
sinatra (~> 2.0) sinatra-contrib (~> 4.0)
sinatra-contrib (~> 2.0) sprockets (~> 4.1)
sprockets (~> 3.7)
sprockets-helpers (~> 1.2) sprockets-helpers (~> 1.2)
therubyrhino (~> 2.1.0) therubyrhino (~> 2.1.0)
uglifier (~> 4.2)
useragent (~> 0.16.2) useragent (~> 0.16.2)
webrick (~> 1.7) webrick (~> 1.7)
gollum-lib (5.2.4) gollum-lib (6.0)
gemojione (~> 4.1) gemojione (~> 4.1)
github-markup (~> 4.0) github-markup (~> 4.0)
gollum-rugged_adapter (~> 2.0) gollum-rugged_adapter (~> 3.0)
loofah (~> 2.3) loofah (~> 2.3)
nokogiri (~> 1.8) nokogiri (~> 1.8)
octicons (~> 12.0)
rouge (~> 3.1) rouge (~> 3.1)
twitter-text (= 1.14.7) twitter-text (= 1.14.7)
gollum-rugged_adapter (2.1.0) gollum-rugged_adapter (3.0)
mime-types (~> 3.4) mime-types (~> 3.4)
rugged (~> 1.5) rugged (~> 1.5)
htmlentities (4.3.4) htmlentities (4.3.4)
i18n (1.14.4) i18n (1.14.5)
concurrent-ruby (~> 1.0) concurrent-ruby (~> 1.0)
json (2.7.2) json (2.7.2)
kramdown (2.4.0) kramdown (2.4.0)
@ -58,70 +55,67 @@ GEM
nokogiri (>= 1.12.0) nokogiri (>= 1.12.0)
mime-types (3.5.2) mime-types (3.5.2)
mime-types-data (~> 3.2015) mime-types-data (~> 3.2015)
mime-types-data (3.2024.0305) mime-types-data (3.2024.0702)
mini_portile2 (2.8.6) mini_portile2 (2.8.7)
multi_json (1.15.0) multi_json (1.15.0)
mustache (1.1.1) mustache (1.1.1)
mustache-sinatra (2.0.0) mustache-sinatra (2.0.0)
mustache (~> 1.0) mustache (~> 1.0)
mustermann (2.0.2) mustermann (3.0.0)
ruby2_keywords (~> 0.0.1) ruby2_keywords (~> 0.0.1)
nokogiri (1.16.4) nokogiri (1.16.7)
mini_portile2 (~> 2.8.2) mini_portile2 (~> 2.8.2)
racc (~> 1.4) racc (~> 1.4)
octicons (12.1.0) octicons (19.11.0)
nokogiri (>= 1.6.3.1)
org-ruby (0.9.12) org-ruby (0.9.12)
rubypants (~> 0.2) rubypants (~> 0.2)
psych (5.1.2) psych (5.1.2)
stringio stringio
racc (1.7.3) racc (1.8.0)
rack (2.2.9) rack (3.1.7)
rack-protection (2.2.4) rack-protection (4.0.0)
rack base64 (>= 0.1.0)
rb-fsevent (0.11.2) rack (>= 3.0.0, < 4)
rb-inotify (0.10.1) rack-session (2.0.0)
ffi (~> 1.0) rack (>= 3.0.0)
rdoc (6.6.3.1) rackup (2.1.0)
rack (>= 3)
webrick (~> 1.8)
rdoc (6.7.0)
psych (>= 4.0.0) psych (>= 4.0.0)
rexml (3.2.6) rexml (3.3.2)
strscan
rouge (3.30.0) rouge (3.30.0)
rss (0.2.9) rss (0.3.0)
rexml rexml
ruby2_keywords (0.0.5) ruby2_keywords (0.0.5)
rubypants (0.7.1) rubypants (0.7.1)
rugged (1.7.2) rugged (1.7.2)
sass (3.7.4) sinatra (4.0.0)
sass-listen (~> 4.0.0) mustermann (~> 3.0)
sass-listen (4.0.0) rack (>= 3.0.0, < 4)
rb-fsevent (~> 0.9, >= 0.9.4) rack-protection (= 4.0.0)
rb-inotify (~> 0.9, >= 0.9.7) rack-session (>= 2.0.0, < 3)
sinatra (2.2.4)
mustermann (~> 2.0)
rack (~> 2.2)
rack-protection (= 2.2.4)
tilt (~> 2.0) tilt (~> 2.0)
sinatra-contrib (2.2.4) sinatra-contrib (4.0.0)
multi_json multi_json (>= 0.0.2)
mustermann (~> 2.0) mustermann (~> 3.0)
rack-protection (= 2.2.4) rack-protection (= 4.0.0)
sinatra (= 2.2.4) sinatra (= 4.0.0)
tilt (~> 2.0) tilt (~> 2.0)
sprockets (3.7.3) sprockets (4.2.1)
base64
concurrent-ruby (~> 1.0) concurrent-ruby (~> 1.0)
rack (> 1, < 3) rack (>= 2.2.4, < 4)
sprockets-helpers (1.4.0) sprockets-helpers (1.4.0)
sprockets (>= 2.2) sprockets (>= 2.2)
stringio (3.1.0) stringio (3.1.1)
strscan (3.1.0)
therubyrhino (2.1.2) therubyrhino (2.1.2)
therubyrhino_jar (>= 1.7.4, < 1.7.9) therubyrhino_jar (>= 1.7.4, < 1.7.9)
therubyrhino_jar (1.7.8) therubyrhino_jar (1.7.8)
tilt (2.3.0) tilt (2.4.0)
twitter-text (1.14.7) twitter-text (1.14.7)
unf (~> 0.1.0) unf (~> 0.1.0)
uglifier (4.2.0)
execjs (>= 0.3.0, < 3)
unf (0.1.4) unf (0.1.4)
unf_ext unf_ext
unf_ext (0.0.9.1) unf_ext (0.0.9.1)
@ -146,4 +140,4 @@ DEPENDENCIES
wikicloth wikicloth
BUNDLED WITH BUNDLED WITH
2.5.7 2.5.16

View File

@ -4,10 +4,10 @@
platforms = []; platforms = [];
source = { source = {
remotes = ["https://rubygems.org"]; remotes = ["https://rubygems.org"];
sha256 = "1mnan6dxw4aqii9kcmp1s3sc91jiwaqkdpsg6g01fdisb6xz3n56"; sha256 = "1wyxgwmnz9bw377r3lba26b090hbsq9qnbw8575a1prpy83qh82j";
type = "gem"; type = "gem";
}; };
version = "2.0.22"; version = "2.0.23";
}; };
base64 = { base64 = {
groups = ["default"]; groups = ["default"];
@ -24,20 +24,20 @@
platforms = []; platforms = [];
source = { source = {
remotes = ["https://rubygems.org"]; remotes = ["https://rubygems.org"];
sha256 = "045wzckxpwcqzrjr353cxnyaxgf0qg22jh00dcx7z38cys5g1jlr"; sha256 = "0pw3r2lyagsxkm71bf44v5b74f7l9r7di22brbyji9fwz791hya9";
type = "gem"; type = "gem";
}; };
version = "3.2.4"; version = "3.3.0";
}; };
concurrent-ruby = { concurrent-ruby = {
groups = ["default"]; groups = ["default"];
platforms = []; platforms = [];
source = { source = {
remotes = ["https://rubygems.org"]; remotes = ["https://rubygems.org"];
sha256 = "1qh1b14jwbbj242klkyz5fc7npd4j0mvndz62gajhvl1l3wd7zc2"; sha256 = "0skwdasxq7mnlcccn6aqabl7n9r3jd7k19ryzlzzip64cn4x572g";
type = "gem"; type = "gem";
}; };
version = "1.2.3"; version = "1.3.3";
}; };
crass = { crass = {
groups = ["default"]; groups = ["default"];
@ -59,16 +59,6 @@
}; };
version = "0.5.0"; version = "0.5.0";
}; };
execjs = {
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "1yywajqlpjhrj1m43s3lfg3i4lkb6pxwccmwps7qw37ndmphdzg8";
type = "gem";
};
version = "2.9.1";
};
expression_parser = { expression_parser = {
groups = ["default"]; groups = ["default"];
platforms = []; platforms = [];
@ -79,16 +69,6 @@
}; };
version = "0.9.0"; version = "0.9.0";
}; };
ffi = {
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "1yvii03hcgqj30maavddqamqy50h7y6xcn2wcyq72wn823zl4ckd";
type = "gem";
};
version = "1.16.3";
};
gemojione = { gemojione = {
dependencies = ["json"]; dependencies = ["json"];
groups = ["default"]; groups = ["default"];
@ -111,26 +91,26 @@
version = "4.0.2"; version = "4.0.2";
}; };
gollum = { gollum = {
dependencies = ["gemojione" "gollum-lib" "i18n" "kramdown" "kramdown-parser-gfm" "mustache-sinatra" "octicons" "rdoc" "rss" "sass" "sinatra" "sinatra-contrib" "sprockets" "sprockets-helpers" "therubyrhino" "uglifier" "useragent" "webrick"]; dependencies = ["gemojione" "gollum-lib" "i18n" "kramdown" "kramdown-parser-gfm" "mustache-sinatra" "octicons" "rack" "rackup" "rdoc" "rss" "sinatra" "sinatra-contrib" "sprockets" "sprockets-helpers" "therubyrhino" "useragent" "webrick"];
groups = ["default"]; groups = ["default"];
platforms = []; platforms = [];
source = { source = {
remotes = ["https://rubygems.org"]; remotes = ["https://rubygems.org"];
sha256 = "0k94yba33ccvx3h7vl3d4jkx8j8y45a7qy3angf8094b0hy2p1fi"; sha256 = "01gk8zb1mfr7ypspbg765fn3m6rdh0b6jpyxfninabl9dzazyvpi";
type = "gem"; type = "gem";
}; };
version = "5.3.3"; version = "6.0.1";
}; };
gollum-lib = { gollum-lib = {
dependencies = ["gemojione" "github-markup" "gollum-rugged_adapter" "loofah" "nokogiri" "octicons" "rouge" "twitter-text"]; dependencies = ["gemojione" "github-markup" "gollum-rugged_adapter" "loofah" "nokogiri" "rouge" "twitter-text"];
groups = ["default"]; groups = ["default"];
platforms = []; platforms = [];
source = { source = {
remotes = ["https://rubygems.org"]; remotes = ["https://rubygems.org"];
sha256 = "15nkslf8vm4gr8wbicm5xwsmgqy22zy3gb6pgdzdm78vyqva055d"; sha256 = "1vgvdmz5rh3ciww95llwax7pz93n4iljsz2q5f2hhynx6csvhriw";
type = "gem"; type = "gem";
}; };
version = "5.2.4"; version = "6.0";
}; };
gollum-rugged_adapter = { gollum-rugged_adapter = {
dependencies = ["mime-types" "rugged"]; dependencies = ["mime-types" "rugged"];
@ -138,10 +118,10 @@
platforms = []; platforms = [];
source = { source = {
remotes = ["https://rubygems.org"]; remotes = ["https://rubygems.org"];
sha256 = "05v24lpkssn1k07n28bw4yh7w1ygsv4cfwz046jn9lmrh3v8q4d1"; sha256 = "00l1fmgjv3sq97c5lw7qcrf37v970yz89dm6b73ah2y4qn8zd7qk";
type = "gem"; type = "gem";
}; };
version = "2.1.0"; version = "3.0";
}; };
htmlentities = { htmlentities = {
groups = ["default"]; groups = ["default"];
@ -159,10 +139,10 @@
platforms = []; platforms = [];
source = { source = {
remotes = ["https://rubygems.org"]; remotes = ["https://rubygems.org"];
sha256 = "0lbm33fpb3w06wd2231sg58dwlwgjsvym93m548ajvl6s3mfvpn7"; sha256 = "1ffix518y7976qih9k1lgnc17i3v6yrlh0a3mckpxdb4wc2vrp16";
type = "gem"; type = "gem";
}; };
version = "1.14.4"; version = "1.14.5";
}; };
json = { json = {
groups = ["default"]; groups = ["default"];
@ -223,20 +203,20 @@
platforms = []; platforms = [];
source = { source = {
remotes = ["https://rubygems.org"]; remotes = ["https://rubygems.org"];
sha256 = "00x7w5xqsj9m33v3vkmy23wipkkysafksib53ypzn27p5g81w455"; sha256 = "104r7glqjal9fgvnv49wjzp4ssai9hmyn3npkari51s2ska3jnr0";
type = "gem"; type = "gem";
}; };
version = "3.2024.0305"; version = "3.2024.0702";
}; };
mini_portile2 = { mini_portile2 = {
groups = ["default"]; groups = ["default"];
platforms = []; platforms = [];
source = { source = {
remotes = ["https://rubygems.org"]; remotes = ["https://rubygems.org"];
sha256 = "149r94xi6b3jbp6bv72f8383b95ndn0p5sxnq11gs1j9jadv0ajf"; sha256 = "1q1f2sdw3y3y9mnym9dhjgsjr72sq975cfg5c4yx7gwv8nmzbvhk";
type = "gem"; type = "gem";
}; };
version = "2.8.6"; version = "2.8.7";
}; };
multi_json = { multi_json = {
groups = ["default"]; groups = ["default"];
@ -275,10 +255,10 @@
platforms = []; platforms = [];
source = { source = {
remotes = ["https://rubygems.org"]; remotes = ["https://rubygems.org"];
sha256 = "0m70qz27mlv2rhk4j1li6pw797gmiwwqg02vcgxcxr1rq2v53rnb"; sha256 = "0rwbq20s2gdh8dljjsgj5s6wqqfmnbclhvv2c2608brv7jm6jdbd";
type = "gem"; type = "gem";
}; };
version = "2.0.2"; version = "3.0.0";
}; };
nokogiri = { nokogiri = {
dependencies = ["mini_portile2" "racc"]; dependencies = ["mini_portile2" "racc"];
@ -286,21 +266,20 @@
platforms = []; platforms = [];
source = { source = {
remotes = ["https://rubygems.org"]; remotes = ["https://rubygems.org"];
sha256 = "0i8g0i370jhn2sclml0bg9qlrgf4csi6sy7czbhx8kjbl71idhb2"; sha256 = "15gysw8rassqgdq3kwgl4mhqmrgh7nk2qvrcqp4ijyqazgywn6gq";
type = "gem"; type = "gem";
}; };
version = "1.16.4"; version = "1.16.7";
}; };
octicons = { octicons = {
dependencies = ["nokogiri"];
groups = ["default"]; groups = ["default"];
platforms = []; platforms = [];
source = { source = {
remotes = ["https://rubygems.org"]; remotes = ["https://rubygems.org"];
sha256 = "0kpy7h7pffjqb2xbmld7nwnb2x6rll3yz5ccr7nrqnrk2d3cmpmn"; sha256 = "07nb9i9yl3xk6dr7aacxx3dfrrslrw9cn9a55gn9rrhgckb3pymy";
type = "gem"; type = "gem";
}; };
version = "12.1.0"; version = "19.11.0";
}; };
org-ruby = { org-ruby = {
dependencies = ["rubypants"]; dependencies = ["rubypants"];
@ -329,52 +308,53 @@
platforms = []; platforms = [];
source = { source = {
remotes = ["https://rubygems.org"]; remotes = ["https://rubygems.org"];
sha256 = "01b9662zd2x9bp4rdjfid07h09zxj7kvn7f5fghbqhzc625ap1dp"; sha256 = "021s7maw0c4d9a6s07vbmllrzqsj2sgmrwimlh8ffkvwqdjrld09";
type = "gem"; type = "gem";
}; };
version = "1.7.3"; version = "1.8.0";
}; };
rack = { rack = {
groups = ["default"]; groups = ["default"];
platforms = []; platforms = [];
source = { source = {
remotes = ["https://rubygems.org"]; remotes = ["https://rubygems.org"];
sha256 = "0hj0rkw2z9r1lcg2wlrcld2n3phwrcgqcp7qd1g9a7hwgalh2qzx"; sha256 = "12z55b90vvr4sh93az2yfr3fg91jivsag8lcg0k360d99vdq568f";
type = "gem"; type = "gem";
}; };
version = "2.2.9"; version = "3.1.7";
}; };
rack-protection = { rack-protection = {
dependencies = ["base64" "rack"];
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "1xmvcxgm1jq92hqxm119gfk95wzl0d46nb2c2c6qqsm4ra2n3nyh";
type = "gem";
};
version = "4.0.0";
};
rack-session = {
dependencies = ["rack"]; dependencies = ["rack"];
groups = ["default"]; groups = ["default"];
platforms = []; platforms = [];
source = { source = {
remotes = ["https://rubygems.org"]; remotes = ["https://rubygems.org"];
sha256 = "1d6irsigm0i4ig1m47c94kixi3wb8jnxwvwkl8qxvyngmb73srl2"; sha256 = "10afdpmy9kh0qva96slcyc59j4gkk9av8ilh58cnj0qq7q3b416v";
type = "gem"; type = "gem";
}; };
version = "2.2.4"; version = "2.0.0";
}; };
rb-fsevent = { rackup = {
dependencies = ["rack" "webrick"];
groups = ["default"]; groups = ["default"];
platforms = []; platforms = [];
source = { source = {
remotes = ["https://rubygems.org"]; remotes = ["https://rubygems.org"];
sha256 = "1zmf31rnpm8553lqwibvv3kkx0v7majm1f341xbxc0bk5sbhp423"; sha256 = "0kbcka30g681cqasw47pq93fxjscq7yvs5zf8lp3740rb158ijvf";
type = "gem"; type = "gem";
}; };
version = "0.11.2"; version = "2.1.0";
};
rb-inotify = {
dependencies = ["ffi"];
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "1jm76h8f8hji38z3ggf4bzi8vps6p7sagxn3ab57qc0xyga64005";
type = "gem";
};
version = "0.10.1";
}; };
rdoc = { rdoc = {
dependencies = ["psych"]; dependencies = ["psych"];
@ -382,10 +362,10 @@
platforms = []; platforms = [];
source = { source = {
remotes = ["https://rubygems.org"]; remotes = ["https://rubygems.org"];
sha256 = "0ib3cnf4yllvw070gr4bz94sbmqx3haqc5f846fsvdcs494vgxrr"; sha256 = "0ygk2zk0ky3d88v3ll7qh6xqvbvw5jin0hqdi1xkv1dhaw7myzdi";
type = "gem"; type = "gem";
}; };
version = "6.6.3.1"; version = "6.7.0";
}; };
RedCloth = { RedCloth = {
groups = ["default"]; groups = ["default"];
@ -398,14 +378,15 @@
version = "4.3.4"; version = "4.3.4";
}; };
rexml = { rexml = {
dependencies = ["strscan"];
groups = ["default"]; groups = ["default"];
platforms = []; platforms = [];
source = { source = {
remotes = ["https://rubygems.org"]; remotes = ["https://rubygems.org"];
sha256 = "05i8518ay14kjbma550mv0jm8a6di8yp5phzrd8rj44z9qnrlrp0"; sha256 = "0zr5qpa8lampaqzhdcjcvyqnrqcjl7439mqjlkjz43wdhmpnh4s5";
type = "gem"; type = "gem";
}; };
version = "3.2.6"; version = "3.3.2";
}; };
rouge = { rouge = {
groups = ["default"]; groups = ["default"];
@ -423,10 +404,10 @@
platforms = []; platforms = [];
source = { source = {
remotes = ["https://rubygems.org"]; remotes = ["https://rubygems.org"];
sha256 = "1b1zx07kr64kkpm4lssd4r1a1qyr829ppmfl85i4adcvx9mqfid0"; sha256 = "1wv27axi39hhr0nmaffdl5bdjqiafcvp9xhfgnsgfczsblja50sn";
type = "gem"; type = "gem";
}; };
version = "0.2.9"; version = "0.3.0";
}; };
ruby2_keywords = { ruby2_keywords = {
groups = ["default"]; groups = ["default"];
@ -458,60 +439,38 @@
}; };
version = "1.7.2"; version = "1.7.2";
}; };
sass = { sinatra = {
dependencies = ["sass-listen"]; dependencies = ["mustermann" "rack" "rack-protection" "rack-session" "tilt"];
groups = ["default"]; groups = ["default"];
platforms = []; platforms = [];
source = { source = {
remotes = ["https://rubygems.org"]; remotes = ["https://rubygems.org"];
sha256 = "0p95lhs0jza5l7hqci1isflxakz83xkj97lkvxl919is0lwhv2w0"; sha256 = "0za92lv4s7xhgkkm6xxf7ib0b3bsyj8drxgkrskgsb5g3mxnixjl";
type = "gem";
};
version = "3.7.4";
};
sass-listen = {
dependencies = ["rb-fsevent" "rb-inotify"];
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "0xw3q46cmahkgyldid5hwyiwacp590zj2vmswlll68ryvmvcp7df";
type = "gem"; type = "gem";
}; };
version = "4.0.0"; version = "4.0.0";
}; };
sinatra = {
dependencies = ["mustermann" "rack" "rack-protection" "tilt"];
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "0wkc079h6hzq737j4wycpnv7c38mhd0rl33pszyy7768zzvyjc9y";
type = "gem";
};
version = "2.2.4";
};
sinatra-contrib = { sinatra-contrib = {
dependencies = ["multi_json" "mustermann" "rack-protection" "sinatra" "tilt"]; dependencies = ["multi_json" "mustermann" "rack-protection" "sinatra" "tilt"];
groups = ["default"]; groups = ["default"];
platforms = []; platforms = [];
source = { source = {
remotes = ["https://rubygems.org"]; remotes = ["https://rubygems.org"];
sha256 = "0s6c1k3zzxp3xa7libvlpqaby27124rccyyxcsly04ih904cxk33"; sha256 = "0r9khg85m60w0i77jpnm2irh9m4k0ia4mlicapj8dr7s6ykqd9dh";
type = "gem"; type = "gem";
}; };
version = "2.2.4"; version = "4.0.0";
}; };
sprockets = { sprockets = {
dependencies = ["base64" "concurrent-ruby" "rack"]; dependencies = ["concurrent-ruby" "rack"];
groups = ["default"]; groups = ["default"];
platforms = []; platforms = [];
source = { source = {
remotes = ["https://rubygems.org"]; remotes = ["https://rubygems.org"];
sha256 = "0lyc6mx4yalsnxc9yp4a5xra4nz1nwwbk5634wlfncml0ll1bnnw"; sha256 = "15rzfzd9dca4v0mr0bbhsbwhygl0k9l24iqqlx0fijig5zfi66wm";
type = "gem"; type = "gem";
}; };
version = "3.7.3"; version = "4.2.1";
}; };
sprockets-helpers = { sprockets-helpers = {
dependencies = ["sprockets"]; dependencies = ["sprockets"];
@ -529,7 +488,17 @@
platforms = []; platforms = [];
source = { source = {
remotes = ["https://rubygems.org"]; remotes = ["https://rubygems.org"];
sha256 = "063psvsn1aq6digpznxfranhcpmi0sdv2jhra5g0459sw0x2dxn1"; sha256 = "07mfqb40b2wh53k33h91zva78f9zwcdnl85jiq74wnaw2wa6wiak";
type = "gem";
};
version = "3.1.1";
};
strscan = {
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "0mamrl7pxacbc79ny5hzmakc9grbjysm3yy6119ppgsg44fsif01";
type = "gem"; type = "gem";
}; };
version = "3.1.0"; version = "3.1.0";
@ -560,10 +529,10 @@
platforms = []; platforms = [];
source = { source = {
remotes = ["https://rubygems.org"]; remotes = ["https://rubygems.org"];
sha256 = "0p3l7v619hwfi781l3r7ypyv1l8hivp09r18kmkn6g11c4yr1pc2"; sha256 = "0kds7wkxmb038cwp6ravnwn8k65ixc68wpm8j5jx5bhx8ndg4x6z";
type = "gem"; type = "gem";
}; };
version = "2.3.0"; version = "2.4.0";
}; };
twitter-text = { twitter-text = {
dependencies = ["unf"]; dependencies = ["unf"];
@ -576,17 +545,6 @@
}; };
version = "1.14.7"; version = "1.14.7";
}; };
uglifier = {
dependencies = ["execjs"];
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
sha256 = "0wgh7bzy68vhv9v68061519dd8samcy8sazzz0w3k8kqpy3g4s5f";
type = "gem";
};
version = "4.2.0";
};
unf = { unf = {
dependencies = ["unf_ext"]; dependencies = ["unf_ext"];
groups = ["default"]; groups = ["default"];