rtt 0.0.0.22 → 0.0.0.23
Sign up to get free protection for your applications and to get access to all the features.
- data/Rakefile +2 -2
- data/lib/rtt.rb +1 -1
- data/rtt.gemspec +5 -5
- metadata +12 -12
data/Rakefile
CHANGED
@@ -3,13 +3,13 @@ require 'echoe'
|
|
3
3
|
|
4
4
|
# PACKAGING ============================================================
|
5
5
|
|
6
|
-
Echoe.new('rtt', '0.0.0.
|
6
|
+
Echoe.new('rtt', '0.0.0.23') 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'
|
10
10
|
p.email = 'marklazz.uy@gmail.com'
|
11
11
|
p.ignore_pattern = [ 'tmp/*', 'script/*', '*.sh' ]
|
12
|
-
p.runtime_dependencies = [ ['highline', ">= 1.5.2"], ['activesupport', '>= 2.3.
|
12
|
+
p.runtime_dependencies = [ ['highline', ">= 1.5.2"], ['activesupport', '>= 2.3.5', '<= 2.3.8'], ['prawn', '>= 0.8.0'], ['dm-core', '>= 1.0.0'], [ 'dm-validations', '>= 1.0.0'], [ 'dm-migrations', '>= 1.0.0'], 'dm-sqlite-adapter' ]
|
13
13
|
p.development_dependencies = [ 'spec' ]
|
14
14
|
end
|
15
15
|
|
data/lib/rtt.rb
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
#!/usr/bin/ruby -w
|
2
2
|
require 'rubygems'
|
3
|
-
gem 'activesupport', [ '>= 2.3.
|
3
|
+
gem 'activesupport', [ '>= 2.3.5', '<= 2.3.8' ]
|
4
4
|
%w( activesupport dm-core dm-validations dm-migrations highline/import).each { |lib| require lib }
|
5
5
|
Dir[File.expand_path(File.join(File.dirname(__FILE__), 'rtt', '*'))].each { |lib| require lib; }
|
6
6
|
|
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.23"
|
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/array_extensions.rb", "lib/rtt/client.rb", "lib/rtt/cmd_line_parser.rb", "lib/rtt/hash_extensions.rb", "lib/rtt/interactive_configurator.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", "tasks/rtt.rake"]
|
15
|
-
s.files = ["LICENSE", "Manifest", "README.rdoc", "Rakefile", "USAGE.txt", "bin/rtt", "db/rtt.sqlite3", "db/test.sqlite3", "lib/rtt.rb", "lib/rtt/array_extensions.rb", "lib/rtt/client.rb", "lib/rtt/cmd_line_parser.rb", "lib/rtt/hash_extensions.rb", "lib/rtt/interactive_configurator.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", "log/rtt.sqlite3", "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", "db/test.sqlite3", "lib/rtt.rb", "lib/rtt/array_extensions.rb", "lib/rtt/client.rb", "lib/rtt/cmd_line_parser.rb", "lib/rtt/hash_extensions.rb", "lib/rtt/interactive_configurator.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", "log/rtt.sqlite3", "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://github.com/marklazz/rtt}
|
17
17
|
s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "Rtt", "--main", "README.rdoc"]
|
18
18
|
s.require_paths = ["lib"]
|
@@ -26,7 +26,7 @@ Gem::Specification.new do |s|
|
|
26
26
|
|
27
27
|
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
28
28
|
s.add_runtime_dependency(%q<highline>, [">= 1.5.2"])
|
29
|
-
s.add_runtime_dependency(%q<activesupport>, [">= 2.3.
|
29
|
+
s.add_runtime_dependency(%q<activesupport>, [">= 2.3.5", "<= 2.3.8"])
|
30
30
|
s.add_runtime_dependency(%q<prawn>, [">= 0.8.0"])
|
31
31
|
s.add_runtime_dependency(%q<dm-core>, [">= 1.0.0"])
|
32
32
|
s.add_runtime_dependency(%q<dm-validations>, [">= 1.0.0"])
|
@@ -35,7 +35,7 @@ Gem::Specification.new do |s|
|
|
35
35
|
s.add_development_dependency(%q<spec>, [">= 0"])
|
36
36
|
else
|
37
37
|
s.add_dependency(%q<highline>, [">= 1.5.2"])
|
38
|
-
s.add_dependency(%q<activesupport>, [">= 2.3.
|
38
|
+
s.add_dependency(%q<activesupport>, [">= 2.3.5", "<= 2.3.8"])
|
39
39
|
s.add_dependency(%q<prawn>, [">= 0.8.0"])
|
40
40
|
s.add_dependency(%q<dm-core>, [">= 1.0.0"])
|
41
41
|
s.add_dependency(%q<dm-validations>, [">= 1.0.0"])
|
@@ -45,7 +45,7 @@ Gem::Specification.new do |s|
|
|
45
45
|
end
|
46
46
|
else
|
47
47
|
s.add_dependency(%q<highline>, [">= 1.5.2"])
|
48
|
-
s.add_dependency(%q<activesupport>, [">= 2.3.
|
48
|
+
s.add_dependency(%q<activesupport>, [">= 2.3.5", "<= 2.3.8"])
|
49
49
|
s.add_dependency(%q<prawn>, [">= 0.8.0"])
|
50
50
|
s.add_dependency(%q<dm-core>, [">= 1.0.0"])
|
51
51
|
s.add_dependency(%q<dm-validations>, [">= 1.0.0"])
|
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: 97
|
5
5
|
prerelease: false
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 0
|
9
9
|
- 0
|
10
|
-
-
|
11
|
-
version: 0.0.0.
|
10
|
+
- 23
|
11
|
+
version: 0.0.0.23
|
12
12
|
platform: ruby
|
13
13
|
authors:
|
14
14
|
- Marcelo Giorgi
|
@@ -43,20 +43,20 @@ dependencies:
|
|
43
43
|
requirements:
|
44
44
|
- - ">="
|
45
45
|
- !ruby/object:Gem::Version
|
46
|
-
hash:
|
46
|
+
hash: 9
|
47
47
|
segments:
|
48
48
|
- 2
|
49
49
|
- 3
|
50
|
-
-
|
51
|
-
version: 2.3.
|
52
|
-
- -
|
50
|
+
- 5
|
51
|
+
version: 2.3.5
|
52
|
+
- - <=
|
53
53
|
- !ruby/object:Gem::Version
|
54
|
-
hash:
|
54
|
+
hash: 19
|
55
55
|
segments:
|
56
|
+
- 2
|
56
57
|
- 3
|
57
|
-
-
|
58
|
-
|
59
|
-
version: 3.0.0
|
58
|
+
- 8
|
59
|
+
version: 2.3.8
|
60
60
|
type: :runtime
|
61
61
|
version_requirements: *id002
|
62
62
|
- !ruby/object:Gem::Dependency
|
@@ -196,11 +196,11 @@ files:
|
|
196
196
|
- lib/rtt/task.rb
|
197
197
|
- lib/rtt/user.rb
|
198
198
|
- log/rtt.sqlite3
|
199
|
+
- rtt.gemspec
|
199
200
|
- spec/datamapper_spec_helper.rb
|
200
201
|
- spec/lib/rtt/task_spec.rb
|
201
202
|
- spec/lib/rtt_spec.rb
|
202
203
|
- tasks/rtt.rake
|
203
|
-
- rtt.gemspec
|
204
204
|
has_rdoc: true
|
205
205
|
homepage: http://github.com/marklazz/rtt
|
206
206
|
licenses: []
|