todorb 0.2.1 → 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG.rdoc +12 -0
- data/Makefile +29 -0
- data/README.markdown +48 -3
- data/Rakefile +54 -0
- data/VERSION +1 -1
- data/bin/todorb +1 -1
- data/lib/common/cmdapp.rb +170 -0
- data/lib/common/sed.rb +84 -44
- data/lib/todorb.rb +508 -266
- data/tests/Makefile +2 -0
- data/tests/README +313 -0
- data/tests/aggregate-results.sh +34 -0
- data/tests/clean.sh +3 -0
- data/tests/dataset1.txt +14 -0
- data/tests/recreate.sh +33 -0
- data/tests/rtest2.sh +124 -0
- data/tests/t0001-add.sh +22 -0
- data/tests/t0002-listing.sh +58 -0
- data/tests/test-lib.sh +614 -0
- data/todorb.gemspec +62 -0
- metadata +22 -6
data/todorb.gemspec
ADDED
@@ -0,0 +1,62 @@
|
|
1
|
+
# Generated by jeweler
|
2
|
+
# DO NOT EDIT THIS FILE DIRECTLY
|
3
|
+
# Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
|
4
|
+
# -*- encoding: utf-8 -*-
|
5
|
+
|
6
|
+
Gem::Specification.new do |s|
|
7
|
+
s.name = %q{todorb}
|
8
|
+
s.version = "1.0.0"
|
9
|
+
|
10
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
|
+
s.authors = ["Rahul Kumar"]
|
12
|
+
s.date = %q{2010-06-21}
|
13
|
+
s.default_executable = %q{todorb}
|
14
|
+
s.description = %q{command-line program that manages a todo list text file }
|
15
|
+
s.email = %q{sentinel1879@gmail.com}
|
16
|
+
s.executables = ["todorb"]
|
17
|
+
s.extra_rdoc_files = [
|
18
|
+
"LICENSE",
|
19
|
+
"README.markdown"
|
20
|
+
]
|
21
|
+
s.files = [
|
22
|
+
"CHANGELOG.rdoc",
|
23
|
+
"LICENSE",
|
24
|
+
"Makefile",
|
25
|
+
"README.markdown",
|
26
|
+
"Rakefile",
|
27
|
+
"VERSION",
|
28
|
+
"bin/todorb",
|
29
|
+
"lib/common/cmdapp.rb",
|
30
|
+
"lib/common/colorconstants.rb",
|
31
|
+
"lib/common/sed.rb",
|
32
|
+
"lib/todorb.rb",
|
33
|
+
"tests/Makefile",
|
34
|
+
"tests/README",
|
35
|
+
"tests/aggregate-results.sh",
|
36
|
+
"tests/clean.sh",
|
37
|
+
"tests/dataset1.txt",
|
38
|
+
"tests/recreate.sh",
|
39
|
+
"tests/rtest2.sh",
|
40
|
+
"tests/t0001-add.sh",
|
41
|
+
"tests/t0002-listing.sh",
|
42
|
+
"tests/test-lib.sh",
|
43
|
+
"todorb.gemspec"
|
44
|
+
]
|
45
|
+
s.homepage = %q{http://github.com/rkumar/todorb}
|
46
|
+
s.rdoc_options = ["--charset=UTF-8"]
|
47
|
+
s.require_paths = ["lib"]
|
48
|
+
s.rubyforge_project = %q{todorb}
|
49
|
+
s.rubygems_version = %q{1.3.6}
|
50
|
+
s.summary = %q{command-line todo list manager}
|
51
|
+
|
52
|
+
if s.respond_to? :specification_version then
|
53
|
+
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
54
|
+
s.specification_version = 3
|
55
|
+
|
56
|
+
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
|
57
|
+
else
|
58
|
+
end
|
59
|
+
else
|
60
|
+
end
|
61
|
+
end
|
62
|
+
|
metadata
CHANGED
@@ -3,10 +3,10 @@ name: todorb
|
|
3
3
|
version: !ruby/object:Gem::Version
|
4
4
|
prerelease: false
|
5
5
|
segments:
|
6
|
-
- 0
|
7
|
-
- 2
|
8
6
|
- 1
|
9
|
-
|
7
|
+
- 0
|
8
|
+
- 0
|
9
|
+
version: 1.0.0
|
10
10
|
platform: ruby
|
11
11
|
authors:
|
12
12
|
- Rahul Kumar
|
@@ -14,7 +14,7 @@ autorequire:
|
|
14
14
|
bindir: bin
|
15
15
|
cert_chain: []
|
16
16
|
|
17
|
-
date: 2010-06-
|
17
|
+
date: 2010-06-21 00:00:00 +05:30
|
18
18
|
default_executable: todorb
|
19
19
|
dependencies: []
|
20
20
|
|
@@ -28,12 +28,28 @@ extra_rdoc_files:
|
|
28
28
|
- LICENSE
|
29
29
|
- README.markdown
|
30
30
|
files:
|
31
|
+
- CHANGELOG.rdoc
|
32
|
+
- LICENSE
|
33
|
+
- Makefile
|
31
34
|
- README.markdown
|
35
|
+
- Rakefile
|
32
36
|
- VERSION
|
37
|
+
- bin/todorb
|
38
|
+
- lib/common/cmdapp.rb
|
33
39
|
- lib/common/colorconstants.rb
|
34
40
|
- lib/common/sed.rb
|
35
41
|
- lib/todorb.rb
|
36
|
-
-
|
42
|
+
- tests/Makefile
|
43
|
+
- tests/README
|
44
|
+
- tests/aggregate-results.sh
|
45
|
+
- tests/clean.sh
|
46
|
+
- tests/dataset1.txt
|
47
|
+
- tests/recreate.sh
|
48
|
+
- tests/rtest2.sh
|
49
|
+
- tests/t0001-add.sh
|
50
|
+
- tests/t0002-listing.sh
|
51
|
+
- tests/test-lib.sh
|
52
|
+
- todorb.gemspec
|
37
53
|
has_rdoc: true
|
38
54
|
homepage: http://github.com/rkumar/todorb
|
39
55
|
licenses: []
|
@@ -59,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
59
75
|
version: "0"
|
60
76
|
requirements: []
|
61
77
|
|
62
|
-
rubyforge_project:
|
78
|
+
rubyforge_project: todorb
|
63
79
|
rubygems_version: 1.3.6
|
64
80
|
signing_key:
|
65
81
|
specification_version: 3
|