bl 0.1.9 → 0.2.0

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: f96396dfd1a8bc207912093094ace91e23aeaeb2
4
- data.tar.gz: d3698108713fbbedaf7104789a262b03c7195ff4
3
+ metadata.gz: 437656d9335c3cb0980a42ae4766323aaf682100
4
+ data.tar.gz: d31f92a3b54e7c7cfaaac43607cced55dbe49373
5
5
  SHA512:
6
- metadata.gz: a2474b6c3284c1dbf0bacbabda65c9621a553a892b9703b302ef56887d7520d8fcd1d98730373bc6c348031d495d6c5d7fe7322ae272dfdeff7f06f2113b3e3b
7
- data.tar.gz: 96a1dfcc181e9e97abddf08d6709d45d89b2a92a0e31c36db0555f439404e3563c9641b7fc78452bbcbb4bb2390d2b31fbb5077c40f26afb3ed1e7f43cb28639
6
+ metadata.gz: a3e0ac74cf78f8ecdde52b5e28f157afbf18e737eead0e0ac532164525be96e9ae3ac59d96c6b5b3f0d352bc1757f25a3ad79a08db197ec812417ec4c37d2c25
7
+ data.tar.gz: 53ef319470e31f10221e15bad469a5645749dba173a6837e3496829e2b09a947260b1f1ea88aec76c3b42e3b269f3333d9d3235604a9a6c6f7b5548485853122
data/README.md CHANGED
@@ -25,6 +25,7 @@ bl uses `~/.bl.yml` for configuration.
25
25
  :projectId:
26
26
  :issueTypeId:
27
27
  :priorityId:
28
+ :assigneeId:
28
29
 
29
30
  ## Usage
30
31
 
@@ -35,15 +36,19 @@ bl uses `~/.bl.yml` for configuration.
35
36
  bl close [KEY...] # close issues
36
37
  bl config # show config
37
38
  bl count # count issues
39
+ bl doctor # check issues
38
40
  bl help [COMMAND] # Describe available commands or one specific command
39
41
  bl init # initialize a default config file
40
- bl list # list issues
42
+ bl list # list issues by typical ways
41
43
  bl milestone SUBCOMMAND ...ARGS # manage milestones
44
+ bl notifications # list notifications
42
45
  bl priorities # list priorities
43
46
  bl project SUBCOMMAND ...ARGS # manage projects
47
+ bl recent SUBCOMMAND ...ARGS # list recent stuff
44
48
  bl resolutions # list resolutions
45
49
  bl search # search issues
46
50
  bl show KEY # show an issue's details
51
+ bl space # show space info
47
52
  bl statuses # list statuses
48
53
  bl type SUBCOMMAND ...ARGS # manage types
49
54
  bl update [KEY...] # update issues
@@ -51,29 +56,28 @@ bl uses `~/.bl.yml` for configuration.
51
56
  bl version # show version
52
57
  bl wiki SUBCOMMAND ...ARGS # manage wikis
53
58
 
54
-
55
59
  ### Examples
56
60
 
57
- view global or command specific help:
61
+ View global or command specific help:
58
62
 
59
63
  bl help
60
64
  bl help list
61
65
  bl help search
62
66
  bl help add
63
67
 
64
- list overdue issues
68
+ List overdue issues:
65
69
 
66
70
  bl list --overdue
67
71
 
68
- add an issue
72
+ Add an issue:
69
73
 
70
74
  bl add "Update OpenSSL immediately" --priorityId 2 --assigneeId 11111 --dueDate 2014-04-07
71
75
 
72
- add multi issues on list.txt
76
+ Add multi issues:
73
77
 
74
78
  cat list.txt | xargs -I {} bl add {}
75
79
 
76
- update unassigned issues
80
+ Update unassigned issues:
77
81
 
78
82
  bl list --unassigned | awk '{print $2}' | xargs bl update --assigneeId 12345
79
83
 
@@ -29,7 +29,8 @@ module Bl
29
29
  default: {
30
30
  projectId: nil,
31
31
  issueTypeId: nil,
32
- priorityId: 3
32
+ priorityId: 3,
33
+ assigneeId: nil
33
34
  }
34
35
  }
35
36
  }
@@ -1,3 +1,3 @@
1
1
  module Bl
2
- VERSION = '0.1.9'.freeze
2
+ VERSION = '0.2.0'.freeze
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bl
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.9
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - saki