File tree Expand file tree Collapse file tree 3 files changed +20
-0
lines changed Expand file tree Collapse file tree 3 files changed +20
-0
lines changed Original file line number Diff line number Diff line change @@ -29,3 +29,4 @@ Thanks to the following people for making this possible
29
29
- Jess Martin
30
30
- Édouard Brière
31
31
- Teng Siong Ong
32
+ - Nick Plante
Original file line number Diff line number Diff line change
1
+ rdoc.info
2
+ =========
3
+
4
+ This service allows you to auto-public documentation for your Ruby gem or library.
5
+ The resulting documentation will be hosted for you at http://rdoc.info/projects/your-name/your-project
6
+
7
+
8
+ Developer Notes
9
+ ---------------
10
+
11
+ data
12
+ - (no data is required, payload is simply posted to http://rdoc.info/projects/update)
13
+
14
+ payload
15
+ - refer to docs/github_payload
Original file line number Diff line number Diff line change
1
+ service :rdocinfo do |data , payload |
2
+ Net ::HTTP . post_form ( URI . parse ( "http://rdoc.info/projects/update" ) , :payload => JSON . generate ( payload ) )
3
+ "namaste"
4
+ end
You can’t perform that action at this time.
0 commit comments