Skip to content

Commit 9bcd1a6

Browse files
committed
nix: adding gemspec
1 parent 5666088 commit 9bcd1a6

2 files changed

Lines changed: 96 additions & 1 deletion

File tree

gemset.nix

Lines changed: 95 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,95 @@
1+
{
2+
blockfrost-ruby = {
3+
groups = ["default"];
4+
platforms = [];
5+
source = {
6+
path = ./.;
7+
type = "path";
8+
};
9+
version = "0.1.0";
10+
};
11+
diff-lcs = {
12+
groups = ["default"];
13+
platforms = [];
14+
source = {
15+
remotes = ["https://rubygems.org"];
16+
sha256 = "0rwvjahnp7cpmracd8x732rjgnilqv2sx7d1gfrysslc3h039fa9";
17+
type = "gem";
18+
};
19+
version = "1.5.0";
20+
};
21+
dotenv = {
22+
groups = ["default"];
23+
platforms = [];
24+
source = {
25+
remotes = ["https://rubygems.org"];
26+
sha256 = "1n0pi8x8ql5h1mijvm8lgn6bhq4xjb5a500p5r1krq4s6j9lg565";
27+
type = "gem";
28+
};
29+
version = "2.8.1";
30+
};
31+
rake = {
32+
groups = ["default"];
33+
platforms = [];
34+
source = {
35+
remotes = ["https://rubygems.org"];
36+
sha256 = "15whn7p9nrkxangbs9hh75q585yfn66lv0v2mhj6q6dl6x8bzr2w";
37+
type = "gem";
38+
};
39+
version = "13.0.6";
40+
};
41+
rspec = {
42+
dependencies = ["rspec-core" "rspec-expectations" "rspec-mocks"];
43+
groups = ["default"];
44+
platforms = [];
45+
source = {
46+
remotes = ["https://rubygems.org"];
47+
sha256 = "171rc90vcgjl8p1bdrqa92ymrj8a87qf6w20x05xq29mljcigi6c";
48+
type = "gem";
49+
};
50+
version = "3.12.0";
51+
};
52+
rspec-core = {
53+
dependencies = ["rspec-support"];
54+
groups = ["default"];
55+
platforms = [];
56+
source = {
57+
remotes = ["https://rubygems.org"];
58+
sha256 = "1ibb81slc35q5yp276sixp3yrvj9q92wlmi1glbnwlk6g49z8rn4";
59+
type = "gem";
60+
};
61+
version = "3.12.0";
62+
};
63+
rspec-expectations = {
64+
dependencies = ["diff-lcs" "rspec-support"];
65+
groups = ["default"];
66+
platforms = [];
67+
source = {
68+
remotes = ["https://rubygems.org"];
69+
sha256 = "0qldsmjhqr4344zdlamzggr3y98wdk2c4hihkhwx8imk800gkl8v";
70+
type = "gem";
71+
};
72+
version = "3.12.0";
73+
};
74+
rspec-mocks = {
75+
dependencies = ["diff-lcs" "rspec-support"];
76+
groups = ["default"];
77+
platforms = [];
78+
source = {
79+
remotes = ["https://rubygems.org"];
80+
sha256 = "1yvwnb0x5d6d4ff3wlgahk0wcw72ic51gd2snr1xxc5ify41kabv";
81+
type = "gem";
82+
};
83+
version = "3.12.0";
84+
};
85+
rspec-support = {
86+
groups = ["default"];
87+
platforms = [];
88+
source = {
89+
remotes = ["https://rubygems.org"];
90+
sha256 = "12y52zwwb3xr7h91dy9k3ndmyyhr3mjcayk0nnarnrzz8yr48kfx";
91+
type = "gem";
92+
};
93+
version = "3.12.0";
94+
};
95+
}

shell.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@ let
88
};
99
in stdenv.mkDerivation {
1010
name = "blockfrost-ruby";
11-
buildInputs = [ env ruby nodejs ];
11+
buildInputs = [ env ruby nodejs git rubyPackages_3_1.rake rubyPackages_3_1.rspec ];
1212
}

0 commit comments

Comments
 (0)