freshjots 0.3.0 → 1.0.1
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 +3 -2
- data/lib/freshjots/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: 6b70740d8472846a87acccd76efe36aadc83833b6e6b0fa738295b587ceb2d33
|
|
4
|
+
data.tar.gz: b3042b5659265afbbf9ae5976bda9bc3b244f13e79512d2c8bec928052f4381b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c250facdcedaf5a232d912675e12bcec71ef80e100a4e09d580dae4baefa60a0534b4e699d16a12f155bfba852ed5ba0ed4e713629ec452fd3916a59d589711a
|
|
7
|
+
data.tar.gz: 38d7689404fe5edde962d9a69ea3299a28c99d87b5b598fa865b179b81ef79f6bad49746073c400e81bc50f24fd6f85af9d483ef15b4f4d63dbe5e756e7656d9
|
data/README.md
CHANGED
|
@@ -75,10 +75,11 @@ Stable error codes: `unauthenticated`, `forbidden`, `not_found`,
|
|
|
75
75
|
## Auth
|
|
76
76
|
|
|
77
77
|
Mint a token at <https://freshjots.com/settings/api_tokens> (Pro or
|
|
78
|
-
Team tier required). Set it once
|
|
78
|
+
Team tier required). Set it once, persisted for every new shell
|
|
79
|
+
(macOS defaults to zsh; use `~/.bashrc` on bash):
|
|
79
80
|
|
|
80
81
|
```sh
|
|
81
|
-
export FRESHJOTS_TOKEN=<your-token>
|
|
82
|
+
echo 'export FRESHJOTS_TOKEN=<your-token>' >> ~/.zshrc && source ~/.zshrc
|
|
82
83
|
```
|
|
83
84
|
|
|
84
85
|
Or pass explicitly:
|
data/lib/freshjots/version.rb
CHANGED