tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
0
fork
atom
overview
issues
pulls
pipelines
bundler-audit: 0.6.1 -> 0.7.0.1
Michael Weiss
5 years ago
dde87455
1d924f03
+12
-7
3 changed files
expand all
collapse all
unified
split
pkgs
tools
security
bundler-audit
Gemfile.lock
default.nix
gemset.nix
+3
-3
pkgs/tools/security/bundler-audit/Gemfile.lock
···
1
1
GEM
2
2
remote: https://rubygems.org/
3
3
specs:
4
4
-
bundler-audit (0.6.1)
4
4
+
bundler-audit (0.7.0.1)
5
5
bundler (>= 1.2.0, < 3)
6
6
-
thor (~> 0.18)
7
7
-
thor (0.20.3)
6
6
+
thor (>= 0.18, < 2)
7
7
+
thor (1.0.1)
8
8
9
9
PLATFORMS
10
10
ruby
+1
pkgs/tools/security/bundler-audit/default.nix
···
21
21
- Does not require a network connection.
22
22
'';
23
23
homepage = "https://github.com/rubysec/bundler-audit";
24
24
+
changelog = "https://github.com/rubysec/bundler-audit/blob/v${version}/ChangeLog.md";
24
25
license = licenses.gpl3Plus;
25
26
maintainers = with maintainers; [ primeos nicknovitski ];
26
27
platforms = platforms.unix;
+8
-4
pkgs/tools/security/bundler-audit/gemset.nix
···
1
1
{
2
2
bundler-audit = {
3
3
dependencies = ["thor"];
4
4
+
groups = ["default"];
5
5
+
platforms = [];
4
6
source = {
5
7
remotes = ["https://rubygems.org"];
6
6
-
sha256 = "0pm22xpn3xyymsainixnrk8v3l3xi9bzwkjkspx00cfzp84xvxbq";
8
8
+
sha256 = "04l9rs56rlvihbr2ybkrigjajgd3swa98lxvmdl8iylj1g5m7n0j";
7
9
type = "gem";
8
10
};
9
9
-
version = "0.6.1";
11
11
+
version = "0.7.0.1";
10
12
};
11
13
thor = {
14
14
+
groups = ["default"];
15
15
+
platforms = [];
12
16
source = {
13
17
remotes = ["https://rubygems.org"];
14
14
-
sha256 = "1yhrnp9x8qcy5vc7g438amd5j9sw83ih7c30dr6g6slgw9zj3g29";
18
18
+
sha256 = "1xbhkmyhlxwzshaqa7swy2bx6vd64mm0wrr8g3jywvxy7hg0cwkm";
15
19
type = "gem";
16
20
};
17
17
-
version = "0.20.3";
21
21
+
version = "1.0.1";
18
22
};
19
23
}