personal-backlog 1.0.3 → 1.0.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 +9 -11
- data/lib/backlog/open.rb +4 -4
- data/lib/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 13d7481ea39903ab40e98f03491aec8ed1fd84e8
|
|
4
|
+
data.tar.gz: 97a1ecb5a7cc32c6b01ba01623b2e0d8c71e5f79
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1abb20f97182a2e53f7f2e0d3458c8d4fe102ed69502ea309fac502df1b4506797a998662e3f6bf2f07d866ac879cbb225f8b8b23e31c04e52544d0d5a4883ab
|
|
7
|
+
data.tar.gz: 46ed565ff71ca41d439cf1f8779c272116827096a2c6789cffd883c131f118315acd8315cbfbd845f696c782326c6d42c6d979d75a6b237dc21f30999c22fd98
|
data/README.md
CHANGED
|
@@ -7,28 +7,26 @@ Commands
|
|
|
7
7
|
```
|
|
8
8
|
export BACKLOG_PATH=PATH_TO_BACKLOG || $HOME/.backlog
|
|
9
9
|
|
|
10
|
-
#
|
|
10
|
+
# edit entry for next tuesday
|
|
11
11
|
backlog next tuesday
|
|
12
12
|
|
|
13
|
-
# add something to today's todo list
|
|
14
|
-
backlog -t "Start element"
|
|
15
|
-
|
|
16
|
-
# check for a match of this task in the todo
|
|
17
|
-
backlog -c "Today"
|
|
18
|
-
|
|
19
13
|
# work on todays backlog - open with edtior
|
|
20
14
|
backlog
|
|
21
15
|
|
|
22
16
|
# archive everything previous to today
|
|
23
17
|
backlog a
|
|
24
18
|
backlog archive
|
|
19
|
+
backlog archive yesterday
|
|
25
20
|
|
|
26
|
-
#
|
|
27
|
-
backlog cd
|
|
28
|
-
|
|
29
|
-
# backlog set up the directory
|
|
21
|
+
# set up first backlog directory (new install)
|
|
30
22
|
backlog init
|
|
31
23
|
|
|
24
|
+
# save current backlog
|
|
25
|
+
backlog save
|
|
26
|
+
|
|
27
|
+
# push backlog to git
|
|
28
|
+
backlog push
|
|
29
|
+
|
|
32
30
|
|
|
33
31
|
```
|
|
34
32
|
|
data/lib/backlog/open.rb
CHANGED
|
@@ -38,10 +38,10 @@ module Backlog
|
|
|
38
38
|
private
|
|
39
39
|
def symlink
|
|
40
40
|
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
41
|
+
Dir.chdir Config.base_dir do
|
|
42
|
+
# symlink current entry to readme
|
|
43
|
+
FileUtils.ln_s(@date.relative_path, "README.md", :force => true)
|
|
44
|
+
end
|
|
45
45
|
end
|
|
46
46
|
|
|
47
47
|
end
|
data/lib/version.rb
CHANGED