rtt 0.0.0.20 → 0.0.0.21

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.
data/Rakefile CHANGED
@@ -3,7 +3,7 @@ require 'echoe'
3
3
 
4
4
  # PACKAGING ============================================================
5
5
 
6
- Echoe.new('rtt', '0.0.0.20') do |p|
6
+ Echoe.new('rtt', '0.0.0.21') do |p|
7
7
  p.description = 'RTT is a tool for tracking time'
8
8
  p.url = 'http://github.com/marklazz/rtt'
9
9
  p.author = 'Marcelo Giorgi'
Binary file
data/lib/rtt.rb CHANGED
@@ -71,7 +71,6 @@ module Rtt
71
71
  def list options = {}
72
72
  say 'Task List'
73
73
  say '========='
74
- options[:date] = Date.today.strftime('%d-%m-%Y') if options[:to].blank? and options[:from].blank? and options[:date].blank?
75
74
  query(options).each do |task|
76
75
  say "Task: #{task.name} || Client: #{task.client.name} || Project: #{task.project.name} || User: #{task.user.nickname} || Elapsed time: #{task.duration} #{'[ACTIVE]' if task.active} \n"
77
76
  end
@@ -11,6 +11,8 @@ module Rtt
11
11
  private
12
12
 
13
13
  def rtt_build_conditions options
14
+ # default filter for today unless a date range is specified
15
+ options[:date] = Date.today.strftime('%d-%m-%Y') if options[:to].blank? and options[:from].blank? and options[:date].blank?
14
16
  conditions = options
15
17
  conditions[:date.gte] = Date.parse(options.delete(:from)) if options[:from]
16
18
  conditions[:date.lte] = Date.parse(options.delete(:to)) if options[:to]
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{rtt}
5
- s.version = "0.0.0.20"
5
+ s.version = "0.0.0.21"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
8
8
  s.authors = ["Marcelo Giorgi"]
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rtt
3
3
  version: !ruby/object:Gem::Version
4
- hash: 103
4
+ hash: 101
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 0
9
9
  - 0
10
- - 20
11
- version: 0.0.0.20
10
+ - 21
11
+ version: 0.0.0.21
12
12
  platform: ruby
13
13
  authors:
14
14
  - Marcelo Giorgi