boston-ruby 0.0.1 → 0.0.2
Sign up to get free protection for your applications and to get access to all the features.
- data/README.md +42 -22
- data/bin/boston-ruby +1 -0
- data/lib/boston-ruby.rb +1 -1
- metadata +1 -1
data/README.md
CHANGED
@@ -9,7 +9,15 @@ line.
|
|
9
9
|
m Show recent BostonRB mailing list posts
|
10
10
|
t Show recent tweets by BostonRB members
|
11
11
|
g Show recent github activity by BostonRB members
|
12
|
+
b Show recent blog posts
|
12
13
|
|
14
|
+
## Install
|
15
|
+
|
16
|
+
gem install boston-ruby
|
17
|
+
|
18
|
+
|
19
|
+
Put `alias bostonrb=boston-ruby` in your `~/.bash_profile` if you want to save a few
|
20
|
+
keystrokes.
|
13
21
|
|
14
22
|
## Sample output
|
15
23
|
|
@@ -66,26 +74,38 @@ BostonRB member github activity:
|
|
66
74
|
|
67
75
|
$ boston-ruby g
|
68
76
|
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
robbfitzsimmons : robbfitzsimmons pushed to master at : 06:08PM 03/20
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
77
|
+
cldwalker : cldwalker pushed to master at cldwalker/bacon : 05:49PM 03/20
|
78
|
+
berkmancenter : berkmancenter created repository brkmn : 05:53PM 03/20
|
79
|
+
sbisker : sbisker started watching Kicksend/mailcheck : 05:55PM 03/20
|
80
|
+
techiferous : techiferous pushed to master at techiferous/tabulous : 05:58PM 03/20
|
81
|
+
techiferous : techiferous created tag v1.3.0 at techiferous/tabulous : 05:58PM 03/20
|
82
|
+
techiferous : techiferous commented on pull request 14 on : 06:02PM 03/20
|
83
|
+
: techiferous/tabulous :
|
84
|
+
techiferous : techiferous commented on issue 13 on techiferous/tabulous : 06:04PM 03/20
|
85
|
+
techiferous : techiferous closed issue 13 on techiferous/tabulous : 06:04PM 03/20
|
86
|
+
robbfitzsimmons : robbfitzsimmons pushed to master at : 06:08PM 03/20
|
87
|
+
: robbfitzsimmons/sample_app :
|
88
|
+
cldwalker : cldwalker created branch fix_change_tests at : 06:10PM 03/20
|
89
|
+
: cldwalker/bacon :
|
90
|
+
cldwalker : cldwalker pushed to fix_change_tests at cldwalker/bacon : 06:19PM 03/20
|
91
|
+
cldwalker : cldwalker opened pull request 11 on chneukirchen/bacon : 06:25PM 03/20
|
92
|
+
cldwalker : cldwalker commented on pull request 10 on : 06:26PM 03/20
|
93
|
+
: chneukirchen/bacon :
|
94
|
+
croaky : croaky opened issue 9 on copycopter/style-guide : 06:37PM 03/20
|
95
|
+
jferris : jferris created repository jferris.github.com : 06:38PM 03/20
|
96
|
+
jferris : jferris created branch master at : 06:39PM 03/20
|
97
|
+
: jferris/jferris.github.com :
|
98
|
+
jferris : jferris pushed to master at jferris/jferris.github.com : 06:44PM 03/20
|
91
99
|
[...]
|
100
|
+
|
101
|
+
## Not seeing yourself in the output?
|
102
|
+
|
103
|
+
To get your tweets included in the output, go to this BostonRB wiki page and
|
104
|
+
add your name and Twitter handle:
|
105
|
+
|
106
|
+
https://github.com/bostonrb/bostonrb/wiki/All-Rubyists
|
107
|
+
|
108
|
+
If your GitHub activity is not showing, post a GitHub issue.
|
109
|
+
|
110
|
+
|
111
|
+
|
data/bin/boston-ruby
CHANGED
@@ -22,6 +22,7 @@ Commands:
|
|
22
22
|
m Show recent BostonRB mailing list posts
|
23
23
|
t Show recent tweets by BostonRB members
|
24
24
|
g Show recent github activity by BostonRB members
|
25
|
+
b Show recent blog posts
|
25
26
|
|
26
27
|
Project homepage: http://github.com/danchoi/boston-ruby
|
27
28
|
Author: Daniel Choi <dhchoi@gmail.com>
|
data/lib/boston-ruby.rb
CHANGED