arunthampi-injour 0.2.0 → 0.2.1
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/README.rdoc +5 -1
- data/lib/injour/version.rb +1 -1
- data/lib/injour.rb +5 -2
- metadata +1 -1
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
|
31
|
+
bob$ injour show alice # Shows alice's last 5 updates
|
28
32
|
|
29
33
|
Prefix the cmds with "sudo" as necessary.
|
30
34
|
|
data/lib/injour/version.rb
CHANGED
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
|
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
|