tlog 0.2.0 → 0.2.1

Sign up to get free protection for your applications and to get access to all the features.
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tlog
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Chris Wendel
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2013-06-09 00:00:00.000000000 Z
11
+ date: 2013-06-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: commander
@@ -101,7 +101,6 @@ files:
101
101
  - lib/tlog/command/delete.rb
102
102
  - lib/tlog/command/display.rb
103
103
  - lib/tlog/command/help.rb
104
- - lib/tlog/command/init.rb
105
104
  - lib/tlog/command/owner.rb
106
105
  - lib/tlog/command/points.rb
107
106
  - lib/tlog/command/pull.rb
@@ -119,7 +118,6 @@ files:
119
118
  - lib/tlog/input.rb
120
119
  - lib/tlog/output.rb
121
120
  - lib/tlog/storage/disk.rb
122
- - lib/tlog/version.rb
123
121
  - tlog.gemspec
124
122
  homepage: http://github.com/cewendel/tlog
125
123
  licenses:
@@ -1,38 +0,0 @@
1
-
2
- class Tlog::Command::Init < Tlog::Command
3
-
4
- def name
5
- "init"
6
- end
7
-
8
- def description
9
- "fuck"
10
- end
11
-
12
- def execute(input,output)
13
- if input.args[0].nil?
14
- raise Tlog::Error::CommandInvalid, "Project already initialized" unless @storage.init_project
15
- else
16
- raise Tlog::Error::CommandInvalid, "Command invalid"
17
- end
18
- #elsif input.args[1].nil?
19
- # arg1 = input.args.shift
20
- # #output.line("arg at 0 was #{arg1}")
21
- #else
22
- # arg1 = input.args.shift
23
- # arg2 = input.args.shift
24
- # #output.line("arg at 0 was #{arg1}")
25
- # #output.line("arg at 1 was #{arg2}")
26
- # raise Tlog::Error::CommandInvalid, "Command invalid"
27
- #end
28
-
29
- #@storage.init_project
30
- end
31
-
32
- def options(parser, options)
33
- parser.banner = "usage: tlog init"
34
- end
35
-
36
- private
37
-
38
- end
data/lib/tlog/version.rb DELETED
@@ -1,3 +0,0 @@
1
- module Tlog
2
- VERSION = "0.0.0"
3
- end