baby-bro 0.0.3 → 0.0.4

Sign up to get free protection for your applications and to get access to all the features.
data/README.rdoc CHANGED
@@ -74,6 +74,8 @@ That's it. You can add as many projects to your config as you like. They will
74
74
  * Default reports to the current day
75
75
  * Enable option to export reports in .csv, .json and .yaml file formats.
76
76
  * Add some tests.
77
+ * Enable git branch detection and session association
78
+ * Enable growl warning option when idle interval is about to be exceeded for a project.
77
79
 
78
80
  == CONTRIBUTING:
79
81
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.0.3
1
+ 0.0.4
data/baby-bro.gemspec CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{baby-bro}
8
- s.version = "0.0.3"
8
+ s.version = "0.0.4"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Bill Doughty"]
data/lib/baby-bro/exec.rb CHANGED
@@ -73,7 +73,7 @@ module BabyBroExec
73
73
  # @param opts [OptionParser]
74
74
  def set_opts(opts)
75
75
  opts.banner = <<END
76
- Usage: bro [options] [command] [date]
76
+ Usage: bro [options] [command]
77
77
 
78
78
  Command is one of the following:
79
79
 
@@ -83,10 +83,6 @@ Command is one of the following:
83
83
  restart - restarts the monitor process (forces re-reading of config file)
84
84
  report - prints out time tracking reports
85
85
 
86
- The date argument is optional and only used for the report command.
87
- It must be a valid date string. When passed, the date argument will
88
- cause reports to be printed for only that date.
89
-
90
86
  END
91
87
 
92
88
  @options[:config_file] = "#{ENV["HOME"]}/.babybrorc"
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: baby-bro
3
3
  version: !ruby/object:Gem::Version
4
- hash: 25
4
+ hash: 23
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 0
9
- - 3
10
- version: 0.0.3
9
+ - 4
10
+ version: 0.0.4
11
11
  platform: ruby
12
12
  authors:
13
13
  - Bill Doughty