bugzyrb 0.5.0 → 0.5.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.rdoc +13 -6
- data/bugzyrb.gemspec +3 -3
- data/lib/bugzyrb.rb +1 -3
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b8c33e4b2305493c7ed493e77942db49d39a835d
|
4
|
+
data.tar.gz: 936460e78711f6562377fd3915d0d6dd6097060a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cb2cb0754fb321e116528657e55992cf1fcc4deb108889b5aa020d55471eb1c2b77d4f191a5ea61164b999bee74aa38176c0d50b8298b2ae73fde8643ce01e29
|
7
|
+
data.tar.gz: 6aebc399b553e5b9b21f98f5fc18f7b54e741d172948440d0446bd053bd5452cb9d219c71539bec04062feec2586c4a8aaf133812c54baf5b95bc26a03c83874
|
data/README.rdoc
CHANGED
@@ -9,9 +9,9 @@ Maintains priority, severity, status, fix, comments. All updates are logged.
|
|
9
9
|
|
10
10
|
== Purpose
|
11
11
|
|
12
|
-
There are already other command-line bug trackers, some ruby some not. I've had problems installing many. As far as ruby ones, some do not work on 1.9 and this bug has not been rectified for over a year. Others rely on gems that are broken and the maintainer has abandoned them.
|
12
|
+
There are already other command-line bug trackers, some ruby, some not. I've had problems installing many. As far as ruby ones, some do not work on 1.9 and this bug has not been rectified for over a year. Others rely on gems that are broken and the maintainer has abandoned them.
|
13
13
|
|
14
|
-
So finally, for personal needs I wrote bugzy.sh (bugzy.txt). However, that
|
14
|
+
So finally, for personal needs I wrote bugzy.sh (bugzy.txt). However, that is bash shell based, and relies on GNU's coreutils being installed with default_names options. I wish to get out of the mess of bash commands having different options across BSD and GNU ( I use a Mac, and use GNU coreutils ).
|
15
15
|
So I am rewriting this simple issue tracker in ruby with sqlite3. The advantage over having data in a SQL database is that the user can query it easily. With having data in separate Yaml files, searching filtering etc is a big pain.
|
16
16
|
|
17
17
|
== Features
|
@@ -21,7 +21,16 @@ So I am rewriting this simple issue tracker in ruby with sqlite3. The advantage
|
|
21
21
|
* Various reports
|
22
22
|
|
23
23
|
== Changes
|
24
|
-
|
24
|
+
|
25
|
+
=== 0.5.0
|
26
|
+
|
27
|
+
* Removed dependence on `terminal-table` which gives errors with colored output.
|
28
|
+
* Removed dependence on array_fields due to changes in sqlite3.
|
29
|
+
* Takes columns of terminal thus listing takes entire available width.
|
30
|
+
|
31
|
+
=== 0.4.0
|
32
|
+
|
33
|
+
0.4.0 has a backward-incompatible change.
|
25
34
|
|
26
35
|
"priority" took priority code first then item numbers. all other commands take item numbers first and then other information. So now priority also takes item numbers first.
|
27
36
|
|
@@ -34,17 +43,15 @@ Now you would do:
|
|
34
43
|
bu priority 3 4 5 P5
|
35
44
|
|
36
45
|
== Installation
|
46
|
+
|
37
47
|
sqlite3 itself has to be installed
|
38
48
|
|
39
49
|
brew install sqlite3
|
40
50
|
|
41
|
-
TODO
|
42
51
|
Depends on :
|
43
52
|
* subcommand (tiny wrapper over optionparser for subcommands)
|
44
53
|
* sqlite3
|
45
54
|
* highline - for accepting some input
|
46
|
-
* terminal-table - for formatting output (this is optional)
|
47
|
-
if you use list --bare, then you don't need this gem
|
48
55
|
|
49
56
|
$ gem install bugzyrb
|
50
57
|
|
data/bugzyrb.gemspec
CHANGED
@@ -5,13 +5,13 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = "bugzyrb"
|
8
|
-
s.version = "0.5.
|
8
|
+
s.version = "0.5.1"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["Rahul Kumar"]
|
12
|
-
s.date = "
|
12
|
+
s.date = "2014-06-06"
|
13
13
|
s.description = "basic, easy-to-use command-line issue-tracker using sqlite for ruby 1.9"
|
14
|
-
s.email = "
|
14
|
+
s.email = "sentinel1879NOSPACE@gmail.com"
|
15
15
|
s.executables = ["bugzyrb"]
|
16
16
|
s.extra_rdoc_files = [
|
17
17
|
"LICENSE",
|
data/lib/bugzyrb.rb
CHANGED
@@ -638,16 +638,14 @@ TEXT
|
|
638
638
|
wherestring = ""
|
639
639
|
if @options[:open]
|
640
640
|
where ||= []
|
641
|
-
where << %{ status != 'closed'}
|
641
|
+
where << %{ status != 'closed' and status != 'canceled' }
|
642
642
|
end
|
643
643
|
if @options[:overdue]
|
644
|
-
#where = %{ where status != 'closed' and due_date <= "#{Date.today}" }
|
645
644
|
where ||= []
|
646
645
|
where << %{ status != 'closed' and status != 'canceled'}
|
647
646
|
where << %{ due_date <= "#{Date.today}" }
|
648
647
|
end
|
649
648
|
if @options[:unassigned]
|
650
|
-
#where = %{ where status != 'closed' and due_date <= "#{Date.today}" }
|
651
649
|
where ||= []
|
652
650
|
where << %{ (assigned_to = 'unassigned' or assigned_to is null) }
|
653
651
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bugzyrb
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.5.
|
4
|
+
version: 0.5.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Rahul Kumar
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2014-06-06 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: yard
|
@@ -67,7 +67,7 @@ dependencies:
|
|
67
67
|
- !ruby/object:Gem::Version
|
68
68
|
version: 1.2.5
|
69
69
|
description: basic, easy-to-use command-line issue-tracker using sqlite for ruby 1.9
|
70
|
-
email:
|
70
|
+
email: sentinel1879NOSPACE@gmail.com
|
71
71
|
executables:
|
72
72
|
- bugzyrb
|
73
73
|
extensions: []
|