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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: e04492ac8e7a1a6a639249b22bc19cd802e82328
4
- data.tar.gz: d29149a9a0c2bcf530b7c1389e4b499a75cc79d1
3
+ metadata.gz: 13d7481ea39903ab40e98f03491aec8ed1fd84e8
4
+ data.tar.gz: 97a1ecb5a7cc32c6b01ba01623b2e0d8c71e5f79
5
5
  SHA512:
6
- metadata.gz: 0cd05d5aab507d5098168d93ca46fa002f00f656c06a463ffa27ad17c64c871f236a6c0d0c194e9ccae2522facd91904975c8b49716b0836fc515af2987ff5a0
7
- data.tar.gz: 97457e9fff38148e9565185c204ff94277bf31481953e6fc7d475ecc36d13db714bd1105448de83b19614ec81da272b3210f85d0ceb57d4e7ec7b6ade2c1772c
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
- # call next tuesday
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
- # go to the current directory
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
- path = File.join(Config.base_dir, "README.md")
42
-
43
- # symlink current entry to readme
44
- FileUtils.ln_s(@date.path, path, :force => true)
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
@@ -1,5 +1,5 @@
1
1
  module Backlog
2
2
 
3
- VERSION = "1.0.3"
3
+ VERSION = "1.0.4"
4
4
 
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: personal-backlog
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.3
4
+ version: 1.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jon Morehouse