journal-cli 1.0.21 → 1.0.22
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/CHANGELOG.md +8 -0
- data/README.md +1 -1
- data/lib/journal-cli/checkin.rb +1 -1
- data/lib/journal-cli/version.rb +1 -1
- data/src/_README.md +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1255e03e2644a0bb96f72622c8815595f41bec61e1add52529b697097f4b94f6
|
|
4
|
+
data.tar.gz: 613eca7fbaccd6536b3edd23da7160c337ad1bf7dc7dc509b41ddf85e788c478
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 34c25cc5c7c076f47dfa2fedd6bd7434dc8b7268b2662cef74bdcabbd6fdbe99b1a3882ad4c129e6c5434b169fd0d5a377bbeef78207e993b026125339386a96
|
|
7
|
+
data.tar.gz: 3a1fccc6120ed77cc602a1448a9949b49aa42ea658d3c93d11de7d77aad9a6bc0e707ac125f0faaa93bad5bb3de2b921fe35f57afd1a112a01982ce5bc9b01b6
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
|
@@ -32,7 +32,7 @@ $ brew install gum
|
|
|
32
32
|
If you want to use Day One with Journal, you'll need to [install the Day One CLI](https://dayoneapp.com/guides/tips-and-tutorials/command-line-interface-cli/). It's just one command:
|
|
33
33
|
|
|
34
34
|
```
|
|
35
|
-
sudo bash /Applications/Day\ One.app/Contents/Resources/install_cli.sh
|
|
35
|
+
$ sudo bash /Applications/Day\ One.app/Contents/Resources/install_cli.sh
|
|
36
36
|
```
|
|
37
37
|
|
|
38
38
|
## Configuration
|
data/lib/journal-cli/checkin.rb
CHANGED
|
@@ -121,7 +121,7 @@ module Journal
|
|
|
121
121
|
|
|
122
122
|
FileUtils.mkdir_p(dir) unless File.directory?(dir)
|
|
123
123
|
@date.localtime
|
|
124
|
-
filename = @date.strftime('%Y-%m-%d_%H
|
|
124
|
+
filename = @date.strftime('%Y-%m-%d_%H%M.md')
|
|
125
125
|
target = File.join(dir, filename)
|
|
126
126
|
File.open(target, 'w') { |f| f.puts to_markdown(yaml: true, title: true) }
|
|
127
127
|
puts "Saved new entry to #{target}"
|
data/lib/journal-cli/version.rb
CHANGED
data/src/_README.md
CHANGED
|
@@ -35,7 +35,7 @@ $ brew install gum
|
|
|
35
35
|
If you want to use Day One with Journal, you'll need to [install the Day One CLI](https://dayoneapp.com/guides/tips-and-tutorials/command-line-interface-cli/). It's just one command:
|
|
36
36
|
|
|
37
37
|
```
|
|
38
|
-
sudo bash /Applications/Day\ One.app/Contents/Resources/install_cli.sh
|
|
38
|
+
$ sudo bash /Applications/Day\ One.app/Contents/Resources/install_cli.sh
|
|
39
39
|
```
|
|
40
40
|
|
|
41
41
|
## Configuration
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: journal-cli
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.22
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Brett Terpstra
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2023-09-
|
|
11
|
+
date: 2023-09-18 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: tty-which
|