tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
discourse: 2.9.0.beta9 -> 2.9.0.beta10
Ryan Mulligan
3 years ago
3005b885
9a97e910
+392
-511
25 changed files
expand all
collapse all
unified
split
pkgs
servers
web-apps
discourse
action_mailer_ca_cert.patch
default.nix
plugins
discourse-assign
default.nix
discourse-calendar
Gemfile.lock
default.nix
gemset.nix
discourse-chat-integration
default.nix
discourse-data-explorer
default.nix
discourse-docs
default.nix
discourse-github
Gemfile
Gemfile.lock
default.nix
gemset.nix
discourse-ldap-auth
Gemfile.lock
default.nix
gemset.nix
discourse-migratepassword
Gemfile
Gemfile.lock
default.nix
gemset.nix
discourse-openid-connect
default.nix
discourse-solved
default.nix
rubyEnv
Gemfile
Gemfile.lock
gemset.nix
+5
-5
pkgs/servers/web-apps/discourse/action_mailer_ca_cert.patch
···
1
1
diff --git a/config/environments/production.rb b/config/environments/production.rb
2
2
-
index a523888a8d..422c2c1ee8 100644
2
2
+
index 6b73c82e9d..0cefea6fc0 100644
3
3
--- a/config/environments/production.rb
4
4
+++ b/config/environments/production.rb
5
5
-
@@ -32,6 +32,7 @@ Discourse::Application.configure do
5
5
+
@@ -32,5 +32,6 @@ Discourse::Application.configure do
6
6
user_name: GlobalSetting.smtp_user_name,
7
7
password: GlobalSetting.smtp_password,
8
8
authentication: GlobalSetting.smtp_authentication,
9
9
+ ca_file: "/etc/ssl/certs/ca-certificates.crt",
10
10
-
enable_starttls_auto: GlobalSetting.smtp_enable_start_tls
11
11
-
}
12
12
-
10
10
+
enable_starttls_auto: GlobalSetting.smtp_enable_start_tls,
11
11
+
open_timeout: GlobalSetting.smtp_open_timeout,
12
12
+
read_timeout: GlobalSetting.smtp_read_timeout
+3
-3
pkgs/servers/web-apps/discourse/default.nix
···
11
11
}@args:
12
12
13
13
let
14
14
-
version = "2.9.0.beta9";
14
14
+
version = "2.9.0.beta10";
15
15
16
16
src = fetchFromGitHub {
17
17
owner = "discourse";
18
18
repo = "discourse";
19
19
rev = "v${version}";
20
20
-
sha256 = "sha256-pavNdAbk9yuWRg++p1MCmpBMuYKDs63QbJpHrPS9oAY=";
20
20
+
sha256 = "sha256-7uMcJZolLUoJILRYbmcSDArcMP3o89ubh6XttZ7TsLg=";
21
21
};
22
22
23
23
runtimeDeps = [
···
161
161
162
162
yarnOfflineCache = fetchYarnDeps {
163
163
yarnLock = src + "/app/assets/javascripts/yarn.lock";
164
164
-
sha256 = "14d7y29460ggqcjnc9vk1q2lnxfl6ycyp8rc103g3gs2bl5sb6r0";
164
164
+
sha256 = "0s8cmy76xh4z9y932bjshmpyr04zn3yn62ld9174lks2j965qkbl";
165
165
};
166
166
167
167
assets = stdenv.mkDerivation {
+2
-2
pkgs/servers/web-apps/discourse/plugins/discourse-assign/default.nix
···
5
5
src = fetchFromGitHub {
6
6
owner = "discourse";
7
7
repo = "discourse-assign";
8
8
-
rev = "030cdc2d9c06cd2fed24fa47861b0213fd2d854e";
9
9
-
sha256 = "sha256-3JBBxgWWkCAHci+Cv69o+4JY1b70yOckE+1y5ipl5a8=";
8
8
+
rev = "c5ad176aaf60150ff44a3f4dd01920ce57975551";
9
9
+
sha256 = "sha256-AHymwpWcPlgcuJR5x3Ea+l2cuMJKXyNVBtZFJKjsNf4=";
10
10
};
11
11
meta = with lib; {
12
12
homepage = "https://github.com/discourse/discourse-docs";
+3
-3
pkgs/servers/web-apps/discourse/plugins/discourse-calendar/Gemfile.lock
···
1
1
GEM
2
2
remote: https://rubygems.org/
3
3
specs:
4
4
-
activesupport (7.0.3.1)
4
4
+
activesupport (7.0.4)
5
5
concurrent-ruby (~> 1.0, >= 1.0.2)
6
6
i18n (>= 1.6, < 2)
7
7
minitest (>= 5.1)
···
9
9
concurrent-ruby (1.1.10)
10
10
i18n (1.12.0)
11
11
concurrent-ruby (~> 1.0)
12
12
-
minitest (5.16.2)
12
12
+
minitest (5.16.3)
13
13
rrule (0.4.4)
14
14
activesupport (>= 2.3)
15
15
tzinfo (2.0.5)
···
22
22
rrule (= 0.4.4)
23
23
24
24
BUNDLED WITH
25
25
-
2.3.9
25
25
+
2.3.22
+2
-2
pkgs/servers/web-apps/discourse/plugins/discourse-calendar/default.nix
···
6
6
src = fetchFromGitHub {
7
7
owner = "discourse";
8
8
repo = "discourse-calendar";
9
9
-
rev = "3cf82dcc6c717965e1d1ff384965e2ee215402f0";
10
10
-
sha256 = "sha256-D6FP+vgCqi+wLV+gFAPTAAND3os7mcvpl2z8c5JiFxo=";
9
9
+
rev = "d0908b9b2e80087dd6638e661c3307d8d384550e";
10
10
+
sha256 = "sha256-zmoL4v3tdcPQUdLl+bcT4Kb7EDLVgJa9VVX9ofcPoHk=";
11
11
};
12
12
meta = with lib; {
13
13
homepage = "https://github.com/discourse/discourse-calendar";
+4
-4
pkgs/servers/web-apps/discourse/plugins/discourse-calendar/gemset.nix
···
5
5
platforms = [];
6
6
source = {
7
7
remotes = ["https://rubygems.org"];
8
8
-
sha256 = "15lbq28v48i6q118p02m5zs9c63y1kv2h5krb3ss6q2vyaxhnfz7";
8
8
+
sha256 = "183az13i4fsm28d0l5xhbjpmcj3l1lxzcxlx8pi8zrbd933jwqd0";
9
9
type = "gem";
10
10
};
11
11
-
version = "7.0.3.1";
11
11
+
version = "7.0.4";
12
12
};
13
13
concurrent-ruby = {
14
14
groups = ["default"];
···
36
36
platforms = [];
37
37
source = {
38
38
remotes = ["https://rubygems.org"];
39
39
-
sha256 = "14a9ign0hj3z3j4cpfplj2djaskx3skzyx4fl3x53d7saxmhrgn1";
39
39
+
sha256 = "0516ypqlx0mlcfn5xh7qppxqc3xndn1fnadxawa8wld5dkcimy30";
40
40
type = "gem";
41
41
};
42
42
-
version = "5.16.2";
42
42
+
version = "5.16.3";
43
43
};
44
44
rrule = {
45
45
dependencies = ["activesupport"];
+2
-2
pkgs/servers/web-apps/discourse/plugins/discourse-chat-integration/default.nix
···
5
5
src = fetchFromGitHub {
6
6
owner = "discourse";
7
7
repo = "discourse-chat-integration";
8
8
-
rev = "c68fde5d2bbb92cad24a35ff61586453d67264f5";
9
9
-
sha256 = "sha256-Gmy8I/MbIdicHqZjlwNDz8PdCdxptzynd1pyL4BM5z4=";
8
8
+
rev = "7bf7368520d37a2dca9c21dcffd8831d987f64f8";
9
9
+
sha256 = "sha256-f0JgiuwSKtCfr+s3D4HVVWjyE/5sixqRDsgcvBJs8Uk=";
10
10
};
11
11
meta = with lib; {
12
12
homepage = "https://github.com/discourse/discourse-chat-integration";
+2
-2
pkgs/servers/web-apps/discourse/plugins/discourse-data-explorer/default.nix
···
5
5
src = fetchFromGitHub {
6
6
owner = "discourse";
7
7
repo = "discourse-data-explorer";
8
8
-
rev = "bf56ab3559328cdf89cdd5b32ec32f41aa87017e";
9
9
-
sha256 = "sha256-JoqOmv/x9aiSXBAwXO1PSg0E/1eb19dNXxqCLOIyHvo=";
8
8
+
rev = "16bb6a946cc2014aa709aba60940a96b5452936d";
9
9
+
sha256 = "sha256-E9qGAG4XWrxqP1SPq5LYQn89sQbX8DgGxtCfEQcBFX8=";
10
10
};
11
11
meta = with lib; {
12
12
homepage = "https://github.com/discourse/discourse-data-explorer";
+2
-2
pkgs/servers/web-apps/discourse/plugins/discourse-docs/default.nix
···
5
5
src = fetchFromGitHub {
6
6
owner = "discourse";
7
7
repo = "discourse-docs";
8
8
-
rev = "13bab928c72c847c4c3f7ebb8600343b48f14a5f";
9
9
-
sha256 = "sha256-Gno+dbu8/l/cdrzJZL82DmMilZ5zJScFaQ88x8Hum0k=";
8
8
+
rev = "9cffc3e479117af1665096e16b7d5a637b112b28";
9
9
+
sha256 = "sha256-F74eFhDIdWbnCCsWsT3SrQBSS8IUPLi2N9w3h8i5++0=";
10
10
};
11
11
meta = with lib; {
12
12
homepage = "https://github.com/discourse/discourse-docs";
+2
-2
pkgs/servers/web-apps/discourse/plugins/discourse-github/Gemfile
···
3
3
source "https://rubygems.org"
4
4
5
5
# gem "rails"
6
6
-
gem 'sawyer', '0.8.2'
7
7
-
gem 'octokit', '4.22.0'
6
6
+
gem 'sawyer', '0.9.2'
7
7
+
gem 'octokit', '5.6.1'
+14
-34
pkgs/servers/web-apps/discourse/plugins/discourse-github/Gemfile.lock
···
1
1
GEM
2
2
remote: https://rubygems.org/
3
3
specs:
4
4
-
addressable (2.8.0)
5
5
-
public_suffix (>= 2.0.2, < 5.0)
6
6
-
faraday (1.10.1)
7
7
-
faraday-em_http (~> 1.0)
8
8
-
faraday-em_synchrony (~> 1.0)
9
9
-
faraday-excon (~> 1.1)
10
10
-
faraday-httpclient (~> 1.0)
11
11
-
faraday-multipart (~> 1.0)
12
12
-
faraday-net_http (~> 1.0)
13
13
-
faraday-net_http_persistent (~> 1.0)
14
14
-
faraday-patron (~> 1.0)
15
15
-
faraday-rack (~> 1.0)
16
16
-
faraday-retry (~> 1.0)
4
4
+
addressable (2.8.1)
5
5
+
public_suffix (>= 2.0.2, < 6.0)
6
6
+
faraday (2.5.2)
7
7
+
faraday-net_http (>= 2.0, < 3.1)
17
8
ruby2_keywords (>= 0.0.4)
18
18
-
faraday-em_http (1.0.0)
19
19
-
faraday-em_synchrony (1.0.0)
20
20
-
faraday-excon (1.1.0)
21
21
-
faraday-httpclient (1.0.1)
22
22
-
faraday-multipart (1.0.4)
23
23
-
multipart-post (~> 2)
24
24
-
faraday-net_http (1.0.1)
25
25
-
faraday-net_http_persistent (1.2.0)
26
26
-
faraday-patron (1.0.0)
27
27
-
faraday-rack (1.0.0)
28
28
-
faraday-retry (1.0.3)
29
29
-
multipart-post (2.2.3)
30
30
-
octokit (4.22.0)
31
31
-
faraday (>= 0.9)
32
32
-
sawyer (~> 0.8.0, >= 0.5.3)
33
33
-
public_suffix (4.0.7)
9
9
+
faraday-net_http (3.0.0)
10
10
+
octokit (5.6.1)
11
11
+
faraday (>= 1, < 3)
12
12
+
sawyer (~> 0.9)
13
13
+
public_suffix (5.0.0)
34
14
ruby2_keywords (0.0.5)
35
35
-
sawyer (0.8.2)
15
15
+
sawyer (0.9.2)
36
16
addressable (>= 2.3.5)
37
37
-
faraday (> 0.8, < 2.0)
17
17
+
faraday (>= 0.17.3, < 3)
38
18
39
19
PLATFORMS
40
20
ruby
41
21
42
22
DEPENDENCIES
43
43
-
octokit (= 4.22.0)
44
44
-
sawyer (= 0.8.2)
23
23
+
octokit (= 5.6.1)
24
24
+
sawyer (= 0.9.2)
45
25
46
26
BUNDLED WITH
47
47
-
2.3.9
27
27
+
2.3.22
+2
-2
pkgs/servers/web-apps/discourse/plugins/discourse-github/default.nix
···
6
6
src = fetchFromGitHub {
7
7
owner = "discourse";
8
8
repo = "discourse-github";
9
9
-
rev = "739bdf9ecc0bfe5256a4814fbc758168552ae069";
10
10
-
sha256 = "sha256-pD6sqvUfHUb/5J0HpgqHmYsJnrFcB1ubZR/PMU/GApU=";
9
9
+
rev = "e513628acc716c8e35611d9a31fca8badf2757e2";
10
10
+
sha256 = "sha256-K6FzV/r9i0rlOlek5AYZkwfV5diBtzBd5zLmMStcqAI=";
11
11
};
12
12
meta = with lib; {
13
13
homepage = "https://github.com/discourse/discourse-github";
+13
-114
pkgs/servers/web-apps/discourse/plugins/discourse-github/gemset.nix
···
5
5
platforms = [];
6
6
source = {
7
7
remotes = ["https://rubygems.org"];
8
8
-
sha256 = "022r3m9wdxljpbya69y2i3h9g3dhhfaqzidf95m6qjzms792jvgp";
8
8
+
sha256 = "1ypdmpdn20hxp5vwxz3zc04r5xcwqc25qszdlg41h8ghdqbllwmw";
9
9
type = "gem";
10
10
};
11
11
-
version = "2.8.0";
11
11
+
version = "2.8.1";
12
12
};
13
13
faraday = {
14
14
-
dependencies = ["faraday-em_http" "faraday-em_synchrony" "faraday-excon" "faraday-httpclient" "faraday-multipart" "faraday-net_http" "faraday-net_http_persistent" "faraday-patron" "faraday-rack" "faraday-retry" "ruby2_keywords"];
15
15
-
groups = ["default"];
16
16
-
platforms = [];
17
17
-
source = {
18
18
-
remotes = ["https://rubygems.org"];
19
19
-
sha256 = "037w5kg3y9jrwgg7izfn1pmzngy0hdhcr7slmxwqa3mdb4rx9r9q";
20
20
-
type = "gem";
21
21
-
};
22
22
-
version = "1.10.1";
23
23
-
};
24
24
-
faraday-em_http = {
25
25
-
groups = ["default"];
26
26
-
platforms = [];
27
27
-
source = {
28
28
-
remotes = ["https://rubygems.org"];
29
29
-
sha256 = "12cnqpbak4vhikrh2cdn94assh3yxza8rq2p9w2j34bqg5q4qgbs";
30
30
-
type = "gem";
31
31
-
};
32
32
-
version = "1.0.0";
33
33
-
};
34
34
-
faraday-em_synchrony = {
35
35
-
groups = ["default"];
36
36
-
platforms = [];
37
37
-
source = {
38
38
-
remotes = ["https://rubygems.org"];
39
39
-
sha256 = "1vgrbhkp83sngv6k4mii9f2s9v5lmp693hylfxp2ssfc60fas3a6";
40
40
-
type = "gem";
41
41
-
};
42
42
-
version = "1.0.0";
43
43
-
};
44
44
-
faraday-excon = {
45
45
-
groups = ["default"];
46
46
-
platforms = [];
47
47
-
source = {
48
48
-
remotes = ["https://rubygems.org"];
49
49
-
sha256 = "0h09wkb0k0bhm6dqsd47ac601qiaah8qdzjh8gvxfd376x1chmdh";
50
50
-
type = "gem";
51
51
-
};
52
52
-
version = "1.1.0";
53
53
-
};
54
54
-
faraday-httpclient = {
55
55
-
groups = ["default"];
56
56
-
platforms = [];
57
57
-
source = {
58
58
-
remotes = ["https://rubygems.org"];
59
59
-
sha256 = "0fyk0jd3ks7fdn8nv3spnwjpzx2lmxmg2gh4inz3by1zjzqg33sc";
60
60
-
type = "gem";
61
61
-
};
62
62
-
version = "1.0.1";
63
63
-
};
64
64
-
faraday-multipart = {
65
65
-
dependencies = ["multipart-post"];
14
14
+
dependencies = ["faraday-net_http" "ruby2_keywords"];
66
15
groups = ["default"];
67
16
platforms = [];
68
17
source = {
69
18
remotes = ["https://rubygems.org"];
70
70
-
sha256 = "09871c4hd7s5ws1wl4gs7js1k2wlby6v947m2bbzg43pnld044lh";
19
19
+
sha256 = "1a6q8k82vfqyzlnrs6r6d82fyz5fminc8p57mr5xkdabs0m2y3mx";
71
20
type = "gem";
72
21
};
73
73
-
version = "1.0.4";
22
22
+
version = "2.5.2";
74
23
};
75
24
faraday-net_http = {
76
25
groups = ["default"];
77
26
platforms = [];
78
27
source = {
79
28
remotes = ["https://rubygems.org"];
80
80
-
sha256 = "1fi8sda5hc54v1w3mqfl5yz09nhx35kglyx72w7b8xxvdr0cwi9j";
29
29
+
sha256 = "0yicplzlh5da8pr64286zga3my86cjsb2y9dqlzsacpw8hbkmjvw";
81
30
type = "gem";
82
31
};
83
83
-
version = "1.0.1";
84
84
-
};
85
85
-
faraday-net_http_persistent = {
86
86
-
groups = ["default"];
87
87
-
platforms = [];
88
88
-
source = {
89
89
-
remotes = ["https://rubygems.org"];
90
90
-
sha256 = "0dc36ih95qw3rlccffcb0vgxjhmipsvxhn6cw71l7ffs0f7vq30b";
91
91
-
type = "gem";
92
92
-
};
93
93
-
version = "1.2.0";
94
94
-
};
95
95
-
faraday-patron = {
96
96
-
groups = ["default"];
97
97
-
platforms = [];
98
98
-
source = {
99
99
-
remotes = ["https://rubygems.org"];
100
100
-
sha256 = "19wgsgfq0xkski1g7m96snv39la3zxz6x7nbdgiwhg5v82rxfb6w";
101
101
-
type = "gem";
102
102
-
};
103
103
-
version = "1.0.0";
104
104
-
};
105
105
-
faraday-rack = {
106
106
-
groups = ["default"];
107
107
-
platforms = [];
108
108
-
source = {
109
109
-
remotes = ["https://rubygems.org"];
110
110
-
sha256 = "1h184g4vqql5jv9s9im6igy00jp6mrah2h14py6mpf9bkabfqq7g";
111
111
-
type = "gem";
112
112
-
};
113
113
-
version = "1.0.0";
114
114
-
};
115
115
-
faraday-retry = {
116
116
-
groups = ["default"];
117
117
-
platforms = [];
118
118
-
source = {
119
119
-
remotes = ["https://rubygems.org"];
120
120
-
sha256 = "153i967yrwnswqgvnnajgwp981k9p50ys1h80yz3q94rygs59ldd";
121
121
-
type = "gem";
122
122
-
};
123
123
-
version = "1.0.3";
124
124
-
};
125
125
-
multipart-post = {
126
126
-
groups = ["default"];
127
127
-
platforms = [];
128
128
-
source = {
129
129
-
remotes = ["https://rubygems.org"];
130
130
-
sha256 = "1n0kvnrcrjn31jb97kcx3wj1f5kkjza7yygfq8rxzf3i57g7jaa6";
131
131
-
type = "gem";
132
132
-
};
133
133
-
version = "2.2.3";
32
32
+
version = "3.0.0";
134
33
};
135
34
octokit = {
136
35
dependencies = ["faraday" "sawyer"];
···
138
37
platforms = [];
139
38
source = {
140
39
remotes = ["https://rubygems.org"];
141
141
-
sha256 = "1nmdd7klyinvrrv2mggwwmc99ykaq7i379j00i37hvvaqx4giifj";
40
40
+
sha256 = "15g4kyag6gmxxq6d03472h7srm3imlsks1wg6nac7hl3mb1b5vs8";
142
41
type = "gem";
143
42
};
144
144
-
version = "4.22.0";
43
43
+
version = "5.6.1";
145
44
};
146
45
public_suffix = {
147
46
groups = ["default"];
148
47
platforms = [];
149
48
source = {
150
49
remotes = ["https://rubygems.org"];
151
151
-
sha256 = "1f3knlwfwm05sfbaihrxm4g772b79032q14c16q4b38z8bi63qcb";
50
50
+
sha256 = "0sqw1zls6227bgq38sxb2hs8nkdz4hn1zivs27mjbniswfy4zvi6";
152
51
type = "gem";
153
52
};
154
154
-
version = "4.0.7";
53
53
+
version = "5.0.0";
155
54
};
156
55
ruby2_keywords = {
157
56
groups = ["default"];
···
169
68
platforms = [];
170
69
source = {
171
70
remotes = ["https://rubygems.org"];
172
172
-
sha256 = "0yrdchs3psh583rjapkv33mljdivggqn99wkydkjdckcjn43j3cz";
71
71
+
sha256 = "1jks1qjbmqm8f9kvwa81vqj39avaj9wdnzc531xm29a55bb74fps";
173
72
type = "gem";
174
73
};
175
175
-
version = "0.8.2";
74
74
+
version = "0.9.2";
176
75
};
177
76
}
+3
-3
pkgs/servers/web-apps/discourse/plugins/discourse-ldap-auth/Gemfile.lock
···
3
3
specs:
4
4
hashie (5.0.0)
5
5
net-ldap (0.14.0)
6
6
-
omniauth (1.9.1)
6
6
+
omniauth (1.9.2)
7
7
hashie (>= 3.4.6)
8
8
rack (>= 1.6.2, < 3)
9
9
omniauth-ldap (1.0.5)
···
12
12
pyu-ruby-sasl (~> 0.0.3.2)
13
13
rubyntlm (~> 0.3.4)
14
14
pyu-ruby-sasl (0.0.3.3)
15
15
-
rack (2.2.3)
15
15
+
rack (2.2.4)
16
16
rubyntlm (0.3.4)
17
17
18
18
PLATFORMS
···
25
25
rubyntlm (= 0.3.4)
26
26
27
27
BUNDLED WITH
28
28
-
2.3.9
28
28
+
2.3.22
+2
-2
pkgs/servers/web-apps/discourse/plugins/discourse-ldap-auth/default.nix
···
6
6
src = fetchFromGitHub {
7
7
owner = "jonmbake";
8
8
repo = "discourse-ldap-auth";
9
9
-
rev = "a7a2e35eb5a8f6ee3b90bf48424efcb2a66c9989";
10
10
-
sha256 = "sha256-Dsb12bZEZlNjFGw1GX7zt2hDVM9Ua+MDWSmBn4HEvs0=";
9
9
+
rev = "84635b1c352b2145b8e6074d94047f1e2020dcbc";
10
10
+
sha256 = "sha256-yCCSger7qa9R/BMaQdcFtLXqLPj3i3y4tTanz+ufZTw=";
11
11
};
12
12
meta = with lib; {
13
13
homepage = "https://github.com/jonmbake/discourse-ldap-auth";
+4
-4
pkgs/servers/web-apps/discourse/plugins/discourse-ldap-auth/gemset.nix
···
25
25
platforms = [];
26
26
source = {
27
27
remotes = ["https://rubygems.org"];
28
28
-
sha256 = "002vi9gwamkmhf0dsj2im1d47xw2n1jfhnzl18shxf3ampkqfmyz";
28
28
+
sha256 = "1jn9j54l5h7xcba2vjq74l1dk0xrwvsjxam4qhylpi52nw0h5502";
29
29
type = "gem";
30
30
};
31
31
-
version = "1.9.1";
31
31
+
version = "1.9.2";
32
32
};
33
33
omniauth-ldap = {
34
34
dependencies = ["net-ldap" "omniauth" "pyu-ruby-sasl" "rubyntlm"];
···
56
56
platforms = [];
57
57
source = {
58
58
remotes = ["https://rubygems.org"];
59
59
-
sha256 = "0i5vs0dph9i5jn8dfc6aqd6njcafmb20rwqngrf759c9cvmyff16";
59
59
+
sha256 = "0axc6w0rs4yj0pksfll1hjgw1k6a5q0xi2lckh91knfb72v348pa";
60
60
type = "gem";
61
61
};
62
62
-
version = "2.2.3";
62
62
+
version = "2.2.4";
63
63
};
64
64
rubyntlm = {
65
65
groups = ["default"];
+1
-1
pkgs/servers/web-apps/discourse/plugins/discourse-migratepassword/Gemfile
···
3
3
source "https://rubygems.org"
4
4
5
5
# gem "rails"
6
6
-
gem 'bcrypt', '3.1.3'
6
6
+
gem 'bcrypt', '3.1.13'
7
7
gem 'unix-crypt', '1.3.0'
8
8
gem 'ffi', '1.15.5', require: false
9
9
gem 'ffi-compiler', '1.0.1', require: false
+3
-3
pkgs/servers/web-apps/discourse/plugins/discourse-migratepassword/Gemfile.lock
···
4
4
argon2 (2.1.1)
5
5
ffi (~> 1.14)
6
6
ffi-compiler (~> 1.0)
7
7
-
bcrypt (3.1.3)
7
7
+
bcrypt (3.1.13)
8
8
ffi (1.15.5)
9
9
ffi-compiler (1.0.1)
10
10
ffi (>= 1.0.0)
···
17
17
18
18
DEPENDENCIES
19
19
argon2 (= 2.1.1)
20
20
-
bcrypt (= 3.1.3)
20
20
+
bcrypt (= 3.1.13)
21
21
ffi (= 1.15.5)
22
22
ffi-compiler (= 1.0.1)
23
23
unix-crypt (= 1.3.0)
24
24
25
25
BUNDLED WITH
26
26
-
2.3.9
26
26
+
2.3.22
+2
-2
pkgs/servers/web-apps/discourse/plugins/discourse-migratepassword/default.nix
···
6
6
src = fetchFromGitHub {
7
7
owner = "communiteq";
8
8
repo = "discourse-migratepassword";
9
9
-
rev = "7d33a57b4bd2a37badc64d5eca57d7ca01d62937";
10
10
-
sha256 = "sha256-BDBXgsLVHYiSSjvN4Y13ffwfWk6nuVLoJE1YKgGmLTA=";
9
9
+
rev = "ebb705d2f86dea862d6492ae8da5ececca4fde1c";
10
10
+
sha256 = "sha256-UByhKdIYvwlo8tA9JTK6EGKo7QGkcKIFBVgsgHGIFc0=";
11
11
};
12
12
meta = with lib; {
13
13
homepage = "https://github.com/communiteq/discourse-migratepassword";
+2
-2
pkgs/servers/web-apps/discourse/plugins/discourse-migratepassword/gemset.nix
···
15
15
platforms = [];
16
16
source = {
17
17
remotes = ["https://rubygems.org"];
18
18
-
sha256 = "1d2gqv8vry4ps0asb7nn1z4zxi3mcscy7yrim0npdd294ffyinvj";
18
18
+
sha256 = "0ai0m15jg3n0b22mimk09ppnga316dc7dyvz06w8rrqh5gy1lslp";
19
19
type = "gem";
20
20
};
21
21
-
version = "3.1.3";
21
21
+
version = "3.1.13";
22
22
};
23
23
ffi = {
24
24
groups = ["default"];
+2
-2
pkgs/servers/web-apps/discourse/plugins/discourse-openid-connect/default.nix
···
6
6
src = fetchFromGitHub {
7
7
owner = "discourse";
8
8
repo = "discourse-openid-connect";
9
9
-
rev = "6534ceb4529f86499b4a77300c851a7f69f016e0";
10
10
-
sha256 = "sha256-25vVNH9HRddDTiwqPtFo2JdE1Fo3hNMjXn5GMWA1jzs=";
9
9
+
rev = "d3b347388d3e28a5c2ec7dfe8403e949928d5010";
10
10
+
sha256 = "sha256-3rASzJgZeXY2oA7EpwPwgN7YiRSXGPCtJlhAIK1RCDw=";
11
11
};
12
12
meta = with lib; {
13
13
homepage = "https://github.com/discourse/discourse-openid-connect";
+2
-2
pkgs/servers/web-apps/discourse/plugins/discourse-solved/default.nix
···
5
5
src = fetchFromGitHub {
6
6
owner = "discourse";
7
7
repo = "discourse-solved";
8
8
-
rev = "e6cce5486df906ede74aa1b17ab308a145a99b88";
9
9
-
sha256 = "sha256-hgoCPMlE5qJbdftwOW/zRcp8C7S0h/W2XrfFjLrNpgw=";
8
8
+
rev = "e96934d60f3fb97a949e0d901fd1c061e6c3bd71";
9
9
+
sha256 = "sha256-DOFUTiTYffvrwmHkEuX5TGk0VL3iqSziXZ3ogsbkwjQ=";
10
10
};
11
11
meta = with lib; {
12
12
homepage = "https://github.com/discourse/discourse-solved";
+4
-1
pkgs/servers/web-apps/discourse/rubyEnv/Gemfile
···
149
149
end
150
150
151
151
group :test do
152
152
+
gem 'capybara', require: false
152
153
gem 'webmock', require: false
153
154
gem 'fakeweb', require: false
154
155
gem 'minitest', require: false
155
156
gem 'simplecov', require: false
157
157
+
gem 'selenium-webdriver', require: false
156
158
gem "test-prof"
159
159
+
gem 'webdrivers', require: false
157
160
end
158
161
159
162
group :test, :development do
···
170
173
gem 'shoulda-matchers', require: false
171
174
gem 'rspec-html-matchers'
172
175
gem 'byebug', require: ENV['RM_INFO'].nil?, platform: :mri
173
173
-
gem 'rubocop-discourse', require: false, github: 'discourse/rubocop-discourse'
176
176
+
gem 'rubocop-discourse', require: false
174
177
gem 'parallel_tests'
175
178
176
179
gem 'rswag-specs'
+108
-93
pkgs/servers/web-apps/discourse/rubyEnv/Gemfile.lock
···
5
5
mail (2.8.0.edge)
6
6
mini_mime (>= 0.1.1)
7
7
8
8
-
GIT
9
9
-
remote: https://github.com/discourse/rubocop-discourse.git
10
10
-
revision: a5aea6e5f150b1eb7765a805bec0ff618cb718b3
11
11
-
specs:
12
12
-
rubocop-discourse (2.5.0)
13
13
-
rubocop (>= 1.1.0)
14
14
-
rubocop-rspec (>= 2.0.0)
15
15
-
16
8
GEM
17
9
remote: https://rubygems.org/
18
10
specs:
···
56
48
i18n (>= 1.6, < 2)
57
49
minitest (>= 5.1)
58
50
tzinfo (~> 2.0)
59
59
-
addressable (2.8.0)
60
60
-
public_suffix (>= 2.0.2, < 5.0)
51
51
+
addressable (2.8.1)
52
52
+
public_suffix (>= 2.0.2, < 6.0)
61
53
annotate (3.2.0)
62
54
activerecord (>= 3.2, < 8.0)
63
55
rake (>= 10.4, < 14.0)
···
93
85
bootsnap (1.13.0)
94
86
msgpack (~> 1.2)
95
87
builder (3.2.4)
96
96
-
bullet (7.0.2)
88
88
+
bullet (7.0.3)
97
89
activesupport (>= 3.0.0)
98
90
uniform_notifier (~> 1.11)
99
91
byebug (11.1.3)
92
92
+
capybara (3.37.1)
93
93
+
addressable
94
94
+
matrix
95
95
+
mini_mime (>= 0.1.3)
96
96
+
nokogiri (~> 1.8)
97
97
+
rack (>= 1.6.0)
98
98
+
rack-test (>= 0.6.3)
99
99
+
regexp_parser (>= 1.5, < 3.0)
100
100
+
xpath (~> 3.2)
100
101
cbor (0.5.9.6)
101
102
certified (1.0.0)
103
103
+
childprocess (4.1.0)
102
104
chunky_png (1.4.0)
103
105
coderay (1.1.3)
104
106
colored2 (3.1.2)
105
107
concurrent-ruby (1.1.10)
106
106
-
connection_pool (2.2.5)
108
108
+
connection_pool (2.3.0)
107
109
cose (1.2.1)
108
110
cbor (~> 0.5.9)
109
111
openssl-signature_algorithm (~> 1.0)
···
111
113
crack (0.4.5)
112
114
rexml
113
115
crass (1.0.6)
114
114
-
css_parser (1.11.0)
116
116
+
css_parser (1.12.0)
115
117
addressable
116
118
debug_inspector (1.1.0)
117
119
diff-lcs (1.5.0)
118
120
diffy (3.4.2)
119
119
-
digest (3.1.0)
120
121
discourse-ember-rails (0.18.6)
121
122
active_model_serializers
122
123
ember-data-source (>= 1.0.0.beta.5)
···
140
141
sprockets (>= 3.3, < 4.1)
141
142
ember-source (2.18.2)
142
143
erubi (1.11.0)
143
143
-
excon (0.92.4)
144
144
+
excon (0.92.5)
144
145
execjs (2.8.1)
145
146
exifr (1.3.9)
146
147
fabrication (2.30.0)
147
147
-
faker (2.22.0)
148
148
+
faker (2.23.0)
148
149
i18n (>= 1.8.11, < 2)
149
150
fakeweb (1.3.0)
150
150
-
faraday (1.10.0)
151
151
-
faraday-em_http (~> 1.0)
152
152
-
faraday-em_synchrony (~> 1.0)
153
153
-
faraday-excon (~> 1.1)
154
154
-
faraday-httpclient (~> 1.0)
155
155
-
faraday-multipart (~> 1.0)
156
156
-
faraday-net_http (~> 1.0)
157
157
-
faraday-net_http_persistent (~> 1.0)
158
158
-
faraday-patron (~> 1.0)
159
159
-
faraday-rack (~> 1.0)
160
160
-
faraday-retry (~> 1.0)
151
151
+
faraday (2.5.2)
152
152
+
faraday-net_http (>= 2.0, < 3.1)
161
153
ruby2_keywords (>= 0.0.4)
162
162
-
faraday-em_http (1.0.0)
163
163
-
faraday-em_synchrony (1.0.0)
164
164
-
faraday-excon (1.1.0)
165
165
-
faraday-httpclient (1.0.1)
166
166
-
faraday-multipart (1.0.4)
167
167
-
multipart-post (~> 2)
168
168
-
faraday-net_http (1.0.1)
169
169
-
faraday-net_http_persistent (1.2.0)
170
170
-
faraday-patron (1.0.0)
171
171
-
faraday-rack (1.0.0)
172
172
-
faraday-retry (1.0.3)
154
154
+
faraday-net_http (3.0.0)
173
155
fast_blank (1.0.1)
174
156
fast_xs (0.8.0)
175
157
fastimage (2.2.6)
···
194
176
image_size (>= 1.5, < 4)
195
177
in_threads (~> 1.3)
196
178
progress (~> 3.0, >= 3.0.1)
197
197
-
image_size (3.0.2)
179
179
+
image_size (3.1.0)
198
180
in_threads (1.6.0)
199
181
jmespath (1.6.1)
200
182
jquery-rails (4.5.0)
···
209
191
hana (~> 1.3)
210
192
regexp_parser (~> 2.0)
211
193
uri_template (~> 0.7)
212
212
-
jwt (2.4.1)
194
194
+
jwt (2.5.0)
213
195
kgio (2.11.4)
214
196
libv8-node (16.10.0.0)
197
197
+
libv8-node (16.10.0.0-aarch64-linux)
198
198
+
libv8-node (16.10.0.0-arm64-darwin)
199
199
+
libv8-node (16.10.0.0-x86_64-darwin)
200
200
+
libv8-node (16.10.0.0-x86_64-darwin-19)
201
201
+
libv8-node (16.10.0.0-x86_64-linux)
215
202
listen (3.7.1)
216
203
rb-fsevent (~> 0.10, >= 0.10.3)
217
204
rb-inotify (~> 0.9, >= 0.9.10)
···
224
211
logstash-event (1.2.02)
225
212
logstash-logger (0.26.1)
226
213
logstash-event (~> 1.2)
227
227
-
logster (2.11.2)
228
228
-
loofah (2.18.0)
214
214
+
logster (2.11.3)
215
215
+
loofah (2.19.0)
229
216
crass (~> 1.0.2)
230
217
nokogiri (>= 1.5.9)
231
218
lru_redux (1.1.0)
232
219
lz4-ruby (0.3.3)
220
220
+
matrix (0.4.2)
233
221
maxminddb (0.1.22)
234
222
memory_profiler (1.0.0)
235
223
message_bus (4.2.0)
···
237
225
method_source (1.0.0)
238
226
mini_mime (1.1.2)
239
227
mini_portile2 (2.8.0)
240
240
-
mini_racer (0.6.2)
228
228
+
mini_racer (0.6.3)
241
229
libv8-node (~> 16.10.0.0)
242
230
mini_scheduler (0.14.0)
243
231
sidekiq (>= 4.2.3)
244
232
mini_sql (1.4.0)
245
233
mini_suffix (0.3.3)
246
234
ffi (~> 1.9)
247
247
-
minitest (5.16.2)
248
248
-
mocha (1.14.0)
249
249
-
msgpack (1.5.4)
235
235
+
minitest (5.16.3)
236
236
+
mocha (1.15.0)
237
237
+
msgpack (1.5.6)
250
238
multi_json (1.15.0)
251
239
multi_xml (0.6.0)
252
252
-
multipart-post (2.2.3)
253
240
mustache (1.1.1)
254
241
net-http (0.2.2)
255
242
uri
256
256
-
net-imap (0.2.3)
257
257
-
digest
243
243
+
net-imap (0.3.0)
258
244
net-protocol
259
259
-
strscan
260
260
-
net-pop (0.1.1)
261
261
-
digest
245
245
+
net-pop (0.1.2)
262
246
net-protocol
263
263
-
timeout
264
247
net-protocol (0.1.3)
265
248
timeout
266
266
-
net-smtp (0.3.1)
267
267
-
digest
249
249
+
net-smtp (0.3.2)
268
250
net-protocol
269
269
-
timeout
270
251
nio4r (2.5.8)
271
252
nokogiri (1.13.8)
272
253
mini_portile2 (~> 2.8.0)
273
254
racc (~> 1.4)
274
274
-
oauth (0.5.10)
275
275
-
oauth2 (1.4.7)
276
276
-
faraday (>= 0.8, < 2.0)
255
255
+
nokogiri (1.13.8-aarch64-linux)
256
256
+
racc (~> 1.4)
257
257
+
nokogiri (1.13.8-arm64-darwin)
258
258
+
racc (~> 1.4)
259
259
+
nokogiri (1.13.8-x86_64-darwin)
260
260
+
racc (~> 1.4)
261
261
+
nokogiri (1.13.8-x86_64-linux)
262
262
+
racc (~> 1.4)
263
263
+
oauth (1.1.0)
264
264
+
oauth-tty (~> 1.0, >= 1.0.1)
265
265
+
snaky_hash (~> 2.0)
266
266
+
version_gem (~> 1.1)
267
267
+
oauth-tty (1.0.3)
268
268
+
version_gem (~> 1.1)
269
269
+
oauth2 (1.4.11)
270
270
+
faraday (>= 0.17.3, < 3.0)
277
271
jwt (>= 1.0, < 3.0)
278
272
multi_json (~> 1.3)
279
273
multi_xml (~> 0.5)
280
280
-
rack (>= 1.2, < 3)
274
274
+
rack (>= 1.2, < 4)
281
275
oj (3.13.14)
282
282
-
omniauth (1.9.1)
276
276
+
omniauth (1.9.2)
283
277
hashie (>= 3.4.6)
284
278
rack (>= 1.6.2, < 3)
285
279
omniauth-facebook (9.0.0)
···
295
289
omniauth-oauth (1.2.0)
296
290
oauth
297
291
omniauth (>= 1.0, < 3)
298
298
-
omniauth-oauth2 (1.7.2)
299
299
-
oauth2 (~> 1.4)
292
292
+
omniauth-oauth2 (1.7.3)
293
293
+
oauth2 (>= 1.4, < 3)
300
294
omniauth (>= 1.9, < 3)
301
295
omniauth-twitter (1.4.0)
302
296
omniauth-oauth (~> 1.1)
303
297
rack
304
304
-
openssl (3.0.0)
298
298
+
openssl (3.0.1)
305
299
openssl-signature_algorithm (1.2.1)
306
300
openssl (> 2.0, < 3.1)
307
301
optimist (3.0.1)
308
302
parallel (1.22.1)
309
309
-
parallel_tests (3.11.1)
303
303
+
parallel_tests (3.13.0)
310
304
parallel
311
305
parser (3.1.2.1)
312
306
ast (~> 2.4.1)
313
307
pg (1.4.3)
314
308
progress (3.6.0)
315
315
-
pry (0.13.1)
309
309
+
pry (0.14.1)
316
310
coderay (~> 1.1)
317
311
method_source (~> 1.0)
318
318
-
pry-byebug (3.9.0)
312
312
+
pry-byebug (3.10.1)
319
313
byebug (~> 11.0)
320
320
-
pry (~> 0.13.0)
314
314
+
pry (>= 0.13, < 0.15)
321
315
pry-rails (0.3.9)
322
316
pry (>= 0.10.4)
323
323
-
public_suffix (4.0.7)
324
324
-
puma (5.6.4)
317
317
+
public_suffix (5.0.0)
318
318
+
puma (5.6.5)
325
319
nio4r (~> 2.0)
326
320
r2 (0.2.7)
327
321
racc (1.6.0)
328
322
rack (2.2.4)
329
323
rack-mini-profiler (3.0.0)
330
324
rack (>= 1.2.0)
331
331
-
rack-protection (2.2.2)
325
325
+
rack-protection (3.0.1)
332
326
rack
333
327
rack-test (2.0.2)
334
328
rack (>= 1.3)
···
354
348
rainbow (3.1.1)
355
349
raindrops (0.20.0)
356
350
rake (13.0.6)
357
357
-
rb-fsevent (0.11.1)
351
351
+
rb-fsevent (0.11.2)
358
352
rb-inotify (0.10.1)
359
353
ffi (~> 1.0)
360
354
rbtrace (0.4.14)
···
363
357
optimist (>= 3.0.0)
364
358
rchardet (1.8.0)
365
359
redis (4.7.1)
366
366
-
redis-namespace (1.8.2)
367
367
-
redis (>= 3.0.4)
368
368
-
regexp_parser (2.5.0)
360
360
+
redis-namespace (1.9.0)
361
361
+
redis (>= 4)
362
362
+
regexp_parser (2.6.0)
369
363
request_store (1.5.1)
370
364
rack (>= 1.4)
371
365
rexml (3.2.5)
···
381
375
rspec-mocks (~> 3.11.0)
382
376
rspec-core (3.11.0)
383
377
rspec-support (~> 3.11.0)
384
384
-
rspec-expectations (3.11.0)
378
378
+
rspec-expectations (3.11.1)
385
379
diff-lcs (>= 1.2.0, < 2.0)
386
380
rspec-support (~> 3.11.0)
387
381
rspec-html-matchers (0.10.0)
···
398
392
rspec-expectations (~> 3.10)
399
393
rspec-mocks (~> 3.10)
400
394
rspec-support (~> 3.10)
401
401
-
rspec-support (3.11.0)
395
395
+
rspec-support (3.11.1)
402
396
rss (0.2.9)
403
397
rexml
404
404
-
rswag-specs (2.5.1)
398
398
+
rswag-specs (2.6.0)
405
399
activesupport (>= 3.1, < 7.1)
406
400
json-schema (~> 2.2)
407
401
railties (>= 3.1, < 7.1)
408
408
-
rubocop (1.34.1)
402
402
+
rubocop (1.36.0)
409
403
json (~> 2.3)
410
404
parallel (~> 1.10)
411
405
parser (>= 3.1.2.1)
412
406
rainbow (>= 2.2.2, < 4.0)
413
407
regexp_parser (>= 1.8, < 3.0)
414
408
rexml (>= 3.2.5, < 4.0)
415
415
-
rubocop-ast (>= 1.20.0, < 2.0)
409
409
+
rubocop-ast (>= 1.20.1, < 2.0)
416
410
ruby-progressbar (~> 1.7)
417
411
unicode-display_width (>= 1.4.0, < 3.0)
418
412
rubocop-ast (1.21.0)
419
413
parser (>= 3.1.1.0)
420
420
-
rubocop-rspec (2.12.1)
421
421
-
rubocop (~> 1.31)
414
414
+
rubocop-discourse (3.0)
415
415
+
rubocop (>= 1.1.0)
416
416
+
rubocop-rspec (>= 2.0.0)
417
417
+
rubocop-rspec (2.13.2)
418
418
+
rubocop (~> 1.33)
422
419
ruby-prof (1.4.3)
423
420
ruby-progressbar (1.11.0)
424
421
ruby-readability (0.7.0)
···
441
438
seed-fu (2.3.9)
442
439
activerecord (>= 3.1)
443
440
activesupport (>= 3.1)
444
444
-
shoulda-matchers (5.1.0)
441
441
+
selenium-webdriver (4.5.0)
442
442
+
childprocess (>= 0.5, < 5.0)
443
443
+
rexml (~> 3.2, >= 3.2.5)
444
444
+
rubyzip (>= 1.2.2, < 3.0)
445
445
+
websocket (~> 1.0)
446
446
+
shoulda-matchers (5.2.0)
445
447
activesupport (>= 5.2.0)
446
446
-
sidekiq (6.5.4)
447
447
-
connection_pool (>= 2.2.2)
448
448
+
sidekiq (6.5.7)
449
449
+
connection_pool (>= 2.2.5)
448
450
rack (~> 2.0)
449
449
-
redis (>= 4.5.0)
451
451
+
redis (>= 4.5.0, < 5)
450
452
simplecov (0.21.2)
451
453
docile (~> 1.1)
452
454
simplecov-html (~> 0.11)
453
455
simplecov_json_formatter (~> 0.1)
454
456
simplecov-html (0.12.3)
455
457
simplecov_json_formatter (0.1.4)
458
458
+
snaky_hash (2.0.0)
459
459
+
hashie
460
460
+
version_gem (~> 1.1)
456
461
sprockets (3.7.2)
457
462
concurrent-ruby (~> 1.0)
458
463
rack (> 1, < 3)
···
461
466
activesupport (>= 5.2)
462
467
sprockets (>= 3.0.0)
463
468
sshkey (2.0.0)
464
464
-
stackprof (0.2.20)
465
465
-
strscan (3.0.4)
466
466
-
test-prof (1.0.9)
469
469
+
stackprof (0.2.21)
470
470
+
test-prof (1.0.10)
467
471
thor (1.2.1)
468
472
tilt (2.0.11)
469
473
timeout (0.3.0)
···
474
478
unf (0.1.4)
475
479
unf_ext
476
480
unf_ext (0.0.8.2)
477
477
-
unicode-display_width (2.2.0)
481
481
+
unicode-display_width (2.3.0)
478
482
unicorn (6.1.0)
479
483
kgio (~> 2.6)
480
484
raindrops (~> 0.7)
481
485
uniform_notifier (1.16.0)
482
486
uri (0.11.0)
483
487
uri_template (0.7.0)
484
484
-
webmock (3.17.1)
488
488
+
version_gem (1.1.0)
489
489
+
webdrivers (5.1.0)
490
490
+
nokogiri (~> 1.6)
491
491
+
rubyzip (>= 1.3.0)
492
492
+
selenium-webdriver (~> 4.0)
493
493
+
webmock (3.18.1)
485
494
addressable (>= 2.8.0)
486
495
crack (>= 0.3.2)
487
496
hashdiff (>= 0.4.0, < 2.0.0)
488
497
webpush (1.1.0)
489
498
hkdf (~> 0.2)
490
499
jwt (~> 2.0)
500
500
+
websocket (1.2.9)
491
501
xorcist (1.1.3)
502
502
+
xpath (3.2.0)
503
503
+
nokogiri (~> 1.8)
492
504
yaml-lint (0.0.10)
493
505
zeitwerk (2.6.0)
494
506
···
514
526
bootsnap
515
527
bullet
516
528
byebug
529
529
+
capybara
517
530
cbor
518
531
certified
519
532
colored2
···
598
611
rspec-rails
599
612
rss
600
613
rswag-specs
601
601
-
rubocop-discourse!
614
614
+
rubocop-discourse
602
615
ruby-prof
603
616
ruby-readability
604
617
rubyzip
···
606
619
sassc (= 2.0.1)
607
620
sassc-rails
608
621
seed-fu
622
622
+
selenium-webdriver
609
623
shoulda-matchers
610
624
sidekiq
611
625
simplecov
···
618
632
uglifier
619
633
unf
620
634
unicorn
635
635
+
webdrivers
621
636
webmock
622
637
webpush
623
638
xorcist
624
639
yaml-lint
625
640
626
641
BUNDLED WITH
627
627
-
2.3.9
642
642
+
2.3.22
+203
-219
pkgs/servers/web-apps/discourse/rubyEnv/gemset.nix
···
104
104
platforms = [];
105
105
source = {
106
106
remotes = ["https://rubygems.org"];
107
107
-
sha256 = "022r3m9wdxljpbya69y2i3h9g3dhhfaqzidf95m6qjzms792jvgp";
107
107
+
sha256 = "1ypdmpdn20hxp5vwxz3zc04r5xcwqc25qszdlg41h8ghdqbllwmw";
108
108
type = "gem";
109
109
};
110
110
-
version = "2.8.0";
110
110
+
version = "2.8.1";
111
111
};
112
112
annotate = {
113
113
dependencies = ["activerecord" "rake"];
···
273
273
platforms = [];
274
274
source = {
275
275
remotes = ["https://rubygems.org"];
276
276
-
sha256 = "10cwf4pi2i1r1hpz06sishj95aa9m65ymd61sl2vp57ncsrqcyab";
276
276
+
sha256 = "06rmq3s8q6xndxxl7qid9nf3hiaahs71jyiyyk3bx31hns1vkcci";
277
277
type = "gem";
278
278
};
279
279
-
version = "7.0.2";
279
279
+
version = "7.0.3";
280
280
};
281
281
byebug = {
282
282
groups = ["development" "test"];
···
292
292
};
293
293
version = "11.1.3";
294
294
};
295
295
+
capybara = {
296
296
+
dependencies = ["addressable" "matrix" "mini_mime" "nokogiri" "rack" "rack-test" "regexp_parser" "xpath"];
297
297
+
groups = ["test"];
298
298
+
platforms = [];
299
299
+
source = {
300
300
+
remotes = ["https://rubygems.org"];
301
301
+
sha256 = "05df76mfhfab6d7ir0qy5xf1ad6kqdh2p6vfqv7nhlx45k1y4ysg";
302
302
+
type = "gem";
303
303
+
};
304
304
+
version = "3.37.1";
305
305
+
};
295
306
cbor = {
296
307
groups = ["default"];
297
308
platforms = [];
···
312
323
};
313
324
version = "1.0.0";
314
325
};
326
326
+
childprocess = {
327
327
+
groups = ["default" "test"];
328
328
+
platforms = [];
329
329
+
source = {
330
330
+
remotes = ["https://rubygems.org"];
331
331
+
sha256 = "1lvcp8bsd35g57f7wz4jigcw2sryzzwrpcgjwwf3chmjrjcww5in";
332
332
+
type = "gem";
333
333
+
};
334
334
+
version = "4.1.0";
335
335
+
};
315
336
chunky_png = {
316
337
groups = ["default"];
317
338
platforms = [];
···
361
382
platforms = [];
362
383
source = {
363
384
remotes = ["https://rubygems.org"];
364
364
-
sha256 = "0ffdxhgirgc86qb42yvmfj6v1v0x4lvi0pxn9zhghkff44wzra0k";
385
385
+
sha256 = "1nj4r58m5cpfdsijj6gjfs3yzcnxq2halagjk07wjcrgj6z8ayb7";
365
386
type = "gem";
366
387
};
367
367
-
version = "2.2.5";
388
388
+
version = "2.3.0";
368
389
};
369
390
cose = {
370
391
dependencies = ["cbor" "openssl-signature_algorithm"];
···
414
435
platforms = [];
415
436
source = {
416
437
remotes = ["https://rubygems.org"];
417
417
-
sha256 = "1qbdgp36dhcyljhmfxrvbgp1ha9yqxhxgyg3sdm48y9m371jd2an";
438
438
+
sha256 = "1107j3frhmcd95wcsz0rypchynnzhnjiyyxxcl6dlmr2lfy08z4b";
418
439
type = "gem";
419
440
};
420
420
-
version = "1.11.0";
441
441
+
version = "1.12.0";
421
442
};
422
443
debug_inspector = {
423
444
groups = ["default" "development"];
···
449
470
};
450
471
version = "3.4.2";
451
472
};
452
452
-
digest = {
453
453
-
groups = ["default"];
454
454
-
platforms = [];
455
455
-
source = {
456
456
-
remotes = ["https://rubygems.org"];
457
457
-
sha256 = "00vwzvxgby22h7jhwadqqf9ssbkp3ag2pl4g7q3zf1y8mlk7rk39";
458
458
-
type = "gem";
459
459
-
};
460
460
-
version = "3.1.0";
461
461
-
};
462
473
discourse-ember-rails = {
463
474
dependencies = ["active_model_serializers" "ember-data-source" "ember-handlebars-template" "ember-source" "jquery-rails" "railties"];
464
475
groups = ["default"];
···
583
594
platforms = [];
584
595
source = {
585
596
remotes = ["https://rubygems.org"];
586
586
-
sha256 = "0cdc76kgr4f1mq4jwbmq1qvr9c15hb4r1cx4dvrdra13vy9sckb5";
597
597
+
sha256 = "0qc7l72y7wxlc3pi3paj84jc5jfb0yc1vsc0w6v029il3dd14b8r";
587
598
type = "gem";
588
599
};
589
589
-
version = "0.92.4";
600
600
+
version = "0.92.5";
590
601
};
591
602
execjs = {
592
603
groups = ["assets" "default"];
···
624
635
platforms = [];
625
636
source = {
626
637
remotes = ["https://rubygems.org"];
627
627
-
sha256 = "1na8p9r9zdvz75aihjczhamlygrjs9dj7pcbxgg8vfavrx8d89b5";
638
638
+
sha256 = "1wslw5gh335zcahxmdd497xaa7h0d8l60c0jfv942mn47fxy8m47";
628
639
type = "gem";
629
640
};
630
630
-
version = "2.22.0";
641
641
+
version = "2.23.0";
631
642
};
632
643
fakeweb = {
633
644
groups = ["test"];
···
640
651
version = "1.3.0";
641
652
};
642
653
faraday = {
643
643
-
dependencies = ["faraday-em_http" "faraday-em_synchrony" "faraday-excon" "faraday-httpclient" "faraday-multipart" "faraday-net_http" "faraday-net_http_persistent" "faraday-patron" "faraday-rack" "faraday-retry" "ruby2_keywords"];
654
654
+
dependencies = ["faraday-net_http" "ruby2_keywords"];
644
655
groups = ["default"];
645
656
platforms = [];
646
657
source = {
647
658
remotes = ["https://rubygems.org"];
648
648
-
sha256 = "00palwawk897p5gypw5wjrh93d4p0xz2yl9w93yicb4kq7amh8d4";
659
659
+
sha256 = "1a6q8k82vfqyzlnrs6r6d82fyz5fminc8p57mr5xkdabs0m2y3mx";
649
660
type = "gem";
650
661
};
651
651
-
version = "1.10.0";
652
652
-
};
653
653
-
faraday-em_http = {
654
654
-
groups = ["default"];
655
655
-
platforms = [];
656
656
-
source = {
657
657
-
remotes = ["https://rubygems.org"];
658
658
-
sha256 = "12cnqpbak4vhikrh2cdn94assh3yxza8rq2p9w2j34bqg5q4qgbs";
659
659
-
type = "gem";
660
660
-
};
661
661
-
version = "1.0.0";
662
662
-
};
663
663
-
faraday-em_synchrony = {
664
664
-
groups = ["default"];
665
665
-
platforms = [];
666
666
-
source = {
667
667
-
remotes = ["https://rubygems.org"];
668
668
-
sha256 = "1vgrbhkp83sngv6k4mii9f2s9v5lmp693hylfxp2ssfc60fas3a6";
669
669
-
type = "gem";
670
670
-
};
671
671
-
version = "1.0.0";
672
672
-
};
673
673
-
faraday-excon = {
674
674
-
groups = ["default"];
675
675
-
platforms = [];
676
676
-
source = {
677
677
-
remotes = ["https://rubygems.org"];
678
678
-
sha256 = "0h09wkb0k0bhm6dqsd47ac601qiaah8qdzjh8gvxfd376x1chmdh";
679
679
-
type = "gem";
680
680
-
};
681
681
-
version = "1.1.0";
682
682
-
};
683
683
-
faraday-httpclient = {
684
684
-
groups = ["default"];
685
685
-
platforms = [];
686
686
-
source = {
687
687
-
remotes = ["https://rubygems.org"];
688
688
-
sha256 = "0fyk0jd3ks7fdn8nv3spnwjpzx2lmxmg2gh4inz3by1zjzqg33sc";
689
689
-
type = "gem";
690
690
-
};
691
691
-
version = "1.0.1";
692
692
-
};
693
693
-
faraday-multipart = {
694
694
-
dependencies = ["multipart-post"];
695
695
-
groups = ["default"];
696
696
-
platforms = [];
697
697
-
source = {
698
698
-
remotes = ["https://rubygems.org"];
699
699
-
sha256 = "09871c4hd7s5ws1wl4gs7js1k2wlby6v947m2bbzg43pnld044lh";
700
700
-
type = "gem";
701
701
-
};
702
702
-
version = "1.0.4";
662
662
+
version = "2.5.2";
703
663
};
704
664
faraday-net_http = {
705
665
groups = ["default"];
706
666
platforms = [];
707
667
source = {
708
668
remotes = ["https://rubygems.org"];
709
709
-
sha256 = "1fi8sda5hc54v1w3mqfl5yz09nhx35kglyx72w7b8xxvdr0cwi9j";
710
710
-
type = "gem";
711
711
-
};
712
712
-
version = "1.0.1";
713
713
-
};
714
714
-
faraday-net_http_persistent = {
715
715
-
groups = ["default"];
716
716
-
platforms = [];
717
717
-
source = {
718
718
-
remotes = ["https://rubygems.org"];
719
719
-
sha256 = "0dc36ih95qw3rlccffcb0vgxjhmipsvxhn6cw71l7ffs0f7vq30b";
720
720
-
type = "gem";
721
721
-
};
722
722
-
version = "1.2.0";
723
723
-
};
724
724
-
faraday-patron = {
725
725
-
groups = ["default"];
726
726
-
platforms = [];
727
727
-
source = {
728
728
-
remotes = ["https://rubygems.org"];
729
729
-
sha256 = "19wgsgfq0xkski1g7m96snv39la3zxz6x7nbdgiwhg5v82rxfb6w";
669
669
+
sha256 = "0yicplzlh5da8pr64286zga3my86cjsb2y9dqlzsacpw8hbkmjvw";
730
670
type = "gem";
731
671
};
732
732
-
version = "1.0.0";
733
733
-
};
734
734
-
faraday-rack = {
735
735
-
groups = ["default"];
736
736
-
platforms = [];
737
737
-
source = {
738
738
-
remotes = ["https://rubygems.org"];
739
739
-
sha256 = "1h184g4vqql5jv9s9im6igy00jp6mrah2h14py6mpf9bkabfqq7g";
740
740
-
type = "gem";
741
741
-
};
742
742
-
version = "1.0.0";
743
743
-
};
744
744
-
faraday-retry = {
745
745
-
groups = ["default"];
746
746
-
platforms = [];
747
747
-
source = {
748
748
-
remotes = ["https://rubygems.org"];
749
749
-
sha256 = "153i967yrwnswqgvnnajgwp981k9p50ys1h80yz3q94rygs59ldd";
750
750
-
type = "gem";
751
751
-
};
752
752
-
version = "1.0.3";
672
672
+
version = "3.0.0";
753
673
};
754
674
fast_blank = {
755
675
groups = ["default"];
···
949
869
platforms = [];
950
870
source = {
951
871
remotes = ["https://rubygems.org"];
952
952
-
sha256 = "033k72f8n28psm89wv1qwsrnqyzz57ihyivyi442wha6vr9iyjz3";
872
872
+
sha256 = "0nmzpgf5kj7gcjsjxhbhd8p4iw5clj4ljmckx59zndgwz02l7853";
953
873
type = "gem";
954
874
};
955
955
-
version = "3.0.2";
875
875
+
version = "3.1.0";
956
876
};
957
877
in_threads = {
958
878
groups = ["default"];
···
1022
942
platforms = [];
1023
943
source = {
1024
944
remotes = ["https://rubygems.org"];
1025
1025
-
sha256 = "1lsk71qh5d7bm1qqrjvcwhp4h71ckkdbzxnw4xkd9cin8gjfvvr6";
945
945
+
sha256 = "0kcmnx6rgjyd7sznai9ccns2nh7p7wnw3mi8a7vf2wkm51azwddq";
1026
946
type = "gem";
1027
947
};
1028
1028
-
version = "2.4.1";
948
948
+
version = "2.5.0";
1029
949
};
1030
950
kgio = {
1031
951
groups = ["default"];
···
1111
1031
platforms = [];
1112
1032
source = {
1113
1033
remotes = ["https://rubygems.org"];
1114
1114
-
sha256 = "15kcv5agmash3szsl4aj5ns4daxp439w8czw0fvq4qgf92y4fi8s";
1034
1034
+
sha256 = "01n1ynk2xa94za8hhqy3xzfwhm24zhh3x5yllziyz3zjxxrj7fxc";
1115
1035
type = "gem";
1116
1036
};
1117
1117
-
version = "2.11.2";
1037
1037
+
version = "2.11.3";
1118
1038
};
1119
1039
loofah = {
1120
1040
dependencies = ["crass" "nokogiri"];
···
1122
1042
platforms = [];
1123
1043
source = {
1124
1044
remotes = ["https://rubygems.org"];
1125
1125
-
sha256 = "18ymp6l3bv7abz07k6qbbi9c9vsiahq30d2smh4qzsvag8j5m5v1";
1045
1045
+
sha256 = "1fpyk1965py77al7iadkn5dibwgvybknkr7r8bii2dj73wvr29rh";
1126
1046
type = "gem";
1127
1047
};
1128
1128
-
version = "2.18.0";
1048
1048
+
version = "2.19.0";
1129
1049
};
1130
1050
lru_redux = {
1131
1051
groups = ["default"];
···
1166
1086
};
1167
1087
version = "2.8.0.edge";
1168
1088
};
1089
1089
+
matrix = {
1090
1090
+
groups = ["default" "test"];
1091
1091
+
platforms = [];
1092
1092
+
source = {
1093
1093
+
remotes = ["https://rubygems.org"];
1094
1094
+
sha256 = "1h2cgkpzkh3dd0flnnwfq6f3nl2b1zff9lvqz8xs853ssv5kq23i";
1095
1095
+
type = "gem";
1096
1096
+
};
1097
1097
+
version = "0.4.2";
1098
1098
+
};
1169
1099
maxminddb = {
1170
1100
groups = ["default"];
1171
1101
platforms = [];
···
1237
1167
platforms = [];
1238
1168
source = {
1239
1169
remotes = ["https://rubygems.org"];
1240
1240
-
sha256 = "0jf9qjz3r06asz14b6f3z7f2y437a1viqfp52sdi71ipj7dk70bs";
1170
1170
+
sha256 = "0i4vbb1549rxbl8a35yaizfkbh28nxby5mcwri5mz3x19yg3p6r8";
1241
1171
type = "gem";
1242
1172
};
1243
1243
-
version = "0.6.2";
1173
1173
+
version = "0.6.3";
1244
1174
};
1245
1175
mini_scheduler = {
1246
1176
dependencies = ["sidekiq"];
···
1279
1209
platforms = [];
1280
1210
source = {
1281
1211
remotes = ["https://rubygems.org"];
1282
1282
-
sha256 = "14a9ign0hj3z3j4cpfplj2djaskx3skzyx4fl3x53d7saxmhrgn1";
1212
1212
+
sha256 = "0516ypqlx0mlcfn5xh7qppxqc3xndn1fnadxawa8wld5dkcimy30";
1283
1213
type = "gem";
1284
1214
};
1285
1285
-
version = "5.16.2";
1215
1215
+
version = "5.16.3";
1286
1216
};
1287
1217
mocha = {
1288
1218
groups = ["development" "test"];
1289
1219
platforms = [];
1290
1220
source = {
1291
1221
remotes = ["https://rubygems.org"];
1292
1292
-
sha256 = "0ffd7zn24lwhp3xp747jfg4zxgqbm04ar7shhjy2iv5xg1pz01lr";
1222
1222
+
sha256 = "0z2nzk106b6af6n0d9xqf2sphaff4gpjgxvwqcmvy6k719hqhkh9";
1293
1223
type = "gem";
1294
1224
};
1295
1295
-
version = "1.14.0";
1225
1225
+
version = "1.15.0";
1296
1226
};
1297
1227
msgpack = {
1298
1228
groups = ["default"];
···
1303
1233
}];
1304
1234
source = {
1305
1235
remotes = ["https://rubygems.org"];
1306
1306
-
sha256 = "02af38s49111wglqzcjcpa7bwg6psjgysrjvgk05h3x4zchb6gd5";
1236
1236
+
sha256 = "01sw335w8wl6rjz8raa8xkxnk36d7ib7zqkc9gdibmplar4x1fqg";
1307
1237
type = "gem";
1308
1238
};
1309
1309
-
version = "1.5.4";
1239
1239
+
version = "1.5.6";
1310
1240
};
1311
1241
multi_json = {
1312
1242
groups = ["default"];
···
1328
1258
};
1329
1259
version = "0.6.0";
1330
1260
};
1331
1331
-
multipart-post = {
1332
1332
-
groups = ["default"];
1333
1333
-
platforms = [];
1334
1334
-
source = {
1335
1335
-
remotes = ["https://rubygems.org"];
1336
1336
-
sha256 = "1n0kvnrcrjn31jb97kcx3wj1f5kkjza7yygfq8rxzf3i57g7jaa6";
1337
1337
-
type = "gem";
1338
1338
-
};
1339
1339
-
version = "2.2.3";
1340
1340
-
};
1341
1261
mustache = {
1342
1262
groups = ["default"];
1343
1263
platforms = [];
···
1360
1280
version = "0.2.2";
1361
1281
};
1362
1282
net-imap = {
1363
1363
-
dependencies = ["digest" "net-protocol" "strscan"];
1283
1283
+
dependencies = ["net-protocol"];
1364
1284
groups = ["default"];
1365
1285
platforms = [];
1366
1286
source = {
1367
1287
remotes = ["https://rubygems.org"];
1368
1368
-
sha256 = "1rl79ykmxa2k4dlk6ykrb9l0a4h101q1gd8c4qv3cl0p9h68zmbn";
1288
1288
+
sha256 = "0jn5bkvmsfxha6fn19k4sy03jh9mi96aj3wgci42fvxhh69z54kk";
1369
1289
type = "gem";
1370
1290
};
1371
1371
-
version = "0.2.3";
1291
1291
+
version = "0.3.0";
1372
1292
};
1373
1293
net-pop = {
1374
1374
-
dependencies = ["digest" "net-protocol" "timeout"];
1294
1294
+
dependencies = ["net-protocol"];
1375
1295
groups = ["default"];
1376
1296
platforms = [];
1377
1297
source = {
1378
1298
remotes = ["https://rubygems.org"];
1379
1379
-
sha256 = "1slsl3xlbf0cqzmf2q1rfqbm61xvxzmr0h9zprwlbm1xn1cvn9xb";
1299
1299
+
sha256 = "1wyz41jd4zpjn0v1xsf9j778qx1vfrl24yc20cpmph8k42c4x2w4";
1380
1300
type = "gem";
1381
1301
};
1382
1382
-
version = "0.1.1";
1302
1302
+
version = "0.1.2";
1383
1303
};
1384
1304
net-protocol = {
1385
1305
dependencies = ["timeout"];
···
1393
1313
version = "0.1.3";
1394
1314
};
1395
1315
net-smtp = {
1396
1396
-
dependencies = ["digest" "net-protocol" "timeout"];
1316
1316
+
dependencies = ["net-protocol"];
1397
1317
groups = ["default"];
1398
1318
platforms = [];
1399
1319
source = {
1400
1320
remotes = ["https://rubygems.org"];
1401
1401
-
sha256 = "1s358kfv9mnfxcjbpr1d5a2gs1q7wkw7ffpn86mf1b3s9p31bw9s";
1321
1321
+
sha256 = "0d1y3nkgwypfsivip8vzphs3a01a40ds4ng8i314fpr9fdk48dad";
1402
1322
type = "gem";
1403
1323
};
1404
1404
-
version = "0.3.1";
1324
1324
+
version = "0.3.2";
1405
1325
};
1406
1326
nio4r = {
1407
1327
groups = ["default"];
···
1425
1345
version = "1.13.8";
1426
1346
};
1427
1347
oauth = {
1348
1348
+
dependencies = ["oauth-tty" "snaky_hash" "version_gem"];
1349
1349
+
groups = ["default"];
1350
1350
+
platforms = [];
1351
1351
+
source = {
1352
1352
+
remotes = ["https://rubygems.org"];
1353
1353
+
sha256 = "1syx3hfimaqycy21kn8gmal1cb3bw3hzalv3in2ixnay1xzjp41q";
1354
1354
+
type = "gem";
1355
1355
+
};
1356
1356
+
version = "1.1.0";
1357
1357
+
};
1358
1358
+
oauth-tty = {
1359
1359
+
dependencies = ["version_gem"];
1428
1360
groups = ["default"];
1429
1361
platforms = [];
1430
1362
source = {
1431
1363
remotes = ["https://rubygems.org"];
1432
1432
-
sha256 = "1asrxrbgzgzf1r9rb0c785zyyaq9v5z7v3k1avsais2sh9q1y763";
1364
1364
+
sha256 = "1mjmiz82f3p81mipy4skhpbvsv55mcv20qan3m1avdm1ama5fr55";
1433
1365
type = "gem";
1434
1366
};
1435
1435
-
version = "0.5.10";
1367
1367
+
version = "1.0.3";
1436
1368
};
1437
1369
oauth2 = {
1438
1370
dependencies = ["faraday" "jwt" "multi_json" "multi_xml" "rack"];
···
1440
1372
platforms = [];
1441
1373
source = {
1442
1374
remotes = ["https://rubygems.org"];
1443
1443
-
sha256 = "1q6q2kgpxmygk8kmxqn54zkw8cs57a34zzz5cxpsh1bj3ag06rk3";
1375
1375
+
sha256 = "042w5lamxhllfxsv0y8v9cvdhmlasy5kxbhcdd3lzj9bhz4gqfb7";
1444
1376
type = "gem";
1445
1377
};
1446
1446
-
version = "1.4.7";
1378
1378
+
version = "1.4.11";
1447
1379
};
1448
1380
oj = {
1449
1381
groups = ["default"];
···
1461
1393
platforms = [];
1462
1394
source = {
1463
1395
remotes = ["https://rubygems.org"];
1464
1464
-
sha256 = "002vi9gwamkmhf0dsj2im1d47xw2n1jfhnzl18shxf3ampkqfmyz";
1396
1396
+
sha256 = "1jn9j54l5h7xcba2vjq74l1dk0xrwvsjxam4qhylpi52nw0h5502";
1465
1397
type = "gem";
1466
1398
};
1467
1467
-
version = "1.9.1";
1399
1399
+
version = "1.9.2";
1468
1400
};
1469
1401
omniauth-facebook = {
1470
1402
dependencies = ["omniauth-oauth2"];
···
1516
1448
platforms = [];
1517
1449
source = {
1518
1450
remotes = ["https://rubygems.org"];
1519
1519
-
sha256 = "1ry65f309rnzhgdjvqybkd5i4qp9rpk1gbp4dz02h4l6bkk6ya10";
1451
1451
+
sha256 = "0ia73zcbmhf02krlkq2rxmksx93jp777ax5x58fzkq3jzacqyniz";
1520
1452
type = "gem";
1521
1453
};
1522
1522
-
version = "1.7.2";
1454
1454
+
version = "1.7.3";
1523
1455
};
1524
1456
omniauth-twitter = {
1525
1457
dependencies = ["omniauth-oauth" "rack"];
···
1537
1469
platforms = [];
1538
1470
source = {
1539
1471
remotes = ["https://rubygems.org"];
1540
1540
-
sha256 = "1azzx975qr078isvg8i0hmsr2l98kgnlfrnbb2jdm9b5kwifx1h4";
1472
1472
+
sha256 = "0n2fhxa2alw3qxhg6qlxs0v6f8rsadhp6r6sv33i9fh793k2zpr3";
1541
1473
type = "gem";
1542
1474
};
1543
1543
-
version = "3.0.0";
1475
1475
+
version = "3.0.1";
1544
1476
};
1545
1477
openssl-signature_algorithm = {
1546
1478
dependencies = ["openssl"];
···
1583
1515
platforms = [];
1584
1516
source = {
1585
1517
remotes = ["https://rubygems.org"];
1586
1586
-
sha256 = "1jgqdwfgd4g3mfi854f2n0v615z3n59l24nya7v6cdnaixn5x02y";
1518
1518
+
sha256 = "00c71f7hzgs58syyh6b5wwfhlxyhhg9h8sjkqxvxd1i8nlaa3m8x";
1587
1519
type = "gem";
1588
1520
};
1589
1589
-
version = "3.11.1";
1521
1521
+
version = "3.13.0";
1590
1522
};
1591
1523
parser = {
1592
1524
dependencies = ["ast"];
···
1625
1557
platforms = [];
1626
1558
source = {
1627
1559
remotes = ["https://rubygems.org"];
1628
1628
-
sha256 = "0iyw4q4an2wmk8v5rn2ghfy2jaz9vmw2nk8415nnpx2s866934qk";
1560
1560
+
sha256 = "0m445x8fwcjdyv2bc0glzss2nbm1ll51bq45knixapc7cl3dzdlr";
1629
1561
type = "gem";
1630
1562
};
1631
1631
-
version = "0.13.1";
1563
1563
+
version = "0.14.1";
1632
1564
};
1633
1565
pry-byebug = {
1634
1566
dependencies = ["byebug" "pry"];
···
1636
1568
platforms = [];
1637
1569
source = {
1638
1570
remotes = ["https://rubygems.org"];
1639
1639
-
sha256 = "096y5vmzpyy4x9h4ky4cs4y7d19vdq9vbwwrqafbh5gagzwhifiv";
1571
1571
+
sha256 = "1y41al94ks07166qbp2200yzyr5y60hm7xaiw4lxpgsm4b1pbyf8";
1640
1572
type = "gem";
1641
1573
};
1642
1642
-
version = "3.9.0";
1574
1574
+
version = "3.10.1";
1643
1575
};
1644
1576
pry-rails = {
1645
1577
dependencies = ["pry"];
···
1657
1589
platforms = [];
1658
1590
source = {
1659
1591
remotes = ["https://rubygems.org"];
1660
1660
-
sha256 = "1f3knlwfwm05sfbaihrxm4g772b79032q14c16q4b38z8bi63qcb";
1592
1592
+
sha256 = "0sqw1zls6227bgq38sxb2hs8nkdz4hn1zivs27mjbniswfy4zvi6";
1661
1593
type = "gem";
1662
1594
};
1663
1663
-
version = "4.0.7";
1595
1595
+
version = "5.0.0";
1664
1596
};
1665
1597
puma = {
1666
1598
dependencies = ["nio4r"];
···
1668
1600
platforms = [];
1669
1601
source = {
1670
1602
remotes = ["https://rubygems.org"];
1671
1671
-
sha256 = "0dgr2rybayih2naz3658mbzqwfrg9fxl80zsvhscf6b972kp3jdw";
1603
1603
+
sha256 = "0qzq0c791kacv68hgk9zqsd1p7zx1y1rr9j10rn9yphibb8jj436";
1672
1604
type = "gem";
1673
1605
};
1674
1674
-
version = "5.6.4";
1606
1606
+
version = "5.6.5";
1675
1607
};
1676
1608
r2 = {
1677
1609
groups = ["default"];
···
1724
1656
platforms = [];
1725
1657
source = {
1726
1658
remotes = ["https://rubygems.org"];
1727
1727
-
sha256 = "169jzzgvbjrqmz4q55wp9pg4ji2h90mggcdxy152gv5vp96l2hgx";
1659
1659
+
sha256 = "01wjwmby7kjv8967i2mvvj1h9phdwq2ci7xkk20nbv9xlimypqaz";
1728
1660
type = "gem";
1729
1661
};
1730
1730
-
version = "2.2.2";
1662
1662
+
version = "3.0.1";
1731
1663
};
1732
1664
rack-test = {
1733
1665
dependencies = ["rack"];
···
1836
1768
platforms = [];
1837
1769
source = {
1838
1770
remotes = ["https://rubygems.org"];
1839
1839
-
sha256 = "06c50pvxib7wqnv6q0f3n7gzfcrp5chi3sa48hxpkfxc3hhy11fm";
1771
1771
+
sha256 = "1zmf31rnpm8553lqwibvv3kkx0v7majm1f341xbxc0bk5sbhp423";
1840
1772
type = "gem";
1841
1773
};
1842
1842
-
version = "0.11.1";
1774
1774
+
version = "0.11.2";
1843
1775
};
1844
1776
rb-inotify = {
1845
1777
dependencies = ["ffi"];
···
1893
1825
platforms = [];
1894
1826
source = {
1895
1827
remotes = ["https://rubygems.org"];
1896
1896
-
sha256 = "0ndj4lcm8rw01078zr0249grsk93zbda8qsibdvlx69b5ijg1rzf";
1828
1828
+
sha256 = "04l61lpb3s2xkwj36l7b543lhciv19z514kxnmnbh5fg70grc8q9";
1897
1829
type = "gem";
1898
1830
};
1899
1899
-
version = "1.8.2";
1831
1831
+
version = "1.9.0";
1900
1832
};
1901
1833
regexp_parser = {
1902
1834
groups = ["default" "development" "test"];
1903
1835
platforms = [];
1904
1836
source = {
1905
1837
remotes = ["https://rubygems.org"];
1906
1906
-
sha256 = "1rfd3q17p7q7pa67844q8b16ipy6ksh8mkzynpm1zldqbb9x4xm0";
1838
1838
+
sha256 = "0mm5sykyblc61a82zz3dag6yy3mvflj2z47060kjzjj5793blqzi";
1907
1839
type = "gem";
1908
1840
};
1909
1909
-
version = "2.5.0";
1841
1841
+
version = "2.6.0";
1910
1842
};
1911
1843
request_store = {
1912
1844
dependencies = ["rack"];
···
1998
1930
platforms = [];
1999
1931
source = {
2000
1932
remotes = ["https://rubygems.org"];
2001
2001
-
sha256 = "001ihayil7jpfxdlxlhakvz02kx0nk5m1w0bz6z8izdx0nc8bh53";
1933
1933
+
sha256 = "0l1bzk6a68i1b2qix83vs40r0pbjawv67hixiq2qxsja19bbq3bc";
2002
1934
type = "gem";
2003
1935
};
2004
2004
-
version = "3.11.0";
1936
1936
+
version = "3.11.1";
2005
1937
};
2006
1938
rspec-html-matchers = {
2007
1939
dependencies = ["nokogiri" "rspec"];
···
2041
1973
platforms = [];
2042
1974
source = {
2043
1975
remotes = ["https://rubygems.org"];
2044
2044
-
sha256 = "0xfk4pla77251n39zf4n792m1rhg5sn1kp63yvpvvysany34la03";
1976
1976
+
sha256 = "1c01iicvrjk6vv744jgh0y4kk9d0kg2rd2ihdyzvg5p06xm2fpzq";
2045
1977
type = "gem";
2046
1978
};
2047
2047
-
version = "3.11.0";
1979
1979
+
version = "3.11.1";
2048
1980
};
2049
1981
rss = {
2050
1982
dependencies = ["rexml"];
···
2063
1995
platforms = [];
2064
1996
source = {
2065
1997
remotes = ["https://rubygems.org"];
2066
2066
-
sha256 = "00gm5qbf56shi655hwxzas74avsfv8b91v6i8v06i4jdw8y4qky2";
1998
1998
+
sha256 = "1rvjsw01b51ag60zr2pymldzwz6jp7pl0y0lkfq2js1v0cggjdyb";
2067
1999
type = "gem";
2068
2000
};
2069
2069
-
version = "2.5.1";
2001
2001
+
version = "2.6.0";
2070
2002
};
2071
2003
rubocop = {
2072
2004
dependencies = ["json" "parallel" "parser" "rainbow" "regexp_parser" "rexml" "rubocop-ast" "ruby-progressbar" "unicode-display_width"];
···
2074
2006
platforms = [];
2075
2007
source = {
2076
2008
remotes = ["https://rubygems.org"];
2077
2077
-
sha256 = "1n08wns7qaxja8g5fnixicybj1rdq3cjli33l7v1856saizp9lpf";
2009
2009
+
sha256 = "1b7zc3gissn5ki7zz2szg1mlxn8zqhgb3bdv96cl25w4mgf4g3in";
2078
2010
type = "gem";
2079
2011
};
2080
2080
-
version = "1.34.1";
2012
2012
+
version = "1.36.0";
2081
2013
};
2082
2014
rubocop-ast = {
2083
2015
dependencies = ["parser"];
···
2095
2027
groups = ["development" "test"];
2096
2028
platforms = [];
2097
2029
source = {
2098
2098
-
fetchSubmodules = false;
2099
2099
-
rev = "a5aea6e5f150b1eb7765a805bec0ff618cb718b3";
2100
2100
-
sha256 = "1h25i2ykp1m0j07ij0gq2p632ri01lnykwl3lcishmxncddcz247";
2101
2101
-
type = "git";
2102
2102
-
url = "https://github.com/discourse/rubocop-discourse.git";
2030
2030
+
remotes = ["https://rubygems.org"];
2031
2031
+
sha256 = "1afsyw78pkv1ry5x5ww0krv75lg2lnv7b72sy9bbk6ni87fzsk1q";
2032
2032
+
type = "gem";
2103
2033
};
2104
2104
-
version = "2.5.0";
2034
2034
+
version = "3.0";
2105
2035
};
2106
2036
rubocop-rspec = {
2107
2037
dependencies = ["rubocop"];
···
2109
2039
platforms = [];
2110
2040
source = {
2111
2041
remotes = ["https://rubygems.org"];
2112
2112
-
sha256 = "1y93hhhcs2j7z8gz8xagwwjs243rskryx4fm62piq9i58lnx4y4j";
2042
2042
+
sha256 = "1acfcw78w5mgsj34w5drizl4pzp3ivk67z98k1jxqmja75l7rxxc";
2113
2043
type = "gem";
2114
2044
};
2115
2115
-
version = "2.12.1";
2045
2045
+
version = "2.13.2";
2116
2046
};
2117
2047
ruby-prof = {
2118
2048
groups = ["development"];
···
2213
2143
};
2214
2144
version = "2.3.9";
2215
2145
};
2146
2146
+
selenium-webdriver = {
2147
2147
+
dependencies = ["childprocess" "rexml" "rubyzip" "websocket"];
2148
2148
+
groups = ["test"];
2149
2149
+
platforms = [];
2150
2150
+
source = {
2151
2151
+
remotes = ["https://rubygems.org"];
2152
2152
+
sha256 = "0fp7h5bnlqp649imgpnshgf3mxl8zwnpsl1ak1giii81r0cd6in3";
2153
2153
+
type = "gem";
2154
2154
+
};
2155
2155
+
version = "4.5.0";
2156
2156
+
};
2216
2157
shoulda-matchers = {
2217
2158
dependencies = ["activesupport"];
2218
2159
groups = ["development" "test"];
2219
2160
platforms = [];
2220
2161
source = {
2221
2162
remotes = ["https://rubygems.org"];
2222
2222
-
sha256 = "01svmyma958sbqfz0v29lbqbr0ibvgcng352nhx6bsc9k5c207d0";
2163
2163
+
sha256 = "11hv1xk153sspi6iif7a2m64shshpjr37l44c8qnqlfpzv0dxlm2";
2223
2164
type = "gem";
2224
2165
};
2225
2225
-
version = "5.1.0";
2166
2166
+
version = "5.2.0";
2226
2167
};
2227
2168
sidekiq = {
2228
2169
dependencies = ["connection_pool" "rack" "redis"];
···
2230
2171
platforms = [];
2231
2172
source = {
2232
2173
remotes = ["https://rubygems.org"];
2233
2233
-
sha256 = "1zyq0faxkrk9jxqchzjlazpycjh8fg33h84qi654yv9c7a146r2z";
2174
2174
+
sha256 = "0p2mj2jj5b9wqmpvkngx87lfr2qgwhqvwx38bmhl5aa29pc6z5kx";
2234
2175
type = "gem";
2235
2176
};
2236
2236
-
version = "6.5.4";
2177
2177
+
version = "6.5.7";
2237
2178
};
2238
2179
simplecov = {
2239
2180
dependencies = ["docile" "simplecov-html" "simplecov_json_formatter"];
···
2266
2207
};
2267
2208
version = "0.1.4";
2268
2209
};
2210
2210
+
snaky_hash = {
2211
2211
+
dependencies = ["hashie" "version_gem"];
2212
2212
+
groups = ["default"];
2213
2213
+
platforms = [];
2214
2214
+
source = {
2215
2215
+
remotes = ["https://rubygems.org"];
2216
2216
+
sha256 = "1pl70rh92wsn15q4lwzikzi7j5a00vm77bqjg07k4sgzx0wjx2zy";
2217
2217
+
type = "gem";
2218
2218
+
};
2219
2219
+
version = "2.0.0";
2220
2220
+
};
2269
2221
sprockets = {
2270
2222
dependencies = ["concurrent-ruby" "rack"];
2271
2223
groups = ["default"];
···
2307
2259
}];
2308
2260
source = {
2309
2261
remotes = ["https://rubygems.org"];
2310
2310
-
sha256 = "17ih8nb2v4adihb8fihmja72f55dm0ds92j8asadsjm9mpci4bgc";
2311
2311
-
type = "gem";
2312
2312
-
};
2313
2313
-
version = "0.2.20";
2314
2314
-
};
2315
2315
-
strscan = {
2316
2316
-
groups = ["default"];
2317
2317
-
platforms = [];
2318
2318
-
source = {
2319
2319
-
remotes = ["https://rubygems.org"];
2320
2320
-
sha256 = "00ip0m5ad5ywkj4na07qxcyi9wgdh6b877s0ibx5al23abzkxak9";
2262
2262
+
sha256 = "1bpmrz2vw59gw556y5hsha3xlrvfv4qwck4wg2r39qf2bp2hcr1b";
2321
2263
type = "gem";
2322
2264
};
2323
2323
-
version = "3.0.4";
2265
2265
+
version = "0.2.21";
2324
2266
};
2325
2267
test-prof = {
2326
2268
groups = ["test"];
2327
2269
platforms = [];
2328
2270
source = {
2329
2271
remotes = ["https://rubygems.org"];
2330
2330
-
sha256 = "1xxw3w131mymawr94zkw5y5wgywix53rakfm0bq8s9ccqdx9mm9v";
2272
2272
+
sha256 = "1kcmayrkhf0znxpny8f6ca9ljbfv7kdsbig3spy5ylgsv2mjkvzs";
2331
2273
type = "gem";
2332
2274
};
2333
2333
-
version = "1.0.9";
2275
2275
+
version = "1.0.10";
2334
2276
};
2335
2277
thor = {
2336
2278
groups = ["default" "development" "test"];
···
2410
2352
platforms = [];
2411
2353
source = {
2412
2354
remotes = ["https://rubygems.org"];
2413
2413
-
sha256 = "1nlfck6z986fngp0r74maswmyb1rcksc8xc3mfpw9cj23c3s8zwn";
2355
2355
+
sha256 = "0ra70s8prfacpqwj5v2mqn1rbfz6xds3n9nsr9cwzs3z2c0wm5j7";
2414
2356
type = "gem";
2415
2357
};
2416
2416
-
version = "2.2.0";
2358
2358
+
version = "2.3.0";
2417
2359
};
2418
2360
unicorn = {
2419
2361
dependencies = ["kgio" "raindrops"];
···
2462
2404
};
2463
2405
version = "0.7.0";
2464
2406
};
2407
2407
+
version_gem = {
2408
2408
+
groups = ["default"];
2409
2409
+
platforms = [];
2410
2410
+
source = {
2411
2411
+
remotes = ["https://rubygems.org"];
2412
2412
+
sha256 = "104s7p4zp5yvf0bvbwd9mqmnkgz2z89h4hbvxi8pzd8d08c9a03b";
2413
2413
+
type = "gem";
2414
2414
+
};
2415
2415
+
version = "1.1.0";
2416
2416
+
};
2417
2417
+
webdrivers = {
2418
2418
+
dependencies = ["nokogiri" "rubyzip" "selenium-webdriver"];
2419
2419
+
groups = ["test"];
2420
2420
+
platforms = [];
2421
2421
+
source = {
2422
2422
+
remotes = ["https://rubygems.org"];
2423
2423
+
sha256 = "0j8kbn592rm11mnyrdq6xp35arfpn9xr0bbkh5imcwpw3wslcfli";
2424
2424
+
type = "gem";
2425
2425
+
};
2426
2426
+
version = "5.1.0";
2427
2427
+
};
2465
2428
webmock = {
2466
2429
dependencies = ["addressable" "crack" "hashdiff"];
2467
2430
groups = ["test"];
2468
2431
platforms = [];
2469
2432
source = {
2470
2433
remotes = ["https://rubygems.org"];
2471
2471
-
sha256 = "06jbjl78szxkri3wx0mzsdhx2z2af11kp35k5rsrppchbssgagcj";
2434
2434
+
sha256 = "1myj44wvbbqvv18ragv3ihl0h61acgnfwrnj3lccdgp49bgmbjal";
2472
2435
type = "gem";
2473
2436
};
2474
2474
-
version = "3.17.1";
2437
2437
+
version = "3.18.1";
2475
2438
};
2476
2439
webpush = {
2477
2440
dependencies = ["hkdf" "jwt"];
···
2484
2447
};
2485
2448
version = "1.1.0";
2486
2449
};
2450
2450
+
websocket = {
2451
2451
+
groups = ["default" "test"];
2452
2452
+
platforms = [];
2453
2453
+
source = {
2454
2454
+
remotes = ["https://rubygems.org"];
2455
2455
+
sha256 = "0dib6p55sl606qb4vpwrvj5wh881kk4aqn2zpfapf8ckx7g14jw8";
2456
2456
+
type = "gem";
2457
2457
+
};
2458
2458
+
version = "1.2.9";
2459
2459
+
};
2487
2460
xorcist = {
2488
2461
groups = ["default"];
2489
2462
platforms = [];
···
2493
2466
type = "gem";
2494
2467
};
2495
2468
version = "1.1.3";
2469
2469
+
};
2470
2470
+
xpath = {
2471
2471
+
dependencies = ["nokogiri"];
2472
2472
+
groups = ["default" "test"];
2473
2473
+
platforms = [];
2474
2474
+
source = {
2475
2475
+
remotes = ["https://rubygems.org"];
2476
2476
+
sha256 = "0bh8lk9hvlpn7vmi6h4hkcwjzvs2y0cmkk3yjjdr8fxvj6fsgzbd";
2477
2477
+
type = "gem";
2478
2478
+
};
2479
2479
+
version = "3.2.0";
2496
2480
};
2497
2481
yaml-lint = {
2498
2482
groups = ["development"];