arunthampi-injour 0.2.0 → 0.2.1

Sign up to get free protection for your applications and to get access to all the features.
data/README.rdoc CHANGED
@@ -2,6 +2,10 @@
2
2
 
3
3
  An evolution of the In/Out app which 37Signals uses. A distributed In/Out, if you will.
4
4
 
5
+ For more on what In/Out is, check out the original post:
6
+
7
+ http://www.37signals.com/svn/posts/976-a-peek-at-inout-an-internal-app-at-37signals
8
+
5
9
  == Installation from GitHub Gems
6
10
 
7
11
  sudo gem install dnssd
@@ -24,7 +28,7 @@ An evolution of the In/Out app which 37Signals uses. A distributed In/Out, if yo
24
28
  alice$ injour serve # Starts up publishing your statuses
25
29
  alice$ injour status Testing out injour # Sets your status as injour ['st' is an alias for 'status']
26
30
  bob$ injour list # Finds alice ['ls' is an alias for 'list']
27
- bob$ injour show alice # Shows alice's last 3 updates
31
+ bob$ injour show alice # Shows alice's last 5 updates
28
32
 
29
33
  Prefix the cmds with "sudo" as necessary.
30
34
 
@@ -1,3 +1,3 @@
1
1
  module Injour
2
- VERSION = "0.2.0".freeze
2
+ VERSION = "0.2.1".freeze
3
3
  end
data/lib/injour.rb CHANGED
@@ -33,8 +33,11 @@ status/st [<message>]
33
33
  list/ls
34
34
  List all people who are publishing statuses on Injour
35
35
 
36
- show user
37
- Lists the last three updates from the 'user'
36
+ show user [<number_of_statuses_to_show>]
37
+ Lists the last five updates from the 'user' by default. If you specify number_of_statuses_to_show, it will limit to that number.
38
+
39
+ help
40
+ Displays this message.
38
41
 
39
42
  HELP
40
43
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: arunthampi-injour
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
  - Arun Thampi