kilt 0.3.0 → 0.3.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. data/README.textile +32 -0
  2. data/VERSION +1 -1
  3. data/bin/kilt-app +8 -6
  4. metadata +3 -3
data/README.textile CHANGED
@@ -1,3 +1,35 @@
1
+ h2. ABOUT
2
+
3
+ Kilt looks for new activities in all your projects and displays them with Growl, so you are up-to-date with everything is happening.
4
+
5
+ Example: http://img684.imageshack.us/img684/4875/screenshot20100319at349.png
6
+
7
+ Support for Linux is comming. If you want to help, please send me a pull request.
8
+
9
+ h2. INSTALLATION
10
+
11
+ <pre><code>gem install kilt
12
+ kilt-install TOKEN</code></pre>
13
+
14
+ If you don't know your token, you can execute this:
15
+
16
+ <pre><code>curl -u USERNAME:PASSWORD -X GET https://www.pivotaltracker.com/services/v3/tokens/active</code></pre>
17
+
18
+ More info here and other alternative here:
19
+
20
+ http://www.pivotaltracker.com/help/api?version=v3#retrieve_token
21
+
22
+ h2. USAGE
23
+
24
+ <pre><code>kilt-app</code></pre>
25
+
26
+ h2. TODO
27
+
28
+ * run kilt-app in the background
29
+ * support for Linux
30
+ * support for Windows
31
+ * kilt-check (see issues)
32
+
1
33
  h2. LICENSE
2
34
 
3
35
  Copyright (c) 2010 Diego Carrion
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.3.0
1
+ 0.3.1
data/bin/kilt-app CHANGED
@@ -4,10 +4,12 @@ require 'rubygems'
4
4
  require 'yaml'
5
5
  require 'kilt'
6
6
 
7
- token = YAML.load_file(File.expand_path("~/.pivotal_tracker"))['token']
8
-
9
- Kilt.init token
10
-
11
- loop do
12
- sleep 5
7
+ fork do
8
+ token = YAML.load_file(File.expand_path("~/.pivotal_tracker"))['token']
9
+
10
+ Kilt.init token
11
+
12
+ loop do
13
+ sleep 5
14
+ end
13
15
  end
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 3
8
- - 0
9
- version: 0.3.0
8
+ - 1
9
+ version: 0.3.1
10
10
  platform: ruby
11
11
  authors:
12
12
  - Diego Carrion
@@ -14,7 +14,7 @@ autorequire:
14
14
  bindir: bin
15
15
  cert_chain: []
16
16
 
17
- date: 2010-03-19 00:00:00 -03:00
17
+ date: 2010-03-20 00:00:00 -03:00
18
18
  default_executable:
19
19
  dependencies:
20
20
  - !ruby/object:Gem::Dependency