rtt 0.0.0.24 → 0.0.0.25

Sign up to get free protection for your applications and to get access to all the features.
data/Rakefile CHANGED
@@ -3,7 +3,7 @@ require 'echoe'
3
3
 
4
4
  # PACKAGING ============================================================
5
5
 
6
- Echoe.new('rtt', '0.0.0.24') do |p|
6
+ Echoe.new('rtt', '0.0.0.25') 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'
data/db/rtt.sqlite3 CHANGED
Binary file
data/lib/rtt.rb CHANGED
@@ -1,4 +1,4 @@
1
- #!/usr/bin/ruby -w
1
+ #!/usr/bin/env ruby
2
2
  require 'rubygems'
3
3
  gem 'activesupport', [ '>= 2.3.5', '<= 2.3.8' ]
4
4
  %w( active_support dm-core dm-validations dm-migrations highline/import).each { |lib| require lib }
data/lib/rtt/client.rb CHANGED
@@ -1,4 +1,4 @@
1
- #!/usr/bin/ruby -w
1
+ #!/usr/bin/env ruby
2
2
  module Rtt
3
3
  class Client
4
4
  include DataMapper::Resource
@@ -1,4 +1,4 @@
1
- #!/usr/bin/ruby -w
1
+ #!/usr/bin/env ruby
2
2
  module Rtt
3
3
  class Command
4
4
  attr_accessor :name, :optional
@@ -1,4 +1,4 @@
1
- #!/usr/bin/ruby -w
1
+ #!/usr/bin/env ruby
2
2
  module Rtt
3
3
  module InteractiveConfigurator
4
4
 
@@ -1,4 +1,4 @@
1
- #!/usr/bin/ruby -w
1
+ #!/usr/bin/env ruby
2
2
  module Rtt
3
3
  module QueryBuilder
4
4
  # Query among all tasks filtering based on parameters.
@@ -1,4 +1,4 @@
1
- #!/usr/bin/ruby -w
1
+ #!/usr/bin/env ruby
2
2
  module Rtt
3
3
  module ReportGenerator
4
4
 
data/lib/rtt/storage.rb CHANGED
@@ -1,4 +1,4 @@
1
- #!/usr/bin/ruby -w
1
+ #!/usr/bin/env ruby
2
2
  module Rtt
3
3
  module Storage
4
4
 
data/lib/rtt/task.rb CHANGED
@@ -1,4 +1,4 @@
1
- #!/usr/bin/ruby -w
1
+ #!/usr/bin/env ruby
2
2
  module Rtt
3
3
  class Task
4
4
  include DataMapper::Resource
data/lib/rtt/user.rb CHANGED
@@ -1,4 +1,4 @@
1
- #!/usr/bin/ruby -w
1
+ #!/usr/bin/env ruby
2
2
  module Rtt
3
3
  class User
4
4
  include DataMapper::Resource
data/rtt.gemspec CHANGED
@@ -2,11 +2,11 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{rtt}
5
- s.version = "0.0.0.24"
5
+ s.version = "0.0.0.25"
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"]
9
- s.date = %q{2010-07-03}
9
+ s.date = %q{2010-07-04}
10
10
  s.default_executable = %q{rtt}
11
11
  s.description = %q{RTT is a tool for tracking time}
12
12
  s.email = %q{marklazz.uy@gmail.com}
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: 127
4
+ hash: 125
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 0
9
9
  - 0
10
- - 24
11
- version: 0.0.0.24
10
+ - 25
11
+ version: 0.0.0.25
12
12
  platform: ruby
13
13
  authors:
14
14
  - Marcelo Giorgi
@@ -16,7 +16,7 @@ autorequire:
16
16
  bindir: bin
17
17
  cert_chain: []
18
18
 
19
- date: 2010-07-03 00:00:00 -03:00
19
+ date: 2010-07-04 00:00:00 -03:00
20
20
  default_executable: rtt
21
21
  dependencies:
22
22
  - !ruby/object:Gem::Dependency