rtt 0.0.0.5 → 0.0.0.6

Sign up to get free protection for your applications and to get access to all the features.
data/Manifest CHANGED
@@ -16,6 +16,7 @@ lib/rtt/storage.rb
16
16
  lib/rtt/task.rb
17
17
  lib/rtt/user.rb
18
18
  lib/rtt/user_configurator.rb
19
+ log/rtt.sqlite3
19
20
  rtt.gemspec
20
21
  spec/datamapper_spec_helper.rb
21
22
  spec/lib/rtt/task_spec.rb
data/Rakefile CHANGED
@@ -3,7 +3,7 @@ require 'echoe'
3
3
 
4
4
  # PACKAGING ============================================================
5
5
 
6
- Echoe.new('rtt', '0.0.0.5') do |p|
6
+ Echoe.new('rtt', '0.0.0.6') 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/lib/rtt.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  #!/usr/bin/ruby -w
2
- %w( rubygems spec dm-core dm-validations dm-migrations active_support highline/import).each { |lib| require lib }
2
+ %w( rubygems dm-core dm-validations dm-migrations active_support highline/import).each { |lib| require lib }
3
3
  Dir[File.expand_path(File.join(File.dirname(__FILE__), 'rtt', '*'))].each { |lib| require lib; }
4
4
 
5
5
  module Rtt
data/rtt.gemspec CHANGED
@@ -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.5"
5
+ s.version = "0.0.0.6"
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"]
@@ -1 +1,3 @@
1
+ require 'rubygems'
2
+ require 'spec'
1
3
  require 'lib/rtt'
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: 69
4
+ hash: 67
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 0
9
9
  - 0
10
- - 5
11
- version: 0.0.0.5
10
+ - 6
11
+ version: 0.0.0.6
12
12
  platform: ruby
13
13
  authors:
14
14
  - Marcelo Giorgi