xtdo 0.2.1 → 0.2.2
Sign up to get free protection for your applications and to get access to all the features.
- data/.gemtest +0 -0
- data/Gemfile +3 -0
- data/Gemfile.lock +26 -0
- data/HISTORY +3 -0
- data/README.rdoc +2 -2
- data/Rakefile +2 -0
- data/xtdo.gemspec +21 -0
- metadata +8 -4
data/.gemtest
ADDED
File without changes
|
data/Gemfile
ADDED
data/Gemfile.lock
ADDED
@@ -0,0 +1,26 @@
|
|
1
|
+
PATH
|
2
|
+
remote: .
|
3
|
+
specs:
|
4
|
+
xtdo (0.2.2)
|
5
|
+
|
6
|
+
GEM
|
7
|
+
remote: http://rubygems.org/
|
8
|
+
specs:
|
9
|
+
diff-lcs (1.1.2)
|
10
|
+
rspec (2.1.0)
|
11
|
+
rspec-core (~> 2.1.0)
|
12
|
+
rspec-expectations (~> 2.1.0)
|
13
|
+
rspec-mocks (~> 2.1.0)
|
14
|
+
rspec-core (2.1.0)
|
15
|
+
rspec-expectations (2.1.0)
|
16
|
+
diff-lcs (~> 1.1.2)
|
17
|
+
rspec-mocks (2.1.0)
|
18
|
+
timecop (0.3.5)
|
19
|
+
|
20
|
+
PLATFORMS
|
21
|
+
ruby
|
22
|
+
|
23
|
+
DEPENDENCIES
|
24
|
+
rspec (~> 2.1.0)
|
25
|
+
timecop
|
26
|
+
xtdo!
|
data/HISTORY
CHANGED
data/README.rdoc
CHANGED
@@ -43,7 +43,7 @@ Load paths and gems and friends can add about 300ms to the load time of xtdo. Un
|
|
43
43
|
|
44
44
|
#!/Users/xavier/.rvm/rubies/ruby-1.9.2-p0/bin/ruby
|
45
45
|
|
46
|
-
$LOAD_PATH.unshift "/Users/xavier/.rvm/gems/ruby-1.9.2-p0/gems/xtdo-0.2/lib"
|
46
|
+
$LOAD_PATH.unshift "/Users/xavier/.rvm/gems/ruby-1.9.2-p0/gems/xtdo-0.2.1/lib"
|
47
47
|
|
48
48
|
require 'xtdo'
|
49
49
|
file = ENV['XTDO_PATH'] || "~/.xtdo"
|
@@ -68,4 +68,4 @@ There are no runtime external dependencies. Let's keep it that way.
|
|
68
68
|
|
69
69
|
== Status
|
70
70
|
|
71
|
-
|
71
|
+
I am dog-fooding this and happy with it. AFAIK no one else is using it. I would like the proper install with speed hacks and shell completion to be easier. This file plus the comprehensive integration specs is the only documentation.
|
data/Rakefile
CHANGED
data/xtdo.gemspec
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
Gem::Specification.new do |s|
|
2
|
+
s.name = 'xtdo'
|
3
|
+
s.version = '0.2.2'
|
4
|
+
s.summary = 'Minimal and fast command line todo manager'
|
5
|
+
s.platform = Gem::Platform::RUBY
|
6
|
+
s.authors = ["Xavier Shay"]
|
7
|
+
s.email = ["hello@xaviershay.com"]
|
8
|
+
s.homepage = "http://github.com/xaviershay/xtdo"
|
9
|
+
s.has_rdoc = false
|
10
|
+
|
11
|
+
s.files = Dir.glob("{spec,lib}/**/*.rb") +
|
12
|
+
Dir.glob("bin/*") +
|
13
|
+
%w(README.rdoc HISTORY LICENSE Rakefile TODO xtdo.gemspec .gemtest Gemfile Gemfile.lock)
|
14
|
+
|
15
|
+
s.bindir = 'bin'
|
16
|
+
s.require_path = 'lib'
|
17
|
+
s.executables << %q{xtdo}
|
18
|
+
|
19
|
+
s.add_development_dependency 'rspec', '~> 2.1.0'
|
20
|
+
s.add_development_dependency 'timecop'
|
21
|
+
end
|
metadata
CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
5
5
|
segments:
|
6
6
|
- 0
|
7
7
|
- 2
|
8
|
-
-
|
9
|
-
version: 0.2.
|
8
|
+
- 2
|
9
|
+
version: 0.2.2
|
10
10
|
platform: ruby
|
11
11
|
authors:
|
12
12
|
- Xavier Shay
|
@@ -14,7 +14,7 @@ autorequire:
|
|
14
14
|
bindir: bin
|
15
15
|
cert_chain: []
|
16
16
|
|
17
|
-
date:
|
17
|
+
date: 2011-02-04 00:00:00 +11:00
|
18
18
|
default_executable:
|
19
19
|
dependencies:
|
20
20
|
- !ruby/object:Gem::Dependency
|
@@ -70,7 +70,11 @@ files:
|
|
70
70
|
- LICENSE
|
71
71
|
- Rakefile
|
72
72
|
- TODO
|
73
|
-
|
73
|
+
- xtdo.gemspec
|
74
|
+
- .gemtest
|
75
|
+
- Gemfile
|
76
|
+
- Gemfile.lock
|
77
|
+
has_rdoc: true
|
74
78
|
homepage: http://github.com/xaviershay/xtdo
|
75
79
|
licenses: []
|
76
80
|
|