q 0.0.0x
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/.gitignore +6 -0
- data/.rvmrc +2 -0
- data/Gemfile +4 -0
- data/README.md +24 -0
- data/Rakefile +1 -0
- data/bin/q +7 -0
- data/lib/q.rb +5 -0
- data/lib/q/version.rb +3 -0
- data/q.gemspec +24 -0
- data/spec/.gitignore +0 -0
- metadata +149 -0
data/.gitignore
ADDED
data/.rvmrc
ADDED
data/Gemfile
ADDED
data/README.md
ADDED
@@ -0,0 +1,24 @@
|
|
1
|
+
q is for Journal
|
2
|
+
================
|
3
|
+
|
4
|
+
Why 'q'? Because 'j' was alread established as a rubygem
|
5
|
+
and I wanted to completely re-write ["j is for Journal"](https://github.com/hooobs/j)
|
6
|
+
because it's been a failed attempt from the start.
|
7
|
+
|
8
|
+
What is 'q'? It's a command-line activity tracker. You tell
|
9
|
+
it what you're working on and (optionally) when you worked on
|
10
|
+
it in natural language and it'll record that information for you.
|
11
|
+
|
12
|
+
The app is backed by sqlite, so no messy text files are necessary and
|
13
|
+
hopefully search features will be easy to implement.
|
14
|
+
|
15
|
+
Laundry List
|
16
|
+
------------
|
17
|
+
|
18
|
+
* add entries for the current time
|
19
|
+
* add entries for past and future dates in natural language (chronic)
|
20
|
+
* list entries with pretty formatting and fuzzy time (also chronic)
|
21
|
+
* search entries
|
22
|
+
* hash tags
|
23
|
+
* some kind of fancy interbutt/cloud integration
|
24
|
+
* import/export feature
|
data/Rakefile
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
require 'bundler/gem_tasks'
|
data/bin/q
ADDED
data/lib/q.rb
ADDED
data/lib/q/version.rb
ADDED
data/q.gemspec
ADDED
@@ -0,0 +1,24 @@
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
2
|
+
$:.push File.expand_path("../lib", __FILE__)
|
3
|
+
require "q/version"
|
4
|
+
|
5
|
+
Gem::Specification.new do |s|
|
6
|
+
s.name = "q"
|
7
|
+
s.version = Q::VERSION
|
8
|
+
s.authors = ["Christopher M. Hobbs"]
|
9
|
+
s.email = ["chris@altbit.org"]
|
10
|
+
s.homepage = "http://hooobs.github.com/q"
|
11
|
+
s.summary = %q{q is for Journal}
|
12
|
+
s.description = %q{q is a command line activity logger/time tracker.}
|
13
|
+
|
14
|
+
s.add_dependency("i18n")
|
15
|
+
s.add_dependency("slop")
|
16
|
+
s.add_dependency("chronic")
|
17
|
+
s.add_dependency("dm-core")
|
18
|
+
s.add_dependency("dm-migrations")
|
19
|
+
|
20
|
+
s.files = `git ls-files`.split("\n")
|
21
|
+
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
22
|
+
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
23
|
+
s.require_paths = ["lib"]
|
24
|
+
end
|
data/spec/.gitignore
ADDED
File without changes
|
metadata
ADDED
@@ -0,0 +1,149 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: q
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
hash: 3414842651491571531
|
5
|
+
prerelease: 5
|
6
|
+
segments:
|
7
|
+
- 0
|
8
|
+
- 0
|
9
|
+
- 0
|
10
|
+
- x
|
11
|
+
version: 0.0.0x
|
12
|
+
platform: ruby
|
13
|
+
authors:
|
14
|
+
- Christopher M. Hobbs
|
15
|
+
autorequire:
|
16
|
+
bindir: bin
|
17
|
+
cert_chain: []
|
18
|
+
|
19
|
+
date: 2011-07-05 00:00:00 -05:00
|
20
|
+
default_executable:
|
21
|
+
dependencies:
|
22
|
+
- !ruby/object:Gem::Dependency
|
23
|
+
name: i18n
|
24
|
+
prerelease: false
|
25
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
26
|
+
none: false
|
27
|
+
requirements:
|
28
|
+
- - ">="
|
29
|
+
- !ruby/object:Gem::Version
|
30
|
+
hash: 3
|
31
|
+
segments:
|
32
|
+
- 0
|
33
|
+
version: "0"
|
34
|
+
type: :runtime
|
35
|
+
version_requirements: *id001
|
36
|
+
- !ruby/object:Gem::Dependency
|
37
|
+
name: slop
|
38
|
+
prerelease: false
|
39
|
+
requirement: &id002 !ruby/object:Gem::Requirement
|
40
|
+
none: false
|
41
|
+
requirements:
|
42
|
+
- - ">="
|
43
|
+
- !ruby/object:Gem::Version
|
44
|
+
hash: 3
|
45
|
+
segments:
|
46
|
+
- 0
|
47
|
+
version: "0"
|
48
|
+
type: :runtime
|
49
|
+
version_requirements: *id002
|
50
|
+
- !ruby/object:Gem::Dependency
|
51
|
+
name: chronic
|
52
|
+
prerelease: false
|
53
|
+
requirement: &id003 !ruby/object:Gem::Requirement
|
54
|
+
none: false
|
55
|
+
requirements:
|
56
|
+
- - ">="
|
57
|
+
- !ruby/object:Gem::Version
|
58
|
+
hash: 3
|
59
|
+
segments:
|
60
|
+
- 0
|
61
|
+
version: "0"
|
62
|
+
type: :runtime
|
63
|
+
version_requirements: *id003
|
64
|
+
- !ruby/object:Gem::Dependency
|
65
|
+
name: dm-core
|
66
|
+
prerelease: false
|
67
|
+
requirement: &id004 !ruby/object:Gem::Requirement
|
68
|
+
none: false
|
69
|
+
requirements:
|
70
|
+
- - ">="
|
71
|
+
- !ruby/object:Gem::Version
|
72
|
+
hash: 3
|
73
|
+
segments:
|
74
|
+
- 0
|
75
|
+
version: "0"
|
76
|
+
type: :runtime
|
77
|
+
version_requirements: *id004
|
78
|
+
- !ruby/object:Gem::Dependency
|
79
|
+
name: dm-migrations
|
80
|
+
prerelease: false
|
81
|
+
requirement: &id005 !ruby/object:Gem::Requirement
|
82
|
+
none: false
|
83
|
+
requirements:
|
84
|
+
- - ">="
|
85
|
+
- !ruby/object:Gem::Version
|
86
|
+
hash: 3
|
87
|
+
segments:
|
88
|
+
- 0
|
89
|
+
version: "0"
|
90
|
+
type: :runtime
|
91
|
+
version_requirements: *id005
|
92
|
+
description: q is a command line activity logger/time tracker.
|
93
|
+
email:
|
94
|
+
- chris@altbit.org
|
95
|
+
executables:
|
96
|
+
- q
|
97
|
+
extensions: []
|
98
|
+
|
99
|
+
extra_rdoc_files: []
|
100
|
+
|
101
|
+
files:
|
102
|
+
- .gitignore
|
103
|
+
- .rvmrc
|
104
|
+
- Gemfile
|
105
|
+
- README.md
|
106
|
+
- Rakefile
|
107
|
+
- bin/q
|
108
|
+
- lib/q.rb
|
109
|
+
- lib/q/version.rb
|
110
|
+
- q.gemspec
|
111
|
+
- spec/.gitignore
|
112
|
+
has_rdoc: true
|
113
|
+
homepage: http://hooobs.github.com/q
|
114
|
+
licenses: []
|
115
|
+
|
116
|
+
post_install_message:
|
117
|
+
rdoc_options: []
|
118
|
+
|
119
|
+
require_paths:
|
120
|
+
- lib
|
121
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
122
|
+
none: false
|
123
|
+
requirements:
|
124
|
+
- - ">="
|
125
|
+
- !ruby/object:Gem::Version
|
126
|
+
hash: 3
|
127
|
+
segments:
|
128
|
+
- 0
|
129
|
+
version: "0"
|
130
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
131
|
+
none: false
|
132
|
+
requirements:
|
133
|
+
- - ">"
|
134
|
+
- !ruby/object:Gem::Version
|
135
|
+
hash: 25
|
136
|
+
segments:
|
137
|
+
- 1
|
138
|
+
- 3
|
139
|
+
- 1
|
140
|
+
version: 1.3.1
|
141
|
+
requirements: []
|
142
|
+
|
143
|
+
rubyforge_project:
|
144
|
+
rubygems_version: 1.5.2
|
145
|
+
signing_key:
|
146
|
+
specification_version: 3
|
147
|
+
summary: q is for Journal
|
148
|
+
test_files:
|
149
|
+
- spec/.gitignore
|