rtt 0.0.0.2 → 0.0.0.3
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/Manifest +1 -0
- data/Rakefile +2 -2
- data/db/rtt.sqlite3 +0 -0
- data/rtt.gemspec +2 -2
- metadata +4 -3
data/Manifest
CHANGED
data/Rakefile
CHANGED
|
@@ -3,12 +3,12 @@ require 'echoe'
|
|
|
3
3
|
|
|
4
4
|
# PACKAGING ============================================================
|
|
5
5
|
|
|
6
|
-
Echoe.new('rtt', '0.0.0.
|
|
6
|
+
Echoe.new('rtt', '0.0.0.3') do |p|
|
|
7
7
|
p.description = 'RTT is a tool for tracking time'
|
|
8
8
|
p.url = 'http://www.marklazz.com'
|
|
9
9
|
p.author = 'Marcelo Giorgi'
|
|
10
10
|
p.email = 'marklazz.uy@gmail.com'
|
|
11
|
-
p.ignore_pattern = [ 'tmp/*', 'script/*', '
|
|
11
|
+
p.ignore_pattern = [ 'tmp/*', 'script/*', '*.sh' ]
|
|
12
12
|
p.runtime_dependencies = [ ['highline', ">= 1.5.2"], ['activesupport', '>= 2.3.0'], ['prawn', '>= 0.8.0'], ['dm-core', '>= 1.0.0'], [ 'dm-migrations', '>= 1.0.0'] ]
|
|
13
13
|
p.development_dependencies = [ 'spec' ]
|
|
14
14
|
end
|
data/db/rtt.sqlite3
ADDED
|
Binary file
|
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
|
+
s.version = "0.0.0.3"
|
|
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"]
|
|
@@ -12,7 +12,7 @@ Gem::Specification.new do |s|
|
|
|
12
12
|
s.email = %q{marklazz.uy@gmail.com}
|
|
13
13
|
s.executables = ["rtt"]
|
|
14
14
|
s.extra_rdoc_files = ["LICENSE", "README.rdoc", "bin/rtt", "lib/rtt.rb", "lib/rtt/client.rb", "lib/rtt/cmd_line_interpreter.rb", "lib/rtt/hash_extensions.rb", "lib/rtt/project.rb", "lib/rtt/query_builder.rb", "lib/rtt/report_generator.rb", "lib/rtt/storage.rb", "lib/rtt/task.rb", "lib/rtt/user.rb", "lib/rtt/user_configurator.rb", "tasks/rtt.rake"]
|
|
15
|
-
s.files = ["LICENSE", "Manifest", "README.rdoc", "Rakefile", "USAGE.txt", "bin/rtt", "lib/rtt.rb", "lib/rtt/client.rb", "lib/rtt/cmd_line_interpreter.rb", "lib/rtt/hash_extensions.rb", "lib/rtt/project.rb", "lib/rtt/query_builder.rb", "lib/rtt/report_generator.rb", "lib/rtt/storage.rb", "lib/rtt/task.rb", "lib/rtt/user.rb", "lib/rtt/user_configurator.rb", "rtt.gemspec", "spec/datamapper_spec_helper.rb", "spec/lib/rtt/task_spec.rb", "spec/lib/rtt_spec.rb", "tasks/rtt.rake"]
|
|
15
|
+
s.files = ["LICENSE", "Manifest", "README.rdoc", "Rakefile", "USAGE.txt", "bin/rtt", "db/rtt.sqlite3", "lib/rtt.rb", "lib/rtt/client.rb", "lib/rtt/cmd_line_interpreter.rb", "lib/rtt/hash_extensions.rb", "lib/rtt/project.rb", "lib/rtt/query_builder.rb", "lib/rtt/report_generator.rb", "lib/rtt/storage.rb", "lib/rtt/task.rb", "lib/rtt/user.rb", "lib/rtt/user_configurator.rb", "rtt.gemspec", "spec/datamapper_spec_helper.rb", "spec/lib/rtt/task_spec.rb", "spec/lib/rtt_spec.rb", "tasks/rtt.rake"]
|
|
16
16
|
s.homepage = %q{http://www.marklazz.com}
|
|
17
17
|
s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "Rtt", "--main", "README.rdoc"]
|
|
18
18
|
s.require_paths = ["lib"]
|
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:
|
|
4
|
+
hash: 73
|
|
5
5
|
prerelease: false
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
8
|
- 0
|
|
9
9
|
- 0
|
|
10
|
-
-
|
|
11
|
-
version: 0.0.0.
|
|
10
|
+
- 3
|
|
11
|
+
version: 0.0.0.3
|
|
12
12
|
platform: ruby
|
|
13
13
|
authors:
|
|
14
14
|
- Marcelo Giorgi
|
|
@@ -142,6 +142,7 @@ files:
|
|
|
142
142
|
- Rakefile
|
|
143
143
|
- USAGE.txt
|
|
144
144
|
- bin/rtt
|
|
145
|
+
- db/rtt.sqlite3
|
|
145
146
|
- lib/rtt.rb
|
|
146
147
|
- lib/rtt/client.rb
|
|
147
148
|
- lib/rtt/cmd_line_interpreter.rb
|