metaractor 3.3.3 → 3.3.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +6 -48
- data/lib/metaractor/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: eac48231fc113f9844493fff4e4c679798f97369b6f5fdf73eaa334e3d560416
|
|
4
|
+
data.tar.gz: f0c4f4c7dee520927a8d6957fa16e9078250546a4bb2fc5731820a8807aca208
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1dfbdf5da9a96faa12023f409276fb25cd4b0ded28e3ae7014f4baf4deaec865e1c354d630bce57826c363d1ff74a0ba434f77f91aa3b8e43a7d8b68b26c3610
|
|
7
|
+
data.tar.gz: 266737d67f3b4e6d3d04b147ebc74dc89af1f657eea694624bb497589e65b561186d82047a21c7404b65e0361b36041ddc88654762fa1e00a7d2d9c2fcfeca0c
|
data/README.md
CHANGED
|
@@ -346,58 +346,16 @@ For more examples of all of the above approaches, please see the specs.
|
|
|
346
346
|
|
|
347
347
|
## Development
|
|
348
348
|
|
|
349
|
-
-
|
|
350
|
-
|
|
351
|
-
sh <(curl -L https://nixos.org/nix/install)
|
|
352
|
-
```
|
|
353
|
-
|
|
354
|
-
- Configure nix:
|
|
355
|
-
```sh
|
|
356
|
-
sudo tee -a /etc/nix/nix.conf <<EOF
|
|
357
|
-
auto-optimise-store = true
|
|
358
|
-
bash-prompt-prefix = (nix:$name)\040
|
|
359
|
-
experimental-features = nix-command flakes
|
|
360
|
-
extra-nix-path = nixpkgs=flake:nixpkgs
|
|
361
|
-
trusted-users = root $USER
|
|
362
|
-
EOF
|
|
363
|
-
|
|
364
|
-
sudo pkill nix-daemon
|
|
365
|
-
```
|
|
366
|
-
|
|
367
|
-
- Set up cachix:
|
|
368
|
-
```sh
|
|
369
|
-
nix profile install 'nixpkgs#cachix'
|
|
370
|
-
cachix use devenv
|
|
371
|
-
```
|
|
372
|
-
|
|
373
|
-
- Install devenv:
|
|
374
|
-
```sh
|
|
375
|
-
nix profile install --accept-flake-config github:cachix/devenv/latest
|
|
376
|
-
```
|
|
377
|
-
|
|
378
|
-
- Install direnv:
|
|
379
|
-
```sh
|
|
380
|
-
brew install direnv
|
|
381
|
-
```
|
|
382
|
-
|
|
383
|
-
- Add the following lines to your ~/.zshrc:
|
|
384
|
-
```sh
|
|
385
|
-
# Nix
|
|
386
|
-
if [ -e '/nix/var/nix/profiles/default/etc/profile.d/nix-daemon.sh' ]; then
|
|
387
|
-
. '/nix/var/nix/profiles/default/etc/profile.d/nix-daemon.sh'
|
|
388
|
-
fi
|
|
389
|
-
# End Nix
|
|
390
|
-
|
|
391
|
-
export DIRENV_LOG_FORMAT=
|
|
392
|
-
eval "$(direnv hook zsh)"
|
|
393
|
-
```
|
|
349
|
+
- `docker compose build --pull`
|
|
350
|
+
- `docker compose run --rm metaractor` to run specs
|
|
394
351
|
|
|
395
|
-
|
|
396
|
-
- `rspec spec`
|
|
352
|
+
or with the Deskfile loaded:
|
|
353
|
+
- `rspec spec`
|
|
397
354
|
|
|
398
355
|
To release a new version:
|
|
399
356
|
- Update the version number in `version.rb` and commit the result.
|
|
400
|
-
- `
|
|
357
|
+
- `docker compose build --pull`
|
|
358
|
+
- `docker compose run --rm release`
|
|
401
359
|
|
|
402
360
|
## Contributing
|
|
403
361
|
|
data/lib/metaractor/version.rb
CHANGED