redditkit 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/LICENSE.md +22 -0
- data/README.md +155 -0
- data/Rakefile +8 -0
- data/lib/redditkit.rb +26 -0
- data/lib/redditkit/base.rb +60 -0
- data/lib/redditkit/client.rb +142 -0
- data/lib/redditkit/client/account.rb +73 -0
- data/lib/redditkit/client/apps.rb +63 -0
- data/lib/redditkit/client/captcha.rb +36 -0
- data/lib/redditkit/client/comments.rb +54 -0
- data/lib/redditkit/client/flair.rb +148 -0
- data/lib/redditkit/client/links.rb +134 -0
- data/lib/redditkit/client/miscellaneous.rb +50 -0
- data/lib/redditkit/client/moderation.rb +179 -0
- data/lib/redditkit/client/multireddits.rb +207 -0
- data/lib/redditkit/client/private_messages.rb +74 -0
- data/lib/redditkit/client/search.rb +25 -0
- data/lib/redditkit/client/subreddits.rb +120 -0
- data/lib/redditkit/client/users.rb +109 -0
- data/lib/redditkit/client/utilities.rb +137 -0
- data/lib/redditkit/client/voting.rb +41 -0
- data/lib/redditkit/client/wiki.rb +83 -0
- data/lib/redditkit/comment.rb +54 -0
- data/lib/redditkit/creatable.rb +17 -0
- data/lib/redditkit/error.rb +111 -0
- data/lib/redditkit/link.rb +140 -0
- data/lib/redditkit/moderator_action.rb +19 -0
- data/lib/redditkit/multireddit.rb +32 -0
- data/lib/redditkit/multireddit_description.rb +14 -0
- data/lib/redditkit/paginated_response.rb +22 -0
- data/lib/redditkit/private_message.rb +27 -0
- data/lib/redditkit/response/parse_json.rb +29 -0
- data/lib/redditkit/response/raise_error.rb +21 -0
- data/lib/redditkit/subreddit.rb +86 -0
- data/lib/redditkit/thing.rb +20 -0
- data/lib/redditkit/user.rb +30 -0
- data/lib/redditkit/version.rb +19 -0
- data/lib/redditkit/votable.rb +37 -0
- data/redditkit.gemspec +25 -0
- data/spec/cassettes/RedditKit_Client/should_raise_an_error_with_invalid_credentials.yml +39 -0
- data/spec/cassettes/RedditKit_Client_Account/_sign_in/signs_the_user_in.yml +132 -0
- data/spec/cassettes/RedditKit_Client_Account/_update_session/updates_the_current_session.yml +133 -0
- data/spec/cassettes/RedditKit_Client_Captcha/_captcha_url/returns_a_CAPTCHA_url_from_an_identifier.yml +38 -0
- data/spec/cassettes/RedditKit_Client_Captcha/_needs_captcha_/checks_if_the_current_account_needs_a_CAPTCHA.yml +44 -0
- data/spec/cassettes/RedditKit_Client_Captcha/_new_captcha_identifier/returns_a_new_CAPTCHA_identifier.yml +38 -0
- data/spec/cassettes/RedditKit_Client_Comments/_comment/requests_the_correct_resource.yml +47 -0
- data/spec/cassettes/RedditKit_Client_Comments/_comments/with_a_RedditKit_Link/returns_comments_on_a_link.yml +140 -0
- data/spec/cassettes/RedditKit_Client_Comments/_comments/with_a_link_identifier/returns_comments_on_a_link.yml +89 -0
- data/spec/cassettes/RedditKit_Client_Comments/_submit_comment/requests_the_correct_resource.yml +313 -0
- data/spec/cassettes/RedditKit_Client_Flair/_apply_flair_template/clears_flair_templates.yml +52 -0
- data/spec/cassettes/RedditKit_Client_Flair/_clear_flair_templates/clears_flair_templates.yml +49 -0
- data/spec/cassettes/RedditKit_Client_Flair/_create_flair_template/creates_a_flair_template.yml +46 -0
- data/spec/cassettes/RedditKit_Client_Flair/_create_flair_template/raises_InvalidClassName.yml +46 -0
- data/spec/cassettes/RedditKit_Client_Flair/_create_flair_template/raises_TooManyClassNames.yml +47 -0
- data/spec/cassettes/RedditKit_Client_Flair/_delete_user_flair/requests_the_correct_resource.yml +60 -0
- data/spec/cassettes/RedditKit_Client_Flair/_flair_list/returns_the_list_of_flair.yml +44 -0
- data/spec/cassettes/RedditKit_Client_Flair/_set_flair/requests_the_correct_resource.yml +49 -0
- data/spec/cassettes/RedditKit_Client_Flair/_set_flair_options/sets_flair_options.yml +49 -0
- data/spec/cassettes/RedditKit_Client_Flair/_set_flair_with_csv/requests_the_correct_resource.yml +51 -0
- data/spec/cassettes/RedditKit_Client_Flair/_toggle_flair/requests_the_correct_resource.yml +49 -0
- data/spec/cassettes/RedditKit_Client_Links/_front_page/requests_the_correct_category.yml +498 -0
- data/spec/cassettes/RedditKit_Client_Links/_front_page/requests_the_correct_resource.yml +603 -0
- data/spec/cassettes/RedditKit_Client_Links/_hide/requests_the_correct_resource.yml +46 -0
- data/spec/cassettes/RedditKit_Client_Links/_link/returns_a_link.yml +55 -0
- data/spec/cassettes/RedditKit_Client_Links/_links/contains_pagination_information.yml +402 -0
- data/spec/cassettes/RedditKit_Client_Links/_links/requests_a_certain_number_of_links.yml +186 -0
- data/spec/cassettes/RedditKit_Client_Links/_links/requests_front_page_links_if_no_subreddit_is_present.yml +603 -0
- data/spec/cassettes/RedditKit_Client_Links/_links/requests_links_with_the_correct_time_frame.yml +375 -0
- data/spec/cassettes/RedditKit_Client_Links/_links/requests_the_correct_subreddit_and_category.yml +402 -0
- data/spec/cassettes/RedditKit_Client_Links/_links_with_domain/returns_links_with_a_specific_domain.yml +99 -0
- data/spec/cassettes/RedditKit_Client_Links/_mark_nsfw/requests_the_correct_resource.yml +46 -0
- data/spec/cassettes/RedditKit_Client_Links/_random_link/returns_a_random_link.yml +91 -0
- data/spec/cassettes/RedditKit_Client_Links/_submit/raises_RedditKit_InvalidCaptcha_if_no_CAPTCHA_is_filled_out.yml +54 -0
- data/spec/cassettes/RedditKit_Client_Links/_unhide/requests_the_correct_resource.yml +46 -0
- data/spec/cassettes/RedditKit_Client_Links/_unmark_nsfw/requests_the_correct_resource.yml +46 -0
- data/spec/cassettes/RedditKit_Client_Miscellaneous/_delete/requests_the_correct_resource.yml +46 -0
- data/spec/cassettes/RedditKit_Client_Miscellaneous/_edit/requests_the_correct_resource.yml +52 -0
- data/spec/cassettes/RedditKit_Client_Miscellaneous/_save/saves_an_object.yml +46 -0
- data/spec/cassettes/RedditKit_Client_Miscellaneous/_unsave/unsaves_an_object.yml +89 -0
- data/spec/cassettes/RedditKit_Client_Moderation/_accept_moderator_invitation/requests_the_correct_resource.yml +53 -0
- data/spec/cassettes/RedditKit_Client_Moderation/_ban/requests_the_correct_resource.yml +103 -0
- data/spec/cassettes/RedditKit_Client_Moderation/_contributors_to_subreddit/requests_the_correct_resource.yml +47 -0
- data/spec/cassettes/RedditKit_Client_Moderation/_ignore_reports/requests_the_correct_resource.yml +46 -0
- data/spec/cassettes/RedditKit_Client_Moderation/_moderation_log/returns_RedditKit_ModeratorAction_objects.yml +153 -0
- data/spec/cassettes/RedditKit_Client_Moderation/_moderators_of_subreddit/requests_the_correct_resource.yml +48 -0
- data/spec/cassettes/RedditKit_Client_Moderation/_reset_subreddit_header/requests_the_correct_resource.yml +55 -0
- data/spec/cassettes/RedditKit_Client_Moderation/_set_contest_mode/requests_the_correct_resource.yml +46 -0
- data/spec/cassettes/RedditKit_Client_Moderation/_set_sticky_post/requests_the_correct_resource.yml +46 -0
- data/spec/cassettes/RedditKit_Client_Moderation/_unban/requests_the_correct_resource.yml +54 -0
- data/spec/cassettes/RedditKit_Client_Moderation/_unignore_reports/requests_the_correct_resource.yml +46 -0
- data/spec/cassettes/RedditKit_Client_Multireddits/_add_subreddit_to_multireddit/adds_a_subreddit_to_a_multireddit.yml +177 -0
- data/spec/cassettes/RedditKit_Client_Multireddits/_create_multireddit/creates_a_multireddit.yml +137 -0
- data/spec/cassettes/RedditKit_Client_Multireddits/_create_multireddit/raises_RedditKit_Conflict_when_using_an_existing_name.yml +133 -0
- data/spec/cassettes/RedditKit_Client_Multireddits/_delete_multireddit/deletes_a_multireddit.yml +134 -0
- data/spec/cassettes/RedditKit_Client_Multireddits/_multireddit/with_a_path/returns_a_multireddit.yml +39 -0
- data/spec/cassettes/RedditKit_Client_Multireddits/_multireddit/without_a_path/returns_a_multireddit.yml +39 -0
- data/spec/cassettes/RedditKit_Client_Multireddits/_multireddit_description/with_a_multireddit/returns_a_multireddit_description.yml +81 -0
- data/spec/cassettes/RedditKit_Client_Multireddits/_multireddit_description/with_a_username_and_multireddit_name/returns_a_multireddit_description.yml +45 -0
- data/spec/cassettes/RedditKit_Client_Multireddits/_my_multireddits/return_s_the_user_s_multireddits.yml +47 -0
- data/spec/cassettes/RedditKit_Client_Multireddits/_remove_subreddit_from_multireddit/removes_a_subreddit_from_a_multireddit.yml +175 -0
- data/spec/cassettes/RedditKit_Client_Multireddits/_rename_multireddit/renames_a_multireddit.yml +134 -0
- data/spec/cassettes/RedditKit_Client_Multireddits/_set_multireddit_description/returns_a_multireddit_description.yml +48 -0
- data/spec/cassettes/RedditKit_Client_Multireddits/_update_multireddit/updates_a_multireddit.yml +184 -0
- data/spec/cassettes/RedditKit_Client_PrivateMessages/_block_author_of_message/requests_the_correct_resource.yml +46 -0
- data/spec/cassettes/RedditKit_Client_PrivateMessages/_mark_as_read/requests_the_correct_resource.yml +51 -0
- data/spec/cassettes/RedditKit_Client_PrivateMessages/_mark_as_unread/requests_the_correct_resource.yml +51 -0
- data/spec/cassettes/RedditKit_Client_PrivateMessages/_messages/requests_the_correct_resource.yml +187 -0
- data/spec/cassettes/RedditKit_Client_PrivateMessages/_unblock/requests_the_correct_resource.yml +46 -0
- data/spec/cassettes/RedditKit_Client_Search/_search/restricts_searches_to_a_specific_subreddit.yml +878 -0
- data/spec/cassettes/RedditKit_Client_Search/_search/returns_a_specific_number_of_results.yml +130 -0
- data/spec/cassettes/RedditKit_Client_Search/_search/returns_search_results.yml +844 -0
- data/spec/cassettes/RedditKit_Client_Subreddits/_random_subreddit/returns_a_random_subreddit.yml +181 -0
- data/spec/cassettes/RedditKit_Client_Subreddits/_recommended_subreddits/returns_subreddit_names.yml +37 -0
- data/spec/cassettes/RedditKit_Client_Subreddits/_search_subreddits_by_name/returns_subreddit_names.yml +875 -0
- data/spec/cassettes/RedditKit_Client_Subreddits/_subreddit/returns_a_specified_subreddit.yml +100 -0
- data/spec/cassettes/RedditKit_Client_Subreddits/_subreddits/returns_a_specified_number_of_subreddits.yml +505 -0
- data/spec/cassettes/RedditKit_Client_Subreddits/_subreddits/returns_subreddits_from_a_specific_category.yml +510 -0
- data/spec/cassettes/RedditKit_Client_Subreddits/_subreddits_by_topic/returns_subreddit_names.yml +41 -0
- data/spec/cassettes/RedditKit_Client_Subreddits/_subscribe/requests_the_correct_resource.yml +46 -0
- data/spec/cassettes/RedditKit_Client_Subreddits/_subscribed_subreddits/returns_a_specified_number_of_subreddits.yml +415 -0
- data/spec/cassettes/RedditKit_Client_Subreddits/_subscribed_subreddits/returns_subreddits_from_a_specific_category.yml +58 -0
- data/spec/cassettes/RedditKit_Client_Subreddits/_subscribed_subreddits/returns_the_user_s_subscribed_subreddits.yml +3469 -0
- data/spec/cassettes/RedditKit_Client_Subreddits/_unsubscribe/requests_the_correct_resource.yml +46 -0
- data/spec/cassettes/RedditKit_Client_Users/_friends/returns_the_user_s_friends.yml +48 -0
- data/spec/cassettes/RedditKit_Client_Users/_my_content/returns_the_user_s_content.yml +60 -0
- data/spec/cassettes/RedditKit_Client_Users/_user/requests_the_correct_resource.yml +48 -0
- data/spec/cassettes/RedditKit_Client_Users/_user/returns_a_specified_user.yml +48 -0
- data/spec/cassettes/RedditKit_Client_Users/_user/returns_the_authenticated_user.yml +48 -0
- data/spec/cassettes/RedditKit_Client_Users/_user_content/returns_the_user_s_content.yml +41 -0
- data/spec/cassettes/RedditKit_Client_Users/_username_available_/returns_false_for_an_unavailable_username.yml +36 -0
- data/spec/cassettes/RedditKit_Client_Users/_username_available_/returns_true_for_an_available_username.yml +36 -0
- data/spec/cassettes/RedditKit_Client_Voting/_downvote/with_a_comment_full_name_passed/downvotes_the_comment.yml +100 -0
- data/spec/cassettes/RedditKit_Client_Voting/_downvote/with_a_comment_passed/downvotes_the_comment.yml +154 -0
- data/spec/cassettes/RedditKit_Client_Voting/_downvote/with_a_link_full_name_passed/downvotes_the_link.yml +106 -0
- data/spec/cassettes/RedditKit_Client_Voting/_downvote/with_a_link_passed/downvotes_the_link.yml +166 -0
- data/spec/cassettes/RedditKit_Client_Voting/_upvote/with_a_comment_full_name_passed/upvotes_the_comment.yml +100 -0
- data/spec/cassettes/RedditKit_Client_Voting/_upvote/with_a_comment_passed/upvotes_the_comment.yml +154 -0
- data/spec/cassettes/RedditKit_Client_Voting/_upvote/with_a_link_full_name_passed/upvotes_the_link.yml +106 -0
- data/spec/cassettes/RedditKit_Client_Voting/_upvote/with_a_link_passed/upvotes_the_link.yml +166 -0
- data/spec/cassettes/RedditKit_Client_Voting/_withdraw_vote/with_a_comment_full_name_passed/withdraws_the_vote_on_the_comment.yml +154 -0
- data/spec/cassettes/RedditKit_Client_Voting/_withdraw_vote/with_a_comment_passed/withdraws_the_vote_on_the_comment.yml +208 -0
- data/spec/cassettes/RedditKit_Client_Voting/_withdraw_vote/with_a_link_full_name_passed/withdraws_the_vote_on_the_link.yml +166 -0
- data/spec/cassettes/RedditKit_Client_Voting/_withdraw_vote/with_a_link_passed/withdraws_the_vote_on_the_link.yml +226 -0
- data/spec/cassettes/RedditKit_Client_Wiki/_add_wiki_editor/requests_the_correct_resource.yml +46 -0
- data/spec/cassettes/RedditKit_Client_Wiki/_edit_wiki_page/requests_the_correct_resource.yml +48 -0
- data/spec/cassettes/RedditKit_Client_Wiki/_hide_wiki_revision/requests_the_correct_resource.yml +46 -0
- data/spec/cassettes/RedditKit_Client_Wiki/_remove_wiki_editor/requests_the_correct_resource.yml +46 -0
- data/spec/cassettes/RedditKit_Client_Wiki/_revert_to_revision/requests_the_correct_resource.yml +46 -0
- data/spec/cassettes/RedditKit_Comment/should_not_be_deleted_if_neither_author_and_comment_attributes_are_set_to_deleted_.yml +90 -0
- data/spec/cassettes/RedditKit_Comment/should_return_replies.yml +90 -0
- data/spec/cassettes/authenticated_client.yml +87 -0
- data/spec/redditkit/base_spec.rb +45 -0
- data/spec/redditkit/client/account_spec.rb +50 -0
- data/spec/redditkit/client/apps_spec.rb +58 -0
- data/spec/redditkit/client/captcha_spec.rb +30 -0
- data/spec/redditkit/client/comments_spec.rb +40 -0
- data/spec/redditkit/client/flair_spec.rb +92 -0
- data/spec/redditkit/client/links_spec.rb +103 -0
- data/spec/redditkit/client/miscellaneous_spec.rb +40 -0
- data/spec/redditkit/client/moderation_spec.rb +141 -0
- data/spec/redditkit/client/multireddits_spec.rb +158 -0
- data/spec/redditkit/client/private_messages_spec.rb +51 -0
- data/spec/redditkit/client/search_spec.rb +25 -0
- data/spec/redditkit/client/subreddits_spec.rb +83 -0
- data/spec/redditkit/client/users_spec.rb +92 -0
- data/spec/redditkit/client/voting_spec.rb +99 -0
- data/spec/redditkit/client/wiki_spec.rb +40 -0
- data/spec/redditkit/client_spec.rb +46 -0
- data/spec/redditkit/comment_spec.rb +26 -0
- data/spec/redditkit/creatable_spec.rb +24 -0
- data/spec/redditkit/error_spec.rb +61 -0
- data/spec/redditkit/link_spec.rb +33 -0
- data/spec/redditkit/multireddit_spec.rb +27 -0
- data/spec/redditkit/paginated_response_spec.rb +23 -0
- data/spec/redditkit/thing_spec.rb +18 -0
- data/spec/redditkit/votable_spec.rb +52 -0
- data/spec/redditkit_spec.rb +21 -0
- data/spec/spec_helper.rb +124 -0
- metadata +390 -0
data/spec/cassettes/RedditKit_Client_Subreddits/_random_subreddit/returns_a_random_subreddit.yml
ADDED
@@ -0,0 +1,181 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: http://www.reddit.com/r/random
|
6
|
+
body:
|
7
|
+
encoding: US-ASCII
|
8
|
+
string: ''
|
9
|
+
headers:
|
10
|
+
User-Agent:
|
11
|
+
- Faraday v0.8.8
|
12
|
+
Accept-Encoding:
|
13
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
14
|
+
Accept:
|
15
|
+
- "*/*"
|
16
|
+
response:
|
17
|
+
status:
|
18
|
+
code: 302
|
19
|
+
message: Moved Temporarily
|
20
|
+
headers:
|
21
|
+
Location:
|
22
|
+
- http://www.reddit.com/r/goldredditsays/
|
23
|
+
Content-Length:
|
24
|
+
- '261'
|
25
|
+
Content-Type:
|
26
|
+
- text/html; charset=UTF-8
|
27
|
+
Server:
|
28
|
+
- "'; DROP TABLE servertypes; --"
|
29
|
+
Vary:
|
30
|
+
- Accept-Encoding
|
31
|
+
Date:
|
32
|
+
- Sun, 10 Nov 2013 22:38:27 GMT
|
33
|
+
Connection:
|
34
|
+
- keep-alive
|
35
|
+
body:
|
36
|
+
encoding: UTF-8
|
37
|
+
string: |-
|
38
|
+
<html>
|
39
|
+
<head>
|
40
|
+
<title>302 Found</title>
|
41
|
+
</head>
|
42
|
+
<body>
|
43
|
+
<h1>302 Found</h1>
|
44
|
+
The resource was found at <a href="http://www.reddit.com/r/goldredditsays/">http://www.reddit.com/r/goldredditsays/</a>;
|
45
|
+
you should be redirected automatically.
|
46
|
+
|
47
|
+
|
48
|
+
</body>
|
49
|
+
</html>
|
50
|
+
http_version:
|
51
|
+
recorded_at: Sun, 10 Nov 2013 22:38:25 GMT
|
52
|
+
- request:
|
53
|
+
method: get
|
54
|
+
uri: http://www.reddit.com/r/goldredditsays/about.json
|
55
|
+
body:
|
56
|
+
encoding: US-ASCII
|
57
|
+
string: ''
|
58
|
+
headers:
|
59
|
+
User-Agent:
|
60
|
+
- Faraday v0.8.8
|
61
|
+
Accept-Encoding:
|
62
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
63
|
+
Accept:
|
64
|
+
- "*/*"
|
65
|
+
response:
|
66
|
+
status:
|
67
|
+
code: 200
|
68
|
+
message: OK
|
69
|
+
headers:
|
70
|
+
Content-Type:
|
71
|
+
- application/json; charset=UTF-8
|
72
|
+
Server:
|
73
|
+
- "'; DROP TABLE servertypes; --"
|
74
|
+
Vary:
|
75
|
+
- accept-encoding
|
76
|
+
Date:
|
77
|
+
- Sun, 10 Nov 2013 22:38:27 GMT
|
78
|
+
Content-Length:
|
79
|
+
- '9830'
|
80
|
+
Connection:
|
81
|
+
- keep-alive
|
82
|
+
body:
|
83
|
+
encoding: UTF-8
|
84
|
+
string: "{\"kind\": \"t5\", \"data\": {\"submit_text_html\": null, \"user_is_banned\":
|
85
|
+
null, \"id\": \"2t72t\", \"submit_text\": \"\", \"spam_selfposts\": \"high\",
|
86
|
+
\"display_name\": \"goldredditsays\", \"header_img\": \"http://f.thumbs.redditmedia.com/W0xItPrYVx2yAjWw.png\",
|
87
|
+
\"description_html\": \"<!-- SC_OFF --><div class=\\\"md\\\"><h3>THE
|
88
|
+
SRS FEMPIRE</h3>\\n\\n<table><thead>\\n<tr>\\n<th
|
89
|
+
align=\\\"left\\\">.</th>\\n<th align=\\\"left\\\">.</th>\\n</tr>\\n</thead><tbody>\\n<tr>\\n<td
|
90
|
+
align=\\\"left\\\"><a href=\\\"/r/ShitRedditSays\\\">ShitRedditSays</a></td>\\n<td
|
91
|
+
align=\\\"left\\\"><a href=\\\"/r/SRSBeliefs\\\">SRSBeliefs</a></td>\\n</tr>\\n<tr>\\n<td
|
92
|
+
align=\\\"left\\\"><a href=\\\"/r/SRSBooks\\\">SRSBooks</a></td>\\n<td
|
93
|
+
align=\\\"left\\\"><a href=\\\"/r/SRSBusiness\\\">SRSBusiness</a></td>\\n</tr>\\n<tr>\\n<td
|
94
|
+
align=\\\"left\\\"><a href=\\\"/r/SRSCinema\\\">SRSCinema</a></td>\\n<td
|
95
|
+
align=\\\"left\\\"><a href=\\\"/r/SRSComics\\\">SRSComics</a></td>\\n</tr>\\n<tr>\\n<td
|
96
|
+
align=\\\"left\\\"><a href=\\\"/r/SRSDisabilities\\\">SRSDisabilities</a></td>\\n<td
|
97
|
+
align=\\\"left\\\"><a href=\\\"/r/SRSDiscussion\\\">SRSDiscussion</a></td>\\n</tr>\\n<tr>\\n<td
|
98
|
+
align=\\\"left\\\"><a href=\\\"/r/SRSFeminism\\\">SRSFeminism</a></td>\\n<td
|
99
|
+
align=\\\"left\\\"><a href=\\\"/r/SRSFoodies\\\">SRSFoodies</a></td>\\n</tr>\\n<tr>\\n<td
|
100
|
+
align=\\\"left\\\"><a href=\\\"/r/SRSFunny\\\">SRSFunny</a></td>\\n<td
|
101
|
+
align=\\\"left\\\"><a href=\\\"/r/SRSGaming\\\">SRSGaming</a></td>\\n</tr>\\n<tr>\\n<td
|
102
|
+
align=\\\"left\\\"><a href=\\\"/r/SRSGreatestHits\\\">SRSGreatestHits</a></td>\\n<td
|
103
|
+
align=\\\"left\\\"><a href=\\\"/r/SRSGSM\\\">SRSGSM</a></td>\\n</tr>\\n<tr>\\n<td
|
104
|
+
align=\\\"left\\\"><a href=\\\"/r/SRSHappy\\\">SRSHappy</a></td>\\n<td
|
105
|
+
align=\\\"left\\\"><a href=\\\"/r/SRSImages\\\">SRSImages</a></td>\\n</tr>\\n<tr>\\n<td
|
106
|
+
align=\\\"left\\\"><a href=\\\"/r/SRSMailbag\\\">SRSMailbag</a></td>\\n<td
|
107
|
+
align=\\\"left\\\"><a href=\\\"/r/SRSMen\\\">SRSMen</a></td>\\n</tr>\\n<tr>\\n<td
|
108
|
+
align=\\\"left\\\"><a href=\\\"/r/SRSMeta\\\">SRSMeta</a></td>\\n<td
|
109
|
+
align=\\\"left\\\"><a href=\\\"/r/SRSMusic\\\">SRSMusic</a></td>\\n</tr>\\n<tr>\\n<td
|
110
|
+
align=\\\"left\\\"><a href=\\\"/r/SRSMythos\\\">SRSMythos</a></td>\\n<td
|
111
|
+
align=\\\"left\\\"><a href=\\\"/r/SRSPoC\\\">SRSPoC</a></td>\\n</tr>\\n<tr>\\n<td
|
112
|
+
align=\\\"left\\\"><a href=\\\"/r/SRSPonies\\\">SRSPonies</a></td>\\n<td
|
113
|
+
align=\\\"left\\\"><a href=\\\"/r/SRSQuestions\\\">SRSQuestions</a></td>\\n</tr>\\n<tr>\\n<td
|
114
|
+
align=\\\"left\\\"><a href=\\\"/r/SRSRedditDrama\\\">SRSRedditDrama</a></td>\\n<td
|
115
|
+
align=\\\"left\\\"><a href=\\\"/r/SRSScience\\\">SRSScience</a></td>\\n</tr>\\n<tr>\\n<td
|
116
|
+
align=\\\"left\\\"><a href=\\\"/r/SRSSex\\\">SRSSex</a></td>\\n<td
|
117
|
+
align=\\\"left\\\"><a href=\\\"/r/SRSSkeptic\\\">SRSSkeptic</a></td>\\n</tr>\\n<tr>\\n<td
|
118
|
+
align=\\\"left\\\"><a href=\\\"/r/SRSTechnology\\\">SRSTechnology</a></td>\\n<td
|
119
|
+
align=\\\"left\\\"><a href=\\\"/r/SRSTelevision\\\">SRSTelevision</a></td>\\n</tr>\\n<tr>\\n<td
|
120
|
+
align=\\\"left\\\"><a href=\\\"/r/SRSTransSupport\\\">SRSTransSupport</a></td>\\n<td
|
121
|
+
align=\\\"left\\\"><a href=\\\"/r/SRSTrees\\\">SRSTrees</a></td>\\n</tr>\\n<tr>\\n<td
|
122
|
+
align=\\\"left\\\"><a href=\\\"/r/SRSWomen\\\">SRSWomen</a></td>\\n<td
|
123
|
+
align=\\\"left\\\"><a href=\\\"/r/SRSWorldProblems\\\">SRSWorldProblems</a></td>\\n</tr>\\n<tr>\\n<td
|
124
|
+
align=\\\"left\\\"><a href=\\\"/r/Daww\\\">Daww</a></td>\\n<td
|
125
|
+
align=\\\"left\\\"><a href=\\\"/r/GoldRedditSays\\\">GoldRedditSays</a></td>\\n</tr>\\n<tr>\\n<td
|
126
|
+
align=\\\"left\\\"><a href=\\\"/r/SocialJustice101\\\">SocialJustice101</a></td>\\n<td
|
127
|
+
align=\\\"left\\\"><a href=\\\"http://www.reddit.com/r/ShitRedditSays/wiki/directory\\\">Full
|
128
|
+
Directory</a></td>\\n</tr>\\n</tbody></table>\\n\\n<hr/>\\n\\n<h1>Rules</h1>\\n\\n<h6><a
|
129
|
+
href=\\\"#h6-red\\\"></a></h6>\\n\\n<blockquote>\\n<p><strong>1.</strong>
|
130
|
+
Posts that are bigoted, creepy, misogynistic, transphobic, unsettling, racist,
|
131
|
+
homophobic, or just reeking of unexamined, toxic privilege will probably result
|
132
|
+
in a ban.</p>\\n\\n<p><strong>2.</strong> Please include
|
133
|
+
the vote count in brackets along with a quote as the title of the gold you
|
134
|
+
are submitting. A brief summary for context or for complex posts is also acceptable.</p>\\n\\n<p><strong>3.</strong>
|
135
|
+
Please link to an individual post and refrain from liking to an entire submission.
|
136
|
+
Please do not say &quot;this whole thread,&quot; and instead find
|
137
|
+
a good nugget of gold that you liked to link to from the comments.</p>\\n\\n<p><strong>4.</strong>
|
138
|
+
Please link only to upvoted posts. We want to see people agreeing with gold,
|
139
|
+
to show that there are decent people on Reddit, and upvotes are a great indicator
|
140
|
+
of that.</p>\\n\\n<p><strong>5.</strong> Please do
|
141
|
+
not link to a comment by an SRSer, a cursory glance at someone&#39;s posting
|
142
|
+
history to see if they post in any Fempire subreddits is all it should take
|
143
|
+
to determine this. Excellent posts by SRSers should go in [4] <a href=\\\"/r/SRSGreatestHits\\\">/r/SRSGreatestHits</a>.
|
144
|
+
Note that this includes no links to Fempire subreddits.</p>\\n\\n<p><strong>6.</strong>
|
145
|
+
Please do not link to threads you have some involvement in.</p>\\n</blockquote>\\n\\n<hr/>\\n\\n<p><a
|
146
|
+
href=\\\"http://www.reddit.com/r/goldredditsays/comments/uvklw/goldredditsays_new_community_guidelines_are_here/\\\">There
|
147
|
+
is a discussion on these rules, and a more in-depth explanation here.</a></p>\\n</div><!--
|
148
|
+
SC_ON -->\", \"title\": \"\\\"All the gold which is under or upon the earth
|
149
|
+
is not enough to give in exchange for virtue.\\\" -Plato\", \"over18\": false,
|
150
|
+
\"user_is_moderator\": null, \"header_title\": null, \"description\": \"###THE
|
151
|
+
SRS FEMPIRE\\n\\n. | .\\n:--|:--\\n[ShitRedditSays](/r/ShitRedditSays)|[SRSBeliefs](/r/SRSBeliefs)\\n[SRSBooks](/r/SRSBooks)|[SRSBusiness](/r/SRSBusiness)\\n[SRSCinema](/r/SRSCinema)|[SRSComics](/r/SRSComics)\\n[SRSDisabilities](/r/SRSDisabilities)|[SRSDiscussion](/r/SRSDiscussion)\\n[SRSFeminism](/r/SRSFeminism)|[SRSFoodies](/r/SRSFoodies)\\n[SRSFunny](/r/SRSFunny)|[SRSGaming](/r/SRSGaming)\\n[SRSGreatestHits](/r/SRSGreatestHits)|[SRSGSM](/r/SRSGSM)\\n[SRSHappy](/r/SRSHappy)|[SRSImages](/r/SRSImages)\\n[SRSMailbag](/r/SRSMailbag)|[SRSMen](/r/SRSMen)\\n[SRSMeta](/r/SRSMeta)|[SRSMusic](/r/SRSMusic)\\n[SRSMythos](/r/SRSMythos)|[SRSPoC](/r/SRSPoC)\\n[SRSPonies](/r/SRSPonies)|[SRSQuestions](/r/SRSQuestions)\\n[SRSRedditDrama](/r/SRSRedditDrama)|[SRSScience](/r/SRSScience)\\n[SRSSex](/r/SRSSex)|[SRSSkeptic](/r/SRSSkeptic)\\n[SRSTechnology](/r/SRSTechnology)|[SRSTelevision](/r/SRSTelevision)\\n[SRSTransSupport](/r/SRSTransSupport)|[SRSTrees](/r/SRSTrees)\\n[SRSWomen](/r/SRSWomen)|[SRSWorldProblems](/r/SRSWorldProblems)\\n[Daww](/r/Daww)|[GoldRedditSays](/r/GoldRedditSays)\\n[SocialJustice101](/r/SocialJustice101)|[Full
|
152
|
+
Directory](http://www.reddit.com/r/ShitRedditSays/wiki/directory)\\n\\n---\\n\\n#
|
153
|
+
Rules\\n\\n###### [](#h6-red)\\n\\n>**1.** Posts that are bigoted, creepy,
|
154
|
+
misogynistic, transphobic, unsettling, racist, homophobic, or just reeking
|
155
|
+
of unexamined, toxic privilege will probably result in a ban.\\n\\n>**2.**
|
156
|
+
Please include the vote count in brackets along with a quote as the title
|
157
|
+
of the gold you are submitting. A brief summary for context or for complex
|
158
|
+
posts is also acceptable.\\n\\n>**3.** Please link to an individual post
|
159
|
+
and refrain from liking to an entire submission. Please do not say \\\"this
|
160
|
+
whole thread,\\\" and instead find a good nugget of gold that you liked to
|
161
|
+
link to from the comments.\\n\\n>**4.** Please link only to upvoted posts.
|
162
|
+
We want to see people agreeing with gold, to show that there are decent people
|
163
|
+
on Reddit, and upvotes are a great indicator of that.\\n\\n\\n>**5.** Please
|
164
|
+
do not link to a comment by an SRSer, a cursory glance at someone's posting
|
165
|
+
history to see if they post in any Fempire subreddits is all it should take
|
166
|
+
to determine this. Excellent posts by SRSers should go in [4] /r/SRSGreatestHits.
|
167
|
+
Note that this includes no links to Fempire subreddits.\\n\\n>**6.** Please
|
168
|
+
do not link to threads you have some involvement in.\\n\\n---\\n\\n[There
|
169
|
+
is a discussion on these rules, and a more in-depth explanation here.](http://www.reddit.com/r/goldredditsays/comments/uvklw/goldredditsays_new_community_guidelines_are_here/)\",
|
170
|
+
\"submit_link_label\": null, \"accounts_active\": 14, \"spam_comments\": \"low\",
|
171
|
+
\"spam_links\": \"high\", \"header_size\": [121, 120], \"subscribers\": 6131,
|
172
|
+
\"submit_text_label\": null, \"name\": \"t5_2t72t\", \"created\": 1323352011.0,
|
173
|
+
\"url\": \"/r/goldredditsays/\", \"created_utc\": 1323348411.0, \"user_is_contributor\":
|
174
|
+
null, \"public_traffic\": false, \"public_description\": \"Welcome to GoldRedditSays!
|
175
|
+
GRS is the subreddit for gold miners to mine the comments posted on Reddit
|
176
|
+
and to find those really good comments that show goldlords on Reddit being
|
177
|
+
decent human beings.\", \"comment_score_hide_mins\": 0, \"subreddit_type\":
|
178
|
+
\"public\", \"submission_type\": \"any\", \"user_is_subscriber\": null}}"
|
179
|
+
http_version:
|
180
|
+
recorded_at: Sun, 10 Nov 2013 22:38:26 GMT
|
181
|
+
recorded_with: VCR 2.6.0
|
data/spec/cassettes/RedditKit_Client_Subreddits/_recommended_subreddits/returns_subreddit_names.yml
ADDED
@@ -0,0 +1,37 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: http://www.reddit.com/api/subreddit_recommendations.json?srnames=programming
|
6
|
+
body:
|
7
|
+
encoding: US-ASCII
|
8
|
+
string: ''
|
9
|
+
headers:
|
10
|
+
User-Agent:
|
11
|
+
- Faraday v0.8.8
|
12
|
+
Accept-Encoding:
|
13
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
14
|
+
Accept:
|
15
|
+
- "*/*"
|
16
|
+
response:
|
17
|
+
status:
|
18
|
+
code: 200
|
19
|
+
message: OK
|
20
|
+
headers:
|
21
|
+
Content-Type:
|
22
|
+
- application/json; charset=UTF-8
|
23
|
+
Content-Length:
|
24
|
+
- '108'
|
25
|
+
Server:
|
26
|
+
- "'; DROP TABLE servertypes; --"
|
27
|
+
Date:
|
28
|
+
- Sun, 10 Nov 2013 22:38:21 GMT
|
29
|
+
Connection:
|
30
|
+
- keep-alive
|
31
|
+
body:
|
32
|
+
encoding: UTF-8
|
33
|
+
string: "[{\"sr_name\": \"operabrowser\"}, {\"sr_name\": \"processing\"}, {\"sr_name\":
|
34
|
+
\"duckduckgo\"}, {\"sr_name\": \"thinkpad\"}]"
|
35
|
+
http_version:
|
36
|
+
recorded_at: Sun, 10 Nov 2013 22:38:20 GMT
|
37
|
+
recorded_with: VCR 2.6.0
|
@@ -0,0 +1,875 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: http://www.reddit.com/subreddits/search.json?q=ruby
|
6
|
+
body:
|
7
|
+
encoding: US-ASCII
|
8
|
+
string: ''
|
9
|
+
headers:
|
10
|
+
User-Agent:
|
11
|
+
- Faraday v0.8.8
|
12
|
+
Accept-Encoding:
|
13
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
14
|
+
Accept:
|
15
|
+
- "*/*"
|
16
|
+
response:
|
17
|
+
status:
|
18
|
+
code: 200
|
19
|
+
message: OK
|
20
|
+
headers:
|
21
|
+
Content-Type:
|
22
|
+
- application/json; charset=UTF-8
|
23
|
+
Server:
|
24
|
+
- "'; DROP TABLE servertypes; --"
|
25
|
+
Vary:
|
26
|
+
- accept-encoding
|
27
|
+
Date:
|
28
|
+
- Sun, 10 Nov 2013 22:38:23 GMT
|
29
|
+
Transfer-Encoding:
|
30
|
+
- chunked
|
31
|
+
Connection:
|
32
|
+
- Transfer-Encoding
|
33
|
+
- keep-alive
|
34
|
+
body:
|
35
|
+
encoding: UTF-8
|
36
|
+
string: "{\"kind\": \"Listing\", \"data\": {\"modhash\": \"\", \"children\":
|
37
|
+
[{\"kind\": \"t5\", \"data\": {\"submit_text_html\": null, \"user_is_banned\":
|
38
|
+
null, \"id\": \"2qh21\", \"submit_text\": \"\", \"spam_selfposts\": \"high\",
|
39
|
+
\"display_name\": \"ruby\", \"header_img\": \"http://thumbs.reddit.com/t5_2qh21.png?v=d4ae33f6d04df1caf7a3b126aabe9ae5\",
|
40
|
+
\"description_html\": \"<!-- SC_OFF --><div class=\\\"md\\\"><p><strong>A
|
41
|
+
reddit for discussion and news about ruby programming</strong></p>\\n\\n<p>Ruby-on-Rails
|
42
|
+
posts are encouraged to be posted in the <a href=\\\"http://reddit.com/r/rails\\\">r/rails</a>
|
43
|
+
subreddit</p>\\n\\n<p><strong>Learning Ruby?</strong></p>\\n\\n<ul>\\n<li><a
|
44
|
+
href=\\\"http://tryruby.org/\\\">Try Ruby</a> in your browser</li>\\n<li>Syntax,
|
45
|
+
structure, and some common functions and libraries try <a href=\\\"http://rubykoans.com/\\\">RubyKoans</a></li>\\n<li><a
|
46
|
+
href=\\\"http://hackety.com/\\\">Hackety Hack</a> a shoes app for
|
47
|
+
playing around with ruby</li>\\n</ul>\\n\\n<p><strong>Tools</strong></p>\\n\\n<ul>\\n<li><a
|
48
|
+
href=\\\"https://rvm.io/\\\">Ruby Version Manager (RVM)</a> easily
|
49
|
+
install, manage and work with multiple ruby environments from interpreters
|
50
|
+
to sets of gems</li>\\n<li>Manages an application&#39;s dependencies
|
51
|
+
<a href=\\\"http://gembundler.com\\\">Bundler</a></li>\\n<li>Looking
|
52
|
+
for new gems? <a href=\\\"http://ruby-toolbox.com/\\\">ruby-toolbox</a></li>\\n</ul>\\n\\n<p><strong>Got
|
53
|
+
Docs?</strong></p>\\n\\n<ul>\\n<li><a href=\\\"http://apidock.com/\\\">APIdock</a>
|
54
|
+
rich and usable interface for searching, perusing and improving the documentation</li>\\n<li><a
|
55
|
+
href=\\\"http://rdoc.info/gems\\\">rdoc</a> YARD Documentation Server</li>\\n<li><a
|
56
|
+
href=\\\"http://ruby-doc.org/\\\">Ruby Doc</a> complete and accurate
|
57
|
+
documentation for the Ruby programming language</li>\\n<li><a
|
58
|
+
href=\\\"https://www.relishapp.com/\\\">RelishApp</a> Browsable Cucumber
|
59
|
+
Features</li>\\n</ul>\\n\\n<p><strong>Books</strong></p>\\n\\n<ul>\\n<li><a
|
60
|
+
href=\\\"http://www.amazon.com/gp/product/1933988657/ref=as_li_qf_sp_asin_tl?ie=UTF8&amp;tag=redditrrubyco-20&amp;linkCode=as2&amp;camp=1789&amp;creative=9325&amp;creativeASIN=1933988657\\\">Well
|
61
|
+
Grounded Rubyist</a></li>\\n<li><a href=\\\"http://www.amazon.com/gp/product/0321584104/ref=as_li_tf_tl?ie=UTF8&amp;tag=redditrrubyco-20&amp;linkCode=as2&amp;camp=1789&amp;creative=9325&amp;creativeASIN=0321584104\\\">Eloquent
|
62
|
+
Ruby</a></li>\\n<li><a href=\\\"http://www.amazon.com/gp/product/1934356476/ref=as_li_tf_tl?ie=UTF8&amp;tag=redditrrubyco-20&amp;linkCode=as2&amp;camp=1789&amp;creative=9325&amp;creativeASIN=1934356476\\\">Metaprogramming
|
63
|
+
Ruby</a></li>\\n<li><a href=\\\"http://www.amazon.com/gp/product/1934356379/ref=as_li_tf_tl?ie=UTF8&amp;tag=redditrrubyco-20&amp;linkCode=as2&amp;camp=1789&amp;creative=9325&amp;creativeASIN=1934356379\\\">The
|
64
|
+
Rspec Book</a></li>\\n<li><a href=\\\"http://www.amazon.com/gp/product/1934356085/ref=as_li_tf_tl?ie=UTF8&amp;tag=redditrrubyco-20&amp;linkCode=as2&amp;camp=1789&amp;creative=9325&amp;creativeASIN=1934356085\\\">Programming
|
65
|
+
Ruby 1.9: The Pragmatic Programmers\\u2019 Guide</a></li>\\n<li><a
|
66
|
+
href=\\\"http://www.amazon.com/gp/product/0596516177/ref=as_li_tf_tl?ie=UTF8&amp;tag=redditrrubyco-20&amp;linkCode=as2&amp;camp=1789&amp;creative=9325&amp;creativeASIN=0596516177\\\">The
|
67
|
+
Ruby Programming Language</a></li>\\n</ul>\\n\\n<p><strong>Community</strong></p>\\n\\n<ul>\\n<li>Signup
|
68
|
+
for <a href=\\\"http://github.com/signup/free\\\">GitHub</a></li>\\n<li>Signup
|
69
|
+
for <a href=\\\"http://rubygems.org/sign_up\\\">RubyGems</a></li>\\n</ul>\\n\\n<p><strong>Screencasts
|
70
|
+
(Rails)</strong></p>\\n\\n<ul>\\n<li><a href=\\\"http://rubyonrails.org/screencasts/rails3\\\">Rails
|
71
|
+
Screencasts</a></li>\\n<li><a href=\\\"http://railscasts.com/\\\">RailsCasts</a></li>\\n<li><a
|
72
|
+
href=\\\"http://railsforzombies.org/\\\">Rails For Zombies!</a></li>\\n</ul>\\n</div><!--
|
73
|
+
SC_ON -->\", \"title\": \"reddit for rubyists\", \"over18\": false, \"user_is_moderator\":
|
74
|
+
null, \"header_title\": null, \"description\": \"**A reddit for discussion
|
75
|
+
and news about ruby programming**\\n\\nRuby-on-Rails posts are encouraged
|
76
|
+
to be posted in the [r/rails](http://reddit.com/r/rails) subreddit\\n\\n**Learning
|
77
|
+
Ruby?**\\n\\n* [Try Ruby](http://tryruby.org/) in your browser\\n* Syntax,
|
78
|
+
structure, and some common functions and libraries try [RubyKoans](http://rubykoans.com/)\\n*
|
79
|
+
[Hackety Hack](http://hackety.com/) a shoes app for playing around with ruby\\n\\n**Tools**\\n\\n*
|
80
|
+
[Ruby Version Manager (RVM)](https://rvm.io/) easily install, manage and work
|
81
|
+
with multiple ruby environments from interpreters to sets of gems\\n* Manages
|
82
|
+
an application's dependencies [Bundler](http://gembundler.com)\\n* Looking
|
83
|
+
for new gems? [ruby-toolbox](http://ruby-toolbox.com/)\\n\\n**Got Docs?**\\n\\n*
|
84
|
+
[APIdock](http://apidock.com/) rich and usable interface for searching, perusing
|
85
|
+
and improving the documentation\\n* [rdoc](http://rdoc.info/gems) YARD Documentation
|
86
|
+
Server\\n* [Ruby Doc](http://ruby-doc.org/) complete and accurate documentation
|
87
|
+
for the Ruby programming language\\n* [RelishApp](https://www.relishapp.com/)
|
88
|
+
Browsable Cucumber Features\\n\\n\\n**Books**\\n\\n* [Well Grounded Rubyist](http://www.amazon.com/gp/product/1933988657/ref=as_li_qf_sp_asin_tl?ie=UTF8&tag=redditrrubyco-20&linkCode=as2&camp=1789&creative=9325&creativeASIN=1933988657)\\n*
|
89
|
+
[Eloquent Ruby](http://www.amazon.com/gp/product/0321584104/ref=as_li_tf_tl?ie=UTF8&tag=redditrrubyco-20&linkCode=as2&camp=1789&creative=9325&creativeASIN=0321584104)\\n*
|
90
|
+
[Metaprogramming Ruby](http://www.amazon.com/gp/product/1934356476/ref=as_li_tf_tl?ie=UTF8&tag=redditrrubyco-20&linkCode=as2&camp=1789&creative=9325&creativeASIN=1934356476)\\n*
|
91
|
+
[The Rspec Book](http://www.amazon.com/gp/product/1934356379/ref=as_li_tf_tl?ie=UTF8&tag=redditrrubyco-20&linkCode=as2&camp=1789&creative=9325&creativeASIN=1934356379)\\n*
|
92
|
+
[Programming Ruby 1.9: The Pragmatic Programmers\\u2019 Guide](http://www.amazon.com/gp/product/1934356085/ref=as_li_tf_tl?ie=UTF8&tag=redditrrubyco-20&linkCode=as2&camp=1789&creative=9325&creativeASIN=1934356085)\\n*
|
93
|
+
[The Ruby Programming Language](http://www.amazon.com/gp/product/0596516177/ref=as_li_tf_tl?ie=UTF8&tag=redditrrubyco-20&linkCode=as2&camp=1789&creative=9325&creativeASIN=0596516177)\\n\\n**Community**\\n\\n*
|
94
|
+
Signup for [GitHub](http://github.com/signup/free)\\n* Signup for [RubyGems](http://rubygems.org/sign_up)\\n\\n**Screencasts
|
95
|
+
(Rails)**\\n\\n * [Rails Screencasts](http://rubyonrails.org/screencasts/rails3)\\n
|
96
|
+
* [RailsCasts](http://railscasts.com/)\\n * [Rails For Zombies!](http://railsforzombies.org/)\",
|
97
|
+
\"submit_link_label\": null, \"accounts_active\": null, \"spam_comments\":
|
98
|
+
\"low\", \"spam_links\": \"low\", \"header_size\": null, \"subscribers\":
|
99
|
+
19119, \"submit_text_label\": null, \"name\": \"t5_2qh21\", \"created\": 1201241221.0,
|
100
|
+
\"url\": \"/r/ruby/\", \"created_utc\": 1201237621.0, \"user_is_contributor\":
|
101
|
+
null, \"public_traffic\": false, \"public_description\": \"\", \"comment_score_hide_mins\":
|
102
|
+
0, \"subreddit_type\": \"public\", \"submission_type\": \"any\", \"user_is_subscriber\":
|
103
|
+
null}}, {\"kind\": \"t5\", \"data\": {\"submit_text_html\": null, \"user_is_banned\":
|
104
|
+
null, \"id\": \"2qhjn\", \"submit_text\": \"\", \"spam_selfposts\": \"high\",
|
105
|
+
\"display_name\": \"rails\", \"header_img\": \"http://thumbs.reddit.com/t5_2qhjn.png?v=f5bd2d9336b0cb11d2bba31573c2cac0\",
|
106
|
+
\"description_html\": \"<!-- SC_OFF --><div class=\\\"md\\\"><p><strong>A
|
107
|
+
subreddit for discussion and news about Ruby on Rails development</strong></p>\\n\\n<p>Posts
|
108
|
+
about the Ruby programming language are encouraged to be posted in the <a
|
109
|
+
href=\\\"/r/ruby\\\">/r/ruby</a> subreddit.</p>\\n\\n<p>Please
|
110
|
+
<a href=\\\"http://www.reddit.com/message/compose?to=%2Fr%2Frails\\\">message
|
111
|
+
the mods</a> if you would like to suggest changes to the sidebar.</p>\\n\\n<p><strong>Learning
|
112
|
+
Ruby?</strong></p>\\n\\n<ul>\\n<li><a href=\\\"http://tryruby.org/\\\">TryRuby</a>
|
113
|
+
in your browser</li>\\n<li>Try <a href=\\\"http://rubykoans.com/\\\">RubyKoans</a>
|
114
|
+
to learn more about syntax, structure, and common functions and libraries</li>\\n<li><a
|
115
|
+
href=\\\"http://hackety.com/\\\">Hackety Hack</a> is a shoes app
|
116
|
+
for playing around with ruby</li>\\n</ul>\\n\\n<p><strong>Learning
|
117
|
+
Rails?</strong></p>\\n\\n<ul>\\n<li><a href=\\\"http://ruby.railstutorial.org/ruby-on-rails-tutorial-book\\\">Learn
|
118
|
+
Web Development with Rails (Tutorial Book)</a></li>\\n<li><a
|
119
|
+
href=\\\"http://railsforzombies.org/\\\">Rails for Zombies</a></li>\\n<li><a
|
120
|
+
href=\\\"https://learn.thoughtbot.com/rails\\\">Thoughtbot - Learn Rails</a></li>\\n<li><a
|
121
|
+
href=\\\"http://www.codelearn.org\\\">Codelearn Rails Tutorials</a></li>\\n<li><a
|
122
|
+
href=\\\"http://railscasts.com/\\\">RailsCasts</a></li>\\n<li><a
|
123
|
+
href=\\\"http://rubyonrails.org/screencasts/rails3\\\">Ruby on Rails Screencasts</a></li>\\n<li><a
|
124
|
+
href=\\\"http://guides.rubyonrails.org/getting_started.html\\\">Ruby on
|
125
|
+
Rails Guides</a></li>\\n</ul>\\n\\n<p><strong>Tools</strong></p>\\n\\n<ul>\\n<li><a
|
126
|
+
href=\\\"https://rvm.io/\\\">Ruby Version Manager (RVM)</a>: easily
|
127
|
+
install, manage and work with multiple ruby environments from interpreters
|
128
|
+
to sets of gems</li>\\n<li><a href=\\\"http://gembundler.com/\\\">Bundler</a>:
|
129
|
+
Manages an application&#39;s dependencies</li>\\n<li><a
|
130
|
+
href=\\\"http://ruby-toolbox.com/\\\">ruby-toolbox</a>: Find and
|
131
|
+
compare gems</li>\\n</ul>\\n\\n<p><strong>Docs</strong></p>\\n\\n<ul>\\n<li><a
|
132
|
+
href=\\\"http://apidock.com/\\\">APIdock</a>: Rich and usable interface
|
133
|
+
for searching, perusing and improving the documentation</li>\\n<li><a
|
134
|
+
href=\\\"http://railsapi.com\\\">Rails API</a>: Searchable docs built
|
135
|
+
with the sdoc gem.</li>\\n<li><a href=\\\"http://rdoc.info/gems\\\">rdoc</a>:
|
136
|
+
YARD Documentation Server</li>\\n<li><a href=\\\"http://ruby-doc.org/\\\">Ruby
|
137
|
+
Doc</a>: Complete and accurate documentation for the Ruby programming
|
138
|
+
language</li>\\n<li><a href=\\\"https://www.relishapp.com/\\\">RelishApp</a>
|
139
|
+
Browsable Cucumber Features</li>\\n</ul>\\n\\n<p><strong>Community</strong></p>\\n\\n<ul>\\n<li>Signup
|
140
|
+
for <a href=\\\"http://github.com/signup/free\\\">Github</a></li>\\n<li>Signup
|
141
|
+
for <a href=\\\"http://rubygems.org/sign_up\\\">rubygems</a></li>\\n</ul>\\n\\n<p><strong>Rails
|
142
|
+
jobs</strong></p>\\n\\n<p>Looking for work, or need to hire
|
143
|
+
Rails developers?</p>\\n\\n<p>Try <a href=\\\"/r/railsjobs\\\">/r/railsjobs</a>,
|
144
|
+
<a href=\\\"/r/forhire\\\">/r/forhire</a>, or the following job
|
145
|
+
sites:</p>\\n\\n<ul>\\n<li><a href=\\\"http://jobs.37signals.com/\\\">jobs.37signals.com</a></li>\\n<li><a
|
146
|
+
href=\\\"https://jobs.github.com/\\\">jobs.github.com</a></li>\\n<li><a
|
147
|
+
href=\\\"http://careers.stackoverflow.com/jobs/tag/ruby-on-rails\\\">careers.stackoverflow.com</a></li>\\n<li><a
|
148
|
+
href=\\\"https://cooperpress.com/jobs\\\">Ruby Weekly Newsletter</a></li>\\n<li><a
|
149
|
+
href=\\\"http://www.rubyinside.com/post-a-job\\\">Ruby Inside</a></li>\\n<li><a
|
150
|
+
href=\\\"http://www.rorjobs.com/\\\">rorjobs.com</a></li>\\n<li><a
|
151
|
+
href=\\\"http://jobs.rubynow.com/\\\">jobs.rubynow.com</a></li>\\n<li><a
|
152
|
+
href=\\\"http://toprubyjobs.com/\\\">toprubyjobs.com</a></li>\\n</ul>\\n\\n<p><strong>About
|
153
|
+
the <a href=\\\"/r/rails\\\">/r/rails</a> moderators:</strong></p>\\n\\n<ul>\\n<li><a
|
154
|
+
href=\\\"/u/brendanlim\\\">/u/brendanlim</a> - Co-founder of <a
|
155
|
+
href=\\\"http://kicksend.com/\\\">Kicksend</a></li>\\n<li><a
|
156
|
+
href=\\\"/u/brentmc79\\\">/u/brentmc79</a> - Works on the <a href=\\\"http://twitter.com/safety\\\">Trust
|
157
|
+
&amp; Safety</a> team at <a href=\\\"http://twitter.com/\\\">Twitter</a></li>\\n<li><a
|
158
|
+
href=\\\"/u/adambair\\\">/u/adambair</a> - CTO of <a href=\\\"http://www.openbay.com\\\">openbay</a></li>\\n<li><a
|
159
|
+
href=\\\"/u/ndbroadbent\\\">/u/ndbroadbent</a> - Rails engineer at
|
160
|
+
<a href=\\\"https://zenpayroll.com/careers#position-ruby-on-rails-engineer\\\">ZenPayroll</a>
|
161
|
+
(<a href=\\\"https://zenpayroll.com/careers#position-ruby-on-rails-engineer\\\">We&#39;re
|
162
|
+
hiring!</a>)</li>\\n</ul>\\n</div><!-- SC_ON -->\",
|
163
|
+
\"title\": \"Reddit for Rails hackers\", \"over18\": false, \"user_is_moderator\":
|
164
|
+
null, \"header_title\": null, \"description\": \"**A subreddit for discussion
|
165
|
+
and news about Ruby on Rails development**\\n\\nPosts about the Ruby programming
|
166
|
+
language are encouraged to be posted in the /r/ruby subreddit.\\n\\nPlease
|
167
|
+
[message the mods](http://www.reddit.com/message/compose?to=%2Fr%2Frails)
|
168
|
+
if you would like to suggest changes to the sidebar.\\n\\n**Learning Ruby?**\\n\\n*
|
169
|
+
[TryRuby](http://tryruby.org/) in your browser\\n* Try [RubyKoans](http://rubykoans.com/)
|
170
|
+
to learn more about syntax, structure, and common functions and libraries\\n*
|
171
|
+
[Hackety Hack](http://hackety.com/) is a shoes app for playing around with
|
172
|
+
ruby\\n\\n**Learning Rails?**\\n\\n* [Learn Web Development with Rails (Tutorial
|
173
|
+
Book)](http://ruby.railstutorial.org/ruby-on-rails-tutorial-book)\\n* [Rails
|
174
|
+
for Zombies](http://railsforzombies.org/)\\n* [Thoughtbot - Learn Rails](https://learn.thoughtbot.com/rails)\\n*
|
175
|
+
[Codelearn Rails Tutorials](http://www.codelearn.org)\\n* [RailsCasts](http://railscasts.com/)\\n*
|
176
|
+
[Ruby on Rails Screencasts](http://rubyonrails.org/screencasts/rails3)\\n*
|
177
|
+
[Ruby on Rails Guides](http://guides.rubyonrails.org/getting_started.html)\\n\\n**Tools**\\n\\n*
|
178
|
+
[Ruby Version Manager (RVM)](https://rvm.io/): easily install, manage and
|
179
|
+
work with multiple ruby environments from interpreters to sets of gems\\n*
|
180
|
+
[Bundler](http://gembundler.com/): Manages an application's dependencies\\n*
|
181
|
+
[ruby-toolbox](http://ruby-toolbox.com/): Find and compare gems\\n\\n**Docs**\\n\\n*
|
182
|
+
[APIdock](http://apidock.com/): Rich and usable interface for searching, perusing
|
183
|
+
and improving the documentation\\n* [Rails API](http://railsapi.com): Searchable
|
184
|
+
docs built with the sdoc gem.\\n* [rdoc](http://rdoc.info/gems): YARD Documentation
|
185
|
+
Server\\n* [Ruby Doc](http://ruby-doc.org/): Complete and accurate documentation
|
186
|
+
for the Ruby programming language\\n* [RelishApp](https://www.relishapp.com/)
|
187
|
+
Browsable Cucumber Features\\n\\n**Community**\\n\\n* Signup for [Github](http://github.com/signup/free)\\n*
|
188
|
+
Signup for [rubygems](http://rubygems.org/sign_up)\\n\\n**Rails jobs**\\n\\nLooking
|
189
|
+
for work, or need to hire Rails developers?\\n\\nTry /r/railsjobs, /r/forhire,
|
190
|
+
or the following job sites:\\n\\n* [jobs.37signals.com](http://jobs.37signals.com/)\\n*
|
191
|
+
[jobs.github.com](https://jobs.github.com/)\\n* [careers.stackoverflow.com](http://careers.stackoverflow.com/jobs/tag/ruby-on-rails)\\n*
|
192
|
+
[Ruby Weekly Newsletter](https://cooperpress.com/jobs)\\n* [Ruby Inside](http://www.rubyinside.com/post-a-job)\\n*
|
193
|
+
[rorjobs.com](http://www.rorjobs.com/)\\n* [jobs.rubynow.com](http://jobs.rubynow.com/)\\n*
|
194
|
+
[toprubyjobs.com](http://toprubyjobs.com/)\\n\\n**About the /r/rails moderators:**\\n\\n*
|
195
|
+
/u/brendanlim - Co-founder of [Kicksend](http://kicksend.com/)\\n* /u/brentmc79
|
196
|
+
- Works on the [Trust & Safety](http://twitter.com/safety) team at [Twitter](http://twitter.com/)\\n*
|
197
|
+
/u/adambair - CTO of [openbay](http://www.openbay.com)\\n* /u/ndbroadbent
|
198
|
+
- Rails engineer at [ZenPayroll](https://zenpayroll.com/careers#position-ruby-on-rails-engineer)
|
199
|
+
([We're hiring!](https://zenpayroll.com/careers#position-ruby-on-rails-engineer))\",
|
200
|
+
\"submit_link_label\": null, \"accounts_active\": null, \"spam_comments\":
|
201
|
+
\"low\", \"spam_links\": \"high\", \"header_size\": null, \"subscribers\":
|
202
|
+
7942, \"submit_text_label\": null, \"name\": \"t5_2qhjn\", \"created\": 1205874858.0,
|
203
|
+
\"url\": \"/r/rails/\", \"created_utc\": 1205871258.0, \"user_is_contributor\":
|
204
|
+
null, \"public_traffic\": false, \"public_description\": \"A subreddit for
|
205
|
+
discussion and news about Ruby on Rails development\", \"comment_score_hide_mins\":
|
206
|
+
0, \"subreddit_type\": \"public\", \"submission_type\": \"any\", \"user_is_subscriber\":
|
207
|
+
null}}, {\"kind\": \"t5\", \"data\": {\"submit_text_html\": null, \"user_is_banned\":
|
208
|
+
null, \"id\": \"2rbfx\", \"submit_text\": \"\", \"spam_selfposts\": \"low\",
|
209
|
+
\"display_name\": \"rockhounds\", \"header_img\": \"http://c.thumbs.redditmedia.com/TVAr1x4uzPP-dZmJ.png\",
|
210
|
+
\"description_html\": \"<!-- SC_OFF --><div class=\\\"md\\\"><p>A
|
211
|
+
public subReddit for the discussion of rockhounding, rock collecting, crystals
|
212
|
+
and mineralogy, geology, lapidary arts and rocks in general. Topics include
|
213
|
+
outings and trips, polishing, tumbling, cabochons, slabs and specimens. Feel
|
214
|
+
free to ask a question or post a picture.</p>\\n\\n<p>No metaphysical
|
215
|
+
bullshit posts. Period.</p>\\n\\n<p>If you&#39;re posting
|
216
|
+
an ID request, please take clear, well-lit, up-close shots that will allow
|
217
|
+
for proper identification. Also provide any additional information that may
|
218
|
+
be pertinent such as where it was found, hardness, results of a streak test,
|
219
|
+
weight, etc.</p>\\n\\n<p>If you post photos that you didn&#39;t
|
220
|
+
take yourself, please credit the original photographer even if it means spending
|
221
|
+
a couple of minutes on <a href=\\\"http://www.google.com/imghp\\\">Google
|
222
|
+
Images</a> finding the original source.</p>\\n\\n<p>Found
|
223
|
+
a cool rock and you need help IDing it? No need. It&#39;s most definitely
|
224
|
+
<a href=\\\"http://blog.al.com/goforth/Iron-slag-Bibb-County-Glades-Alabama.jpg\\\">slag</a>.
|
225
|
+
/thread. </p>\\n\\n<p>Related Reddits: </p>\\n\\n<ul>\\n<li><p><a
|
226
|
+
href=\\\"http://www.reddit.com/r/geologycareers\\\">/r/geologycareers</a></p></li>\\n<li><p><a
|
227
|
+
href=\\\"http://www.reddit.com/r/geology\\\">/r/geology</a></p></li>\\n<li><p><a
|
228
|
+
href=\\\"http://www.reddit.com/r/whatsthisrock\\\">/r/whatsthisrock</a></p></li>\\n<li><p><a
|
229
|
+
href=\\\"http://www.reddit.com/r/prospecting\\\">/r/prospecting</a></p></li>\\n<li><p><a
|
230
|
+
href=\\\"http://www.reddit.com/r/mining\\\">/r/mining</a></p></li>\\n<li><p><a
|
231
|
+
href=\\\"http://www.reddit.com/r/jewelry\\\">/r/jewelry</a></p></li>\\n<li><p><a
|
232
|
+
href=\\\"http://www.reddit.com/r/jewelers\\\">/r/jewelers</a></p></li>\\n<li><p><a
|
233
|
+
href=\\\"http://www.reddit.com/r/fossilid\\\">/r/fossilid</a></p></li>\\n<li><p><a
|
234
|
+
href=\\\"http://www.reddit.com/r/rockhoundexchange\\\">/r/RockhoundExchange</a></p></li>\\n<li><p><a
|
235
|
+
href=\\\"http://www.reddit.com/r/askscience\\\">/r/askscience</a></p></li>\\n</ul>\\n\\n<p>If
|
236
|
+
you want to learn more about rock tumbling, check here at the <a href=\\\"http://andy321.proboards.com/index.cgi?\\\">Rock
|
237
|
+
Tumbling Hobby Forums.</a></p>\\n\\n<p>Created: Long ago.
|
238
|
+
Sputtered into life on 2-8-11. :D</p>\\n</div><!-- SC_ON -->\",
|
239
|
+
\"title\": \"reddit.com/r/rockhounds: Rockhounding, rock collecting, mineralogy,
|
240
|
+
lapidary arts and more\", \"over18\": false, \"user_is_moderator\": null,
|
241
|
+
\"header_title\": \"Keep on rockin', Reddit\", \"description\": \"A public
|
242
|
+
subReddit for the discussion of rockhounding, rock collecting, crystals and
|
243
|
+
mineralogy, geology, lapidary arts and rocks in general. Topics include outings
|
244
|
+
and trips, polishing, tumbling, cabochons, slabs and specimens. Feel free
|
245
|
+
to ask a question or post a picture.\\n\\nNo metaphysical bullshit posts.
|
246
|
+
Period.\\n\\nIf you're posting an ID request, please take clear, well-lit,
|
247
|
+
up-close shots that will allow for proper identification. Also provide any
|
248
|
+
additional information that may be pertinent such as where it was found, hardness,
|
249
|
+
results of a streak test, weight, etc.\\n\\nIf you post photos that you didn't
|
250
|
+
take yourself, please credit the original photographer even if it means spending
|
251
|
+
a couple of minutes on [Google Images](http://www.google.com/imghp) finding
|
252
|
+
the original source.\\n\\nFound a cool rock and you need help IDing it? No
|
253
|
+
need. It's most definitely [slag](http://blog.al.com/goforth/Iron-slag-Bibb-County-Glades-Alabama.jpg).
|
254
|
+
/thread. \\n\\nRelated Reddits: \\n\\n* [/r/geologycareers](http://www.reddit.com/r/geologycareers)\\n\\n*
|
255
|
+
[/r/geology](http://www.reddit.com/r/geology)\\n\\n* [/r/whatsthisrock](http://www.reddit.com/r/whatsthisrock)\\n\\n*
|
256
|
+
[/r/prospecting](http://www.reddit.com/r/prospecting)\\n\\n* [/r/mining](http://www.reddit.com/r/mining)\\n\\n*
|
257
|
+
[/r/jewelry](http://www.reddit.com/r/jewelry)\\n\\n* [/r/jewelers](http://www.reddit.com/r/jewelers)\\n\\n*
|
258
|
+
[/r/fossilid](http://www.reddit.com/r/fossilid)\\n\\n* [/r/RockhoundExchange](http://www.reddit.com/r/rockhoundexchange)\\n\\n*
|
259
|
+
[/r/askscience](http://www.reddit.com/r/askscience)\\n\\nIf you want to learn
|
260
|
+
more about rock tumbling, check here at the [Rock Tumbling Hobby Forums.](http://andy321.proboards.com/index.cgi?)\\n\\nCreated:
|
261
|
+
Long ago. Sputtered into life on 2-8-11. :D\", \"submit_link_label\": null,
|
262
|
+
\"accounts_active\": null, \"spam_comments\": \"low\", \"spam_links\": \"low\",
|
263
|
+
\"header_size\": [502, 102], \"subscribers\": 5021, \"submit_text_label\":
|
264
|
+
null, \"name\": \"t5_2rbfx\", \"created\": 1257041284.0, \"url\": \"/r/rockhounds/\",
|
265
|
+
\"created_utc\": 1257037684.0, \"user_is_contributor\": null, \"public_traffic\":
|
266
|
+
false, \"public_description\": \"This is the Reddit place to go when rocks
|
267
|
+
are in your head -\\n\\nbe they agate, ruby, aquamarine or even a thunderegg
|
268
|
+
bed.\\n\\nPost pics and ask some questions if you want to pick our minds -\\n\\nor
|
269
|
+
display for all to see with pics your best and brightest finds!\", \"comment_score_hide_mins\":
|
270
|
+
0, \"subreddit_type\": \"public\", \"submission_type\": \"any\", \"user_is_subscriber\":
|
271
|
+
null}}, {\"kind\": \"t5\", \"data\": {\"submit_text_html\": null, \"user_is_banned\":
|
272
|
+
null, \"id\": \"2xj66\", \"submit_text\": \"\", \"spam_selfposts\": \"high\",
|
273
|
+
\"display_name\": \"squirreltactics\", \"header_img\": null, \"description_html\":
|
274
|
+
null, \"title\": \"When you absolutely have to know if it's Jack Ruby's hat\",
|
275
|
+
\"over18\": false, \"user_is_moderator\": null, \"header_title\": null, \"description\":
|
276
|
+
\"\", \"submit_link_label\": null, \"accounts_active\": null, \"spam_comments\":
|
277
|
+
\"low\", \"spam_links\": \"high\", \"header_size\": null, \"subscribers\":
|
278
|
+
14, \"submit_text_label\": null, \"name\": \"t5_2xj66\", \"created\": 1371002736.0,
|
279
|
+
\"url\": \"/r/squirreltactics/\", \"created_utc\": 1370999136.0, \"user_is_contributor\":
|
280
|
+
null, \"public_traffic\": false, \"public_description\": \"All things tactically
|
281
|
+
squirrel. Also, squirrely tactics. \", \"comment_score_hide_mins\": 0, \"subreddit_type\":
|
282
|
+
\"public\", \"submission_type\": \"any\", \"user_is_subscriber\": null}},
|
283
|
+
{\"kind\": \"t5\", \"data\": {\"submit_text_html\": null, \"user_is_banned\":
|
284
|
+
null, \"id\": \"2sdpq\", \"submit_text\": \"\", \"spam_selfposts\": \"high\",
|
285
|
+
\"display_name\": \"LearnRubyonRails\", \"header_img\": \"http://thumbs.reddit.com/t5_2sdpq.png?v=b85ad9a34c2ac221cb7dbc0c5f0fab95\",
|
286
|
+
\"description_html\": \"<!-- SC_OFF --><div class=\\\"md\\\"><p><strong>A
|
287
|
+
reddit to start your Ruby on Rails path</strong></p>\\n\\n<ul>\\n<li>Before
|
288
|
+
RoR remember to start with <a href=\\\"http://www.reddit.com/r/learnruby\\\">Ruby</a></li>\\n</ul>\\n\\n<p><strong>Open
|
289
|
+
positions for moderators!</strong></p>\\n</div><!-- SC_ON
|
290
|
+
-->\", \"title\": \"Learn Ruby on Rails\", \"over18\": false, \"user_is_moderator\":
|
291
|
+
null, \"header_title\": null, \"description\": \"**A reddit to start your
|
292
|
+
Ruby on Rails path**\\n\\n* Before RoR remember to start with [Ruby](http://www.reddit.com/r/learnruby)\\n\\n**Open
|
293
|
+
positions for moderators!**\", \"submit_link_label\": \"\", \"accounts_active\":
|
294
|
+
null, \"spam_comments\": \"low\", \"spam_links\": \"high\", \"header_size\":
|
295
|
+
null, \"subscribers\": 286, \"submit_text_label\": \"\", \"name\": \"t5_2sdpq\",
|
296
|
+
\"created\": 1300508154.0, \"url\": \"/r/LearnRubyonRails/\", \"created_utc\":
|
297
|
+
1300504554.0, \"user_is_contributor\": null, \"public_traffic\": false, \"public_description\":
|
298
|
+
\"\", \"comment_score_hide_mins\": 0, \"subreddit_type\": \"public\", \"submission_type\":
|
299
|
+
\"any\", \"user_is_subscriber\": null}}, {\"kind\": \"t5\", \"data\": {\"submit_text_html\":
|
300
|
+
null, \"user_is_banned\": null, \"id\": \"2qi04\", \"submit_text\": \"\",
|
301
|
+
\"spam_selfposts\": \"low\", \"display_name\": \"rubyonrails\", \"header_img\":
|
302
|
+
null, \"description_html\": \"<!-- SC_OFF --><div class=\\\"md\\\"><p><strong>A
|
303
|
+
subreddit for discussion and news about Ruby on Rails development</strong></p>\\n\\n<hr/>\\n\\n<p>Also
|
304
|
+
check out; </p>\\n\\n<p><a href=\\\"http://www.reddit.com/r/learnrubyonrails\\\">http://www.reddit.com/r/learnrubyonrails</a>\\n<a
|
305
|
+
href=\\\"http://www.reddit.com/r/rails\\\">http://www.reddit.com/r/rails</a></p>\\n</div><!--
|
306
|
+
SC_ON -->\", \"title\": \"Ruby on Rails\", \"over18\": false, \"user_is_moderator\":
|
307
|
+
null, \"header_title\": null, \"description\": \"**A subreddit for discussion
|
308
|
+
and news about Ruby on Rails development**\\n\\n----\\n \\nAlso check out;
|
309
|
+
\\n \\nhttp://www.reddit.com/r/learnrubyonrails\\nhttp://www.reddit.com/r/rails\",
|
310
|
+
\"submit_link_label\": null, \"accounts_active\": null, \"spam_comments\":
|
311
|
+
\"low\", \"spam_links\": \"high\", \"header_size\": null, \"subscribers\":
|
312
|
+
2669, \"submit_text_label\": null, \"name\": \"t5_2qi04\", \"created\": 1211182038.0,
|
313
|
+
\"url\": \"/r/rubyonrails/\", \"created_utc\": 1211178438.0, \"user_is_contributor\":
|
314
|
+
null, \"public_traffic\": false, \"public_description\": \"Everything RoR!
|
315
|
+
\ \\n \\nRuby on Rails, often simply Rails, is an open source web application
|
316
|
+
framework which runs on the Ruby programming language.\", \"comment_score_hide_mins\":
|
317
|
+
0, \"subreddit_type\": \"public\", \"submission_type\": \"any\", \"user_is_subscriber\":
|
318
|
+
null}}, {\"kind\": \"t5\", \"data\": {\"submit_text_html\": null, \"user_is_banned\":
|
319
|
+
null, \"id\": \"2w525\", \"submit_text\": \"\", \"spam_selfposts\": \"high\",
|
320
|
+
\"display_name\": \"TheAldmeriDominion\", \"header_img\": \"http://b.thumbs.redditmedia.com/dUAmFTJCYIGwVEAa.png\",
|
321
|
+
\"description_html\": \"<!-- SC_OFF --><div class=\\\"md\\\"><p><strong>Commands
|
322
|
+
from Queen Ayrenn:</strong></p>\\n\\n<p>I have no hatred
|
323
|
+
for the races of Man, but they are young. Like all children, they are driven
|
324
|
+
by emotion. They lack the wisdom that comes with age. I would sooner place
|
325
|
+
an Altmer infant on the Ruby Throne than surrender Tamriel to their capricious
|
326
|
+
whims.</p>\\n\\n<p>The Altmer, the Bosmer, and the Khajiit share
|
327
|
+
the common traits of intelligence, patience and reason. We do not seek riches
|
328
|
+
or plunder. Domination is not our goal nor is the acclamation of power for
|
329
|
+
its own sake.</p>\\n\\n<p>Today we make our stand. Today we take
|
330
|
+
back the Ruby Throne, which is ours by ancient right and the blessing of the
|
331
|
+
Divines.</p>\\n\\n<p>Stand with us.</p>\\n\\n<hr/>\\n\\n<p><strong>Other
|
332
|
+
Subreddits:</strong></p>\\n\\n<ul>\\n<li><a href=\\\"http://www.reddit.com/r/elderscrollsonline/\\\">r/elderscrollsonline</a></li>\\n<li><a
|
333
|
+
href=\\\"http://www.reddit.com/r/thedaggerfallcovenant\\\">r/TheDaggerfallCovenant</a></li>\\n<li><a
|
334
|
+
href=\\\"http://www.reddit.com/r/TheEbonheartPact/\\\">r/TheEbonheartPact</a></li>\\n<li><a
|
335
|
+
href=\\\"http://www.reddit.com/r/elderscrolls\\\">r/elderscrolls</a></li>\\n<li><a
|
336
|
+
href=\\\"http://www.reddit.com/r/Skyrim\\\">r/skyrim</a></li>\\n<li><a
|
337
|
+
href=\\\"http://www.reddit.com/r/oblivion\\\">r/oblivion</a></li>\\n<li><a
|
338
|
+
href=\\\"http://www.reddit.com/r/morrowind\\\">r/morrowind</a></li>\\n<li><a
|
339
|
+
href=\\\"http://www.reddit.com/r/teslore\\\">r/teslore</a></li>\\n<li><a
|
340
|
+
href=\\\"http://www.reddit.com/r/Khajiits\\\">r/Khajiits</a></li>\\n</ul>\\n</div><!--
|
341
|
+
SC_ON -->\", \"title\": \"Elder Scrolls Online: Aldmeri Dominion faction\",
|
342
|
+
\"over18\": false, \"user_is_moderator\": null, \"header_title\": \"For Queen
|
343
|
+
Ayrenn we FIGHT!\", \"description\": \"**Commands from Queen Ayrenn:**\\n\\nI
|
344
|
+
have no hatred for the races of Man, but they are young. Like all children,
|
345
|
+
they are driven by emotion. They lack the wisdom that comes with age. I would
|
346
|
+
sooner place an Altmer infant on the Ruby Throne than surrender Tamriel to
|
347
|
+
their capricious whims.\\n\\nThe Altmer, the Bosmer, and the Khajiit share
|
348
|
+
the common traits of intelligence, patience and reason. We do not seek riches
|
349
|
+
or plunder. Domination is not our goal nor is the acclamation of power for
|
350
|
+
its own sake.\\n\\nToday we make our stand. Today we take back the Ruby Throne,
|
351
|
+
which is ours by ancient right and the blessing of the Divines.\\n\\nStand
|
352
|
+
with us.\\n\\n-------------------------------------------------------------------\\n**Other
|
353
|
+
Subreddits:**\\n\\n* [r/elderscrollsonline](http://www.reddit.com/r/elderscrollsonline/)\\n*
|
354
|
+
[r/TheDaggerfallCovenant](http://www.reddit.com/r/thedaggerfallcovenant)\\n*
|
355
|
+
[r/TheEbonheartPact](http://www.reddit.com/r/TheEbonheartPact/)\\n* [r/elderscrolls](http://www.reddit.com/r/elderscrolls)\\n*
|
356
|
+
[r/skyrim](http://www.reddit.com/r/Skyrim)\\n* [r/oblivion](http://www.reddit.com/r/oblivion)\\n*
|
357
|
+
[r/morrowind](http://www.reddit.com/r/morrowind)\\n* [r/teslore](http://www.reddit.com/r/teslore)\\n*
|
358
|
+
[r/Khajiits](http://www.reddit.com/r/Khajiits)\", \"submit_link_label\": \"\",
|
359
|
+
\"accounts_active\": null, \"spam_comments\": \"low\", \"spam_links\": \"high\",
|
360
|
+
\"header_size\": [785, 170], \"subscribers\": 160, \"submit_text_label\":
|
361
|
+
\"\", \"name\": \"t5_2w525\", \"created\": 1358992422.0, \"url\": \"/r/TheAldmeriDominion/\",
|
362
|
+
\"created_utc\": 1358988822.0, \"user_is_contributor\": null, \"public_traffic\":
|
363
|
+
false, \"public_description\": \"Here we join together as the Aldmeri Dominion
|
364
|
+
to quest, raid, and repel the enemy factions. We shall restore order to Tamriel
|
365
|
+
and therefore take back the ruby throne for our own. The land we founded has
|
366
|
+
been tainted by the races of Man, but no longer will we stand for their insolence.
|
367
|
+
We will display our dominance to all who oppose the Queen! \", \"comment_score_hide_mins\":
|
368
|
+
0, \"subreddit_type\": \"public\", \"submission_type\": \"any\", \"user_is_subscriber\":
|
369
|
+
null}}, {\"kind\": \"t5\", \"data\": {\"submit_text_html\": null, \"user_is_banned\":
|
370
|
+
null, \"id\": \"2qjwh\", \"submit_text\": \"\", \"spam_selfposts\": \"high\",
|
371
|
+
\"display_name\": \"enterprise\", \"header_img\": null, \"description_html\":
|
372
|
+
\"<!-- SC_OFF --><div class=\\\"md\\\"><p>A community where
|
373
|
+
crappy programmers can talk about crappy code without fear of being exposed
|
374
|
+
to new programming paradigms and concepts. Bring along your XML configuration
|
375
|
+
files, open classes, interpreters, reference-counting, and crappy code. Leave
|
376
|
+
your brain at the door.</p>\\n</div><!-- SC_ON -->\", \"title\":
|
377
|
+
\"Mediocre programmers unite! Python, Ruby, Java FTW!\", \"over18\": false,
|
378
|
+
\"user_is_moderator\": null, \"header_title\": \"\", \"description\": \"A
|
379
|
+
community where crappy programmers can talk about crappy code without fear
|
380
|
+
of being exposed to new programming paradigms and concepts. Bring along your
|
381
|
+
XML configuration files, open classes, interpreters, reference-counting, and
|
382
|
+
crappy code. Leave your brain at the door.\", \"submit_link_label\": \"\",
|
383
|
+
\"accounts_active\": null, \"spam_comments\": \"low\", \"spam_links\": \"high\",
|
384
|
+
\"header_size\": null, \"subscribers\": 308, \"submit_text_label\": \"\",
|
385
|
+
\"name\": \"t5_2qjwh\", \"created\": 1215678521.0, \"url\": \"/r/enterprise/\",
|
386
|
+
\"created_utc\": 1215674921.0, \"user_is_contributor\": null, \"public_traffic\":
|
387
|
+
false, \"public_description\": \"\", \"comment_score_hide_mins\": 0, \"subreddit_type\":
|
388
|
+
\"public\", \"submission_type\": \"any\", \"user_is_subscriber\": null}},
|
389
|
+
{\"kind\": \"t5\", \"data\": {\"submit_text_html\": null, \"user_is_banned\":
|
390
|
+
null, \"id\": \"2xtuf\", \"submit_text\": \"\", \"spam_selfposts\": \"high\",
|
391
|
+
\"display_name\": \"remakehoenn\", \"header_img\": null, \"description_html\":
|
392
|
+
null, \"title\": \"Talk and discussion about Pokemon generation 3 remakes!\",
|
393
|
+
\"over18\": false, \"user_is_moderator\": null, \"header_title\": null, \"description\":
|
394
|
+
\"\", \"submit_link_label\": null, \"accounts_active\": null, \"spam_comments\":
|
395
|
+
\"low\", \"spam_links\": \"high\", \"header_size\": null, \"subscribers\":
|
396
|
+
61, \"submit_text_label\": null, \"name\": \"t5_2xtuf\", \"created\": 1373491650.0,
|
397
|
+
\"url\": \"/r/remakehoenn/\", \"created_utc\": 1373488050.0, \"user_is_contributor\":
|
398
|
+
null, \"public_traffic\": false, \"public_description\": \"This subreddit
|
399
|
+
is a place to discuss and to bring together everyone who started and grew
|
400
|
+
up playing either Ruby, Sapphire, or Emerald versions! It is also a way to
|
401
|
+
possibly get GameFreak to make these either a Ruby and Sapphire remake, an
|
402
|
+
Emerald remake, or to simply just bring back the Hoenn region to 3DS.\", \"comment_score_hide_mins\":
|
403
|
+
0, \"subreddit_type\": \"public\", \"submission_type\": \"any\", \"user_is_subscriber\":
|
404
|
+
null}}, {\"kind\": \"t5\", \"data\": {\"submit_text_html\": null, \"user_is_banned\":
|
405
|
+
null, \"id\": \"2umhd\", \"submit_text\": \"\", \"spam_selfposts\": \"high\",
|
406
|
+
\"display_name\": \"osxterminal\", \"header_img\": \"http://c.thumbs.redditmedia.com/4NCUM1GyO94YHY98.png\",
|
407
|
+
\"description_html\": \"<!-- SC_OFF --><div class=\\\"md\\\"><p>Everyone
|
408
|
+
is welcome to post their ideas, requests and questions.</p>\\n\\n<p><strong>The
|
409
|
+
spam filter seems to be very hateful to nearly everyone. I end up having
|
410
|
+
to approve most posts. If your post doesn&#39;t show up right away, that&#39;s
|
411
|
+
probably why &amp; I promise to check the filter daily --danielcole</strong></p>\\n\\n<p>While
|
412
|
+
we would like to keep things terminal-based, don&#39;t think that limits
|
413
|
+
the discussion here strictly to bash. Anything that involves scripting the
|
414
|
+
Apple environment is welcome - that certainly includes AppleScript &amp;
|
415
|
+
large parts of ruby/python/perl.</p>\\n\\n<p>We hope that you
|
416
|
+
feel free to share the scripts that you use on a daily basis so that others
|
417
|
+
can discover new ways of controlling their computers. We also now have a
|
418
|
+
fairly large pool of people that can be a resource for questions on how particular
|
419
|
+
commands operate.</p>\\n\\n<p>Mods kripley1 &amp; myself have
|
420
|
+
written up a few introductory posts: &quot;<a href=\\\"http://www.reddit.com/r/osxterminal/comments/xqlbo/getting_started_with_os_x_terminal/\\\">Getting
|
421
|
+
Started With Terminal</a>\\n&quot; and a <a href=\\\"http://www.reddit.com/r/osxterminal/comments/y1xkm/ssh_scp_and_passwordless_ssh_logins_all_with/\\\">primer
|
422
|
+
on SSH</a>.</p>\\n\\n<p>When the Gods of Reddit deem the
|
423
|
+
time ripe and proper we will have a wiki that consolidates much of the tip
|
424
|
+
and tricks that are posted here so that we can have a coherent knowledge base.</p>\\n\\n<p>---
|
425
|
+
Links ---</p>\\n\\n<p><a href=\\\"https://developer.apple.com/library/mac/#documentation/Darwin/Reference/ManPages/index.html\\\">OSX
|
426
|
+
Online Man Pages</a></p>\\n\\n<p><a href=\\\"http://www.reddit.com/r/osxterminal/comments/xqlbo/getting_started_with_os_x_terminal/\\\">Getting
|
427
|
+
Started With Terminal</a></p>\\n\\n<p><a href=\\\"http://www.reddit.com/r/osxterminal/comments/y1xkm/ssh_scp_and_passwordless_ssh_logins_all_with/\\\">Primer
|
428
|
+
on SSH &amp; SCP</a></p>\\n\\n<p>--- More Links! ---</p>\\n\\n<p><a
|
429
|
+
href=\\\"/r/GeekTool\\\">/r/GeekTool</a></p>\\n\\n<p><a
|
430
|
+
href=\\\"/r/Apple\\\">/r/Apple</a></p>\\n\\n<p><a
|
431
|
+
href=\\\"/r/Commandline\\\">/r/Commandline</a></p>\\n\\n<p><a
|
432
|
+
href=\\\"/r/HueLights\\\">/r/HueLights</a> (new!)</p>\\n</div><!--
|
433
|
+
SC_ON -->\", \"title\": \"Tips for using terminal.app in OS X\", \"over18\":
|
434
|
+
false, \"user_is_moderator\": null, \"header_title\": null, \"description\":
|
435
|
+
\"Everyone is welcome to post their ideas, requests and questions.\\n\\n**The
|
436
|
+
spam filter seems to be very hateful to nearly everyone. I end up having
|
437
|
+
to approve most posts. If your post doesn't show up right away, that's probably
|
438
|
+
why & I promise to check the filter daily --danielcole**\\n\\nWhile we
|
439
|
+
would like to keep things terminal-based, don't think that limits the discussion
|
440
|
+
here strictly to bash. Anything that involves scripting the Apple environment
|
441
|
+
is welcome - that certainly includes AppleScript & large parts of ruby/python/perl.\\n\\nWe
|
442
|
+
hope that you feel free to share the scripts that you use on a daily basis
|
443
|
+
so that others can discover new ways of controlling their computers. We also
|
444
|
+
now have a fairly large pool of people that can be a resource for questions
|
445
|
+
on how particular commands operate.\\n\\nMods kripley1 & myself have written
|
446
|
+
up a few introductory posts: \\\"[Getting Started With Terminal](http://www.reddit.com/r/osxterminal/comments/xqlbo/getting_started_with_os_x_terminal/)\\n\\\"
|
447
|
+
and a [primer on SSH](http://www.reddit.com/r/osxterminal/comments/y1xkm/ssh_scp_and_passwordless_ssh_logins_all_with/).\\n\\nWhen
|
448
|
+
the Gods of Reddit deem the time ripe and proper we will have a wiki that
|
449
|
+
consolidates much of the tip and tricks that are posted here so that we can
|
450
|
+
have a coherent knowledge base.\\n\\n--- Links ---\\n\\n[OSX Online Man Pages](https://developer.apple.com/library/mac/#documentation/Darwin/Reference/ManPages/index.html)\\n\\n[Getting
|
451
|
+
Started With Terminal](http://www.reddit.com/r/osxterminal/comments/xqlbo/getting_started_with_os_x_terminal/)\\n\\n[Primer
|
452
|
+
on SSH & SCP](http://www.reddit.com/r/osxterminal/comments/y1xkm/ssh_scp_and_passwordless_ssh_logins_all_with/)\\n\\n---
|
453
|
+
More Links! ---\\n\\n/r/GeekTool\\n\\n/r/Apple\\n\\n/r/Commandline\\n\\n/r/HueLights
|
454
|
+
(new!)\", \"submit_link_label\": \"\", \"accounts_active\": null, \"spam_comments\":
|
455
|
+
\"low\", \"spam_links\": \"high\", \"header_size\": [81, 72], \"subscribers\":
|
456
|
+
762, \"submit_text_label\": \"\", \"name\": \"t5_2umhd\", \"created\": 1343507352.0,
|
457
|
+
\"url\": \"/r/osxterminal/\", \"created_utc\": 1343503752.0, \"user_is_contributor\":
|
458
|
+
null, \"public_traffic\": false, \"public_description\": \"While we would
|
459
|
+
like to keep things terminal-based, don't think that limits the discussion
|
460
|
+
here strictly to bash. Anything that involves scripting the Apple environment
|
461
|
+
is welcome - that certainly includes AppleScript & large parts of ruby/python/perl.\\n\",
|
462
|
+
\"comment_score_hide_mins\": 0, \"subreddit_type\": \"public\", \"submission_type\":
|
463
|
+
\"any\", \"user_is_subscriber\": null}}, {\"kind\": \"t5\", \"data\": {\"submit_text_html\":
|
464
|
+
null, \"user_is_banned\": null, \"id\": \"2sdpo\", \"submit_text\": \"\",
|
465
|
+
\"spam_selfposts\": \"high\", \"display_name\": \"learnruby\", \"header_img\":
|
466
|
+
\"http://thumbs.reddit.com/t5_2sdpo.png?v=cd498861047b2e98996c2d64e80c0372\",
|
467
|
+
\"description_html\": \"<!-- SC_OFF --><div class=\\\"md\\\"><h2><strong>A
|
468
|
+
subreddit for learning Ruby</strong></h2>\\n\\n<hr/>\\n\\n<p>Total
|
469
|
+
beginner and don&#39;t know where to start?</p>\\n\\n<ul>\\n<li><a
|
470
|
+
href=\\\"http://pine.fm/LearnToProgram/?Chapter=00\\\">0. Getting Started</a></li>\\n<li><a
|
471
|
+
href=\\\"http://ruby.learncodethehardway.org/book/\\\">LRtHW</a></li>\\n<li><a
|
472
|
+
href=\\\"http://mislav.uniqpath.com/poignant-guide/\\\">why&#39;s (poignant)
|
473
|
+
guide</a></li>\\n</ul>\\n\\n<p>Quickly need an answer
|
474
|
+
to a specific question?</p>\\n\\n<ul>\\n<li><a href=\\\"http://stackoverflow.com/\\\">http://stackoverflow.com/</a></li>\\n</ul>\\n\\n<p>Already
|
475
|
+
a Ruby hacker? </p>\\n\\n<ul>\\n<li>Try the <a href=\\\"http://www.reddit.com/r/ruby\\\">Ruby
|
476
|
+
subreddit!</a></li>\\n</ul>\\n\\n<p>Want to learn
|
477
|
+
Ruby on Rails?</p>\\n\\n<ul>\\n<li>Try the <a href=\\\"http://www.reddit.com/r/learnrubyonrails\\\">Learn
|
478
|
+
Ruby on Rails subreddit!</a></li>\\n</ul>\\n\\n<h2><strong>Open
|
479
|
+
positions for moderators!</strong></h2>\\n\\n<hr/>\\n</div><!--
|
480
|
+
SC_ON -->\", \"title\": \"Learn Ruby\", \"over18\": false, \"user_is_moderator\":
|
481
|
+
null, \"header_title\": null, \"description\": \"**A subreddit for learning
|
482
|
+
Ruby**\\n---------\\n---------\\n\\nTotal beginner and don't know where to
|
483
|
+
start?\\n\\n* [0. Getting Started](http://pine.fm/LearnToProgram/?Chapter=00)\\n*
|
484
|
+
[LRtHW](http://ruby.learncodethehardway.org/book/)\\n* [why's (poignant) guide](http://mislav.uniqpath.com/poignant-guide/)\\n\\nQuickly
|
485
|
+
need an answer to a specific question?\\n\\n* http://stackoverflow.com/\\n\\nAlready
|
486
|
+
a Ruby hacker? \\n\\n* Try the [Ruby subreddit!](http://www.reddit.com/r/ruby)\\n\\nWant
|
487
|
+
to learn Ruby on Rails?\\n\\n* Try the [Learn Ruby on Rails subreddit!](http://www.reddit.com/r/learnrubyonrails)\\n\\n**Open
|
488
|
+
positions for moderators!**\\n------\\n--------\", \"submit_link_label\":
|
489
|
+
\"\", \"accounts_active\": null, \"spam_comments\": \"low\", \"spam_links\":
|
490
|
+
\"high\", \"header_size\": null, \"subscribers\": 622, \"submit_text_label\":
|
491
|
+
\"\", \"name\": \"t5_2sdpo\", \"created\": 1300506813.0, \"url\": \"/r/learnruby/\",
|
492
|
+
\"created_utc\": 1300503213.0, \"user_is_contributor\": null, \"public_traffic\":
|
493
|
+
false, \"public_description\": \"\", \"comment_score_hide_mins\": 0, \"subreddit_type\":
|
494
|
+
\"public\", \"submission_type\": \"any\", \"user_is_subscriber\": null}},
|
495
|
+
{\"kind\": \"t5\", \"data\": {\"submit_text_html\": null, \"user_is_banned\":
|
496
|
+
null, \"id\": \"2v5lo\", \"submit_text\": \"\", \"spam_selfposts\": \"high\",
|
497
|
+
\"display_name\": \"gamegenome\", \"header_img\": null, \"description_html\":
|
498
|
+
\"<!-- SC_OFF --><div class=\\\"md\\\"><p>More info coming
|
499
|
+
soon.</p>\\n</div><!-- SC_ON -->\", \"title\": \"The Game
|
500
|
+
Genome Project\", \"over18\": false, \"user_is_moderator\": null, \"header_title\":
|
501
|
+
null, \"description\": \"More info coming soon.\", \"submit_link_label\":
|
502
|
+
\"\", \"accounts_active\": null, \"spam_comments\": \"low\", \"spam_links\":
|
503
|
+
\"high\", \"header_size\": null, \"subscribers\": 49, \"submit_text_label\":
|
504
|
+
\"\", \"name\": \"t5_2v5lo\", \"created\": 1348856938.0, \"url\": \"/r/gamegenome/\",
|
505
|
+
\"created_utc\": 1348853338.0, \"user_is_contributor\": null, \"public_traffic\":
|
506
|
+
false, \"public_description\": \"The Game Genome Project is a website that
|
507
|
+
will collect data about video games, allowing for that data to be accessed
|
508
|
+
by third party applications. The project will be used as a learning opportunity
|
509
|
+
for those who have never touched web development before with diary posts about
|
510
|
+
how each component works from HTML and CSS to Ruby on Rails and Batman.js\",
|
511
|
+
\"comment_score_hide_mins\": 0, \"subreddit_type\": \"public\", \"submission_type\":
|
512
|
+
\"any\", \"user_is_subscriber\": null}}, {\"kind\": \"t5\", \"data\": {\"submit_text_html\":
|
513
|
+
null, \"user_is_banned\": null, \"id\": \"2y2th\", \"submit_text\": \"\",
|
514
|
+
\"spam_selfposts\": \"high\", \"display_name\": \"ClubRuby\", \"header_img\":
|
515
|
+
null, \"description_html\": \"<!-- SC_OFF --><div class=\\\"md\\\"><p>Please
|
516
|
+
respect the mods at all times, We&#39;re here to help you and the rest
|
517
|
+
of the subreddit, if you&#39;re being harassed in anyway please report
|
518
|
+
it to us. Remember to put spoiler tags on anything that could potentially
|
519
|
+
spoil the show for your fellow members. Posts without the spoiler tag will
|
520
|
+
be immediately removed and you&#39;ll be asked to resubmit your post.
|
521
|
+
NSFW is allowed but is frowned upon, no reposting such content, if people
|
522
|
+
want to see it they&#39;ll have to type in the [NSFW] tag that must be
|
523
|
+
put in each NSFW post into the search bar.<br/>\\nFor things non related
|
524
|
+
please check out the following subreddits\\n<a href=\\\"/r/RWBY\\\">/r/RWBY</a>
|
525
|
+
for all the generic content including everything from the show<br/>\\n<a
|
526
|
+
href=\\\"/r/ClubYang\\\">/r/ClubYang</a> for all the Yang-y goodness<br/>\\n<a
|
527
|
+
href=\\\"/r/ClubWeiss\\\">/r/ClubWeiss</a> to check out some dust,
|
528
|
+
and I guess the princess<br/>\\n<a href=\\\"/r/ClubBlake\\\">/r/ClubBlake</a>
|
529
|
+
for calm relaxing reading and the cat looking girl herself </p>\\n\\n<p>(Just
|
530
|
+
anything about said topic will do!)</p>\\n</div><!-- SC_ON
|
531
|
+
-->\", \"title\": \"For all things Ruby from RWBY\", \"over18\": false,
|
532
|
+
\"user_is_moderator\": null, \"header_title\": null, \"description\": \"Please
|
533
|
+
respect the mods at all times, We're here to help you and the rest of the
|
534
|
+
subreddit, if you're being harassed in anyway please report it to us. Remember
|
535
|
+
to put spoiler tags on anything that could potentially spoil the show for
|
536
|
+
your fellow members. Posts without the spoiler tag will be immediately removed
|
537
|
+
and you'll be asked to resubmit your post. NSFW is allowed but is frowned
|
538
|
+
upon, no reposting such content, if people want to see it they'll have to
|
539
|
+
type in the [NSFW] tag that must be put in each NSFW post into the search
|
540
|
+
bar. \\nFor things non related please check out the following subreddits\\n/r/RWBY
|
541
|
+
for all the generic content including everything from the show \\n/r/ClubYang
|
542
|
+
for all the Yang-y goodness \\n/r/ClubWeiss to check out some dust, and I
|
543
|
+
guess the princess \\n/r/ClubBlake for calm relaxing reading and the cat
|
544
|
+
looking girl herself \\n\\n(Just anything about said topic will do!)\", \"submit_link_label\":
|
545
|
+
\"Submit Ruby\", \"accounts_active\": null, \"spam_comments\": \"low\", \"spam_links\":
|
546
|
+
\"high\", \"header_size\": null, \"subscribers\": 115, \"submit_text_label\":
|
547
|
+
\"Talk about Ruby\", \"name\": \"t5_2y2th\", \"created\": 1375462897.0, \"url\":
|
548
|
+
\"/r/ClubRuby/\", \"created_utc\": 1375459297.0, \"user_is_contributor\":
|
549
|
+
null, \"public_traffic\": false, \"public_description\": \"If Ruby is your
|
550
|
+
favorite character from RWBY by Roosterteeth then come here and take in the
|
551
|
+
all the goodness of Ruby here!\", \"comment_score_hide_mins\": 0, \"subreddit_type\":
|
552
|
+
\"public\", \"submission_type\": \"any\", \"user_is_subscriber\": null}},
|
553
|
+
{\"kind\": \"t5\", \"data\": {\"submit_text_html\": null, \"user_is_banned\":
|
554
|
+
null, \"id\": \"2t7gl\", \"submit_text\": \"\", \"spam_selfposts\": \"high\",
|
555
|
+
\"display_name\": \"lolruby\", \"header_img\": null, \"description_html\":
|
556
|
+
\"<!-- SC_OFF --><div class=\\\"md\\\"><p>you may also enjoy
|
557
|
+
<a href=\\\"/r/lolphp\\\">/r/lolphp</a></p>\\n</div><!--
|
558
|
+
SC_ON -->\", \"title\": \"Ruby stuff that will make you laugh... or cry...\",
|
559
|
+
\"over18\": false, \"user_is_moderator\": null, \"header_title\": null, \"description\":
|
560
|
+
\"you may also enjoy /r/lolphp\", \"submit_link_label\": \"\", \"accounts_active\":
|
561
|
+
null, \"spam_comments\": \"low\", \"spam_links\": \"high\", \"header_size\":
|
562
|
+
null, \"subscribers\": 28, \"submit_text_label\": \"\", \"name\": \"t5_2t7gl\",
|
563
|
+
\"created\": 1323571176.0, \"url\": \"/r/lolruby/\", \"created_utc\": 1323567576.0,
|
564
|
+
\"user_is_contributor\": null, \"public_traffic\": false, \"public_description\":
|
565
|
+
\"\", \"comment_score_hide_mins\": 0, \"subreddit_type\": \"public\", \"submission_type\":
|
566
|
+
\"any\", \"user_is_subscriber\": null}}, {\"kind\": \"t5\", \"data\": {\"submit_text_html\":
|
567
|
+
null, \"user_is_banned\": null, \"id\": \"2xxgm\", \"submit_text\": \"\",
|
568
|
+
\"spam_selfposts\": \"high\", \"display_name\": \"rubyapp\", \"header_img\":
|
569
|
+
null, \"description_html\": \"<!-- SC_OFF --><div class=\\\"md\\\"><p>Welcome
|
570
|
+
to the official subreddit for Ruby!</p>\\n\\n<p>Links:</p>\\n\\n<p><a
|
571
|
+
href=\\\"https://itunes.apple.com/us/app/ruby-for-reddit/id665682484?ls=1&amp;mt=8\\\">App
|
572
|
+
Store</a></p>\\n\\n<p><a href=\\\"http://halfpeeled.com/ruby/\\\">Website</a></p>\\n\\n<p><a
|
573
|
+
href=\\\"http://twitter.com/getrubyapp\\\">Twitter</a></p>\\n\\n<p>Any
|
574
|
+
questions, comments, suggestions, etc. related to Ruby can be posted on this
|
575
|
+
subreddit. We&#39;ll respond within 24 hours!</p>\\n</div><!--
|
576
|
+
SC_ON -->\", \"title\": \"Ruby for Reddit - iOS App\", \"over18\": false,
|
577
|
+
\"user_is_moderator\": null, \"header_title\": \"Ruby for Reddit\", \"description\":
|
578
|
+
\"Welcome to the official subreddit for Ruby!\\n\\n\\nLinks:\\n\\n[App Store](https://itunes.apple.com/us/app/ruby-for-reddit/id665682484?ls=1&mt=8)\\n\\n[Website](http://halfpeeled.com/ruby/)\\n\\n[Twitter](http://twitter.com/getrubyapp)\\n\\n\\nAny
|
579
|
+
questions, comments, suggestions, etc. related to Ruby can be posted on this
|
580
|
+
subreddit. We'll respond within 24 hours!\", \"submit_link_label\": null,
|
581
|
+
\"accounts_active\": null, \"spam_comments\": \"low\", \"spam_links\": \"high\",
|
582
|
+
\"header_size\": null, \"subscribers\": 44, \"submit_text_label\": null, \"name\":
|
583
|
+
\"t5_2xxgm\", \"created\": 1374330589.0, \"url\": \"/r/rubyapp/\", \"created_utc\":
|
584
|
+
1374326989.0, \"user_is_contributor\": null, \"public_traffic\": false, \"public_description\":
|
585
|
+
\"Ruby for Reddit is a lightweight Reddit client for both iPhone and iPad.\",
|
586
|
+
\"comment_score_hide_mins\": 0, \"subreddit_type\": \"public\", \"submission_type\":
|
587
|
+
\"any\", \"user_is_subscriber\": null}}, {\"kind\": \"t5\", \"data\": {\"submit_text_html\":
|
588
|
+
null, \"user_is_banned\": null, \"id\": \"2vo0e\", \"submit_text\": \"\",
|
589
|
+
\"spam_selfposts\": \"high\", \"display_name\": \"Learn_Rails\", \"header_img\":
|
590
|
+
null, \"description_html\": \"<!-- SC_OFF --><div class=\\\"md\\\"><p>Welcome
|
591
|
+
to <a href=\\\"http://reddit.com/r/learn_rails\\\">r/learn_rails</a>,
|
592
|
+
a subreddit dedicated to anybody who wants to study <a href=\\\"http://rubyonrails.org/\\\">Ruby
|
593
|
+
on Rails</a>. You can also reach this subreddit by visiting the domain
|
594
|
+
<a href=\\\"http://learn-rails.org\\\">learn-rails.org</a>.</p>\\n\\n<p>Don&#39;t
|
595
|
+
be afraid to ask questions! It is really important to check all your assumptions
|
596
|
+
so ask everything that&#39;s on your mind, no matter how trivial the issue
|
597
|
+
seems to be. Our goal is to be as open and friendly to beginners as possible.
|
598
|
+
So please, help each other and keep the technical one-upmanship to a minimum!</p>\\n\\n<p>There
|
599
|
+
will hardly be any moderation in this subreddit beyond cleaning up spam. There
|
600
|
+
are no arbitrary karma cutoffs to submit a link or contribute to the conversation
|
601
|
+
here. The same is true for our <a href=\\\"http://www.reddit.com/r/Learn_Rails/wiki/index\\\">Learn
|
602
|
+
Ruby on Rails Wiki</a>, which can be edited by anybody who is subscribed
|
603
|
+
to this fine subreddit.</p>\\n\\n<p>All the best and happy coding!</p>\\n</div><!--
|
604
|
+
SC_ON -->\", \"title\": \"Learn Ruby on Rails\", \"over18\": false, \"user_is_moderator\":
|
605
|
+
null, \"header_title\": null, \"description\": \"Welcome to [r/learn_rails](http://reddit.com/r/learn_rails),
|
606
|
+
a subreddit dedicated to anybody who wants to study [Ruby on Rails](http://rubyonrails.org/).
|
607
|
+
You can also reach this subreddit by visiting the domain [learn-rails.org](http://learn-rails.org).\\n\\nDon't
|
608
|
+
be afraid to ask questions! It is really important to check all your assumptions
|
609
|
+
so ask everything that's on your mind, no matter how trivial the issue seems
|
610
|
+
to be. Our goal is to be as open and friendly to beginners as possible. So
|
611
|
+
please, help each other and keep the technical one-upmanship to a minimum!\\n\\nThere
|
612
|
+
will hardly be any moderation in this subreddit beyond cleaning up spam. There
|
613
|
+
are no arbitrary karma cutoffs to submit a link or contribute to the conversation
|
614
|
+
here. The same is true for our [Learn Ruby on Rails Wiki](http://www.reddit.com/r/Learn_Rails/wiki/index),
|
615
|
+
which can be edited by anybody who is subscribed to this fine subreddit.\\n\\nAll
|
616
|
+
the best and happy coding!\", \"submit_link_label\": \"\", \"accounts_active\":
|
617
|
+
null, \"spam_comments\": \"low\", \"spam_links\": \"high\", \"header_size\":
|
618
|
+
null, \"subscribers\": 244, \"submit_text_label\": \"\", \"name\": \"t5_2vo0e\",
|
619
|
+
\"created\": 1354147105.0, \"url\": \"/r/Learn_Rails/\", \"created_utc\":
|
620
|
+
1354147105.0, \"user_is_contributor\": null, \"public_traffic\": false, \"public_description\":
|
621
|
+
\"This subreddit is dedicated to anybody who wants to study Ruby on Rails.
|
622
|
+
You can reach this subreddit also by visiting the domain http://learn-rails.org.\",
|
623
|
+
\"comment_score_hide_mins\": 0, \"subreddit_type\": \"public\", \"submission_type\":
|
624
|
+
\"any\", \"user_is_subscriber\": null}}, {\"kind\": \"t5\", \"data\": {\"submit_text_html\":
|
625
|
+
null, \"user_is_banned\": null, \"id\": \"2qh8z\", \"submit_text\": \"\",
|
626
|
+
\"spam_selfposts\": \"high\", \"display_name\": \"rubybr\", \"header_img\":
|
627
|
+
null, \"description_html\": \"<!-- SC_OFF --><div class=\\\"md\\\"><p>Grupo
|
628
|
+
Reddit para agregar blogs e websites brasileiros sobre Ruby e Rails.</p>\\n</div><!--
|
629
|
+
SC_ON -->\", \"title\": \"Ruby Brasil\", \"over18\": false, \"user_is_moderator\":
|
630
|
+
null, \"header_title\": \"\", \"description\": \"Grupo Reddit para agregar
|
631
|
+
blogs e websites brasileiros sobre Ruby e Rails.\", \"submit_link_label\":
|
632
|
+
\"\", \"accounts_active\": null, \"spam_comments\": \"low\", \"spam_links\":
|
633
|
+
\"high\", \"header_size\": null, \"subscribers\": 78, \"submit_text_label\":
|
634
|
+
\"\", \"name\": \"t5_2qh8z\", \"created\": 1201711370.0, \"url\": \"/r/rubybr/\",
|
635
|
+
\"created_utc\": 1201707770.0, \"user_is_contributor\": null, \"public_traffic\":
|
636
|
+
false, \"public_description\": \"\", \"comment_score_hide_mins\": 0, \"subreddit_type\":
|
637
|
+
\"public\", \"submission_type\": \"any\", \"user_is_subscriber\": null}},
|
638
|
+
{\"kind\": \"t5\", \"data\": {\"submit_text_html\": null, \"user_is_banned\":
|
639
|
+
null, \"id\": \"2xzul\", \"submit_text\": \"\", \"spam_selfposts\": \"high\",
|
640
|
+
\"display_name\": \"rubygroupies\", \"header_img\": \"http://b.thumbs.redditmedia.com/MBO7vKCmX8-3IMZC.jpg\",
|
641
|
+
\"description_html\": \"<!-- SC_OFF --><div class=\\\"md\\\"><p><strong>A
|
642
|
+
reddit for connecting with the Ruby community in Fresno, California&#39;s
|
643
|
+
surrounding area.</strong></p>\\n\\n<ul>\\n<li>We
|
644
|
+
like the Ruby programming language.<br/></li>\\n<li>We like
|
645
|
+
<a href=\\\"/r/ruby\\\">/r/ruby</a>.<br/></li>\\n<li>We
|
646
|
+
like getting together, talking about, and doing Ruby things.</li>\\n<li>We
|
647
|
+
like making Ruby things, and do so at <a href=\\\"http://rubygroupies.github.io\\\">http://rubygroupies.github.io</a>
|
648
|
+
and <a href=\\\"http://github.com/rubygroupies\\\">http://github.com/rubygroupies</a>.</li>\\n</ul>\\n\\n<p>Please
|
649
|
+
jump in if you do too!</p>\\n</div><!-- SC_ON -->\", \"title\":
|
650
|
+
\"rubygroupies: a ruby group from california's central valley\", \"over18\":
|
651
|
+
false, \"user_is_moderator\": null, \"header_title\": null, \"description\":
|
652
|
+
\"**A reddit for connecting with the Ruby community in Fresno, California's
|
653
|
+
surrounding area.**\\n\\n* We like the Ruby programming language. \\n* We
|
654
|
+
like /r/ruby. \\n* We like getting together, talking about, and doing Ruby
|
655
|
+
things.\\n* We like making Ruby things, and do so at http://rubygroupies.github.io
|
656
|
+
and http://github.com/rubygroupies.\\n\\nPlease jump in if you do too!\",
|
657
|
+
\"submit_link_label\": null, \"accounts_active\": null, \"spam_comments\":
|
658
|
+
\"low\", \"spam_links\": \"high\", \"header_size\": [353, 59], \"subscribers\":
|
659
|
+
3, \"submit_text_label\": null, \"name\": \"t5_2xzul\", \"created\": 1374814956.0,
|
660
|
+
\"url\": \"/r/rubygroupies/\", \"created_utc\": 1374811356.0, \"user_is_contributor\":
|
661
|
+
null, \"public_traffic\": false, \"public_description\": \"we like ruby. we're
|
662
|
+
from the fresno, california area.\", \"comment_score_hide_mins\": 0, \"subreddit_type\":
|
663
|
+
\"public\", \"submission_type\": \"any\", \"user_is_subscriber\": null}},
|
664
|
+
{\"kind\": \"t5\", \"data\": {\"submit_text_html\": null, \"user_is_banned\":
|
665
|
+
null, \"id\": \"2w6x8\", \"submit_text\": \"\", \"spam_selfposts\": \"high\",
|
666
|
+
\"display_name\": \"maylooksgoodin3d\", \"header_img\": \"http://b.thumbs.redditmedia.com/GdZTresZybqcQjfs.png\",
|
667
|
+
\"description_html\": \"<!-- SC_OFF --><div class=\\\"md\\\"><p><strong>_________________________________</strong></p>\\n\\n<p>This
|
668
|
+
sub is devoted entirely to the character <strong>May</strong>,
|
669
|
+
from the 3rd gen in RUBY SAPPHIRE and EMERALD as well as <strong>May</strong>
|
670
|
+
from the anime. <strong>Sapphire</strong>, from Pokemon adventures
|
671
|
+
is also allowed. <em>THERE IS NOT LIMIT ON WHAT YOU CAN POST BUT IT
|
672
|
+
MUST BE RELATED TO THE ABOVE OR WILL BE REMOVED!!!</em></p>\\n\\n<p>Mark
|
673
|
+
all posts with NSFW if you think that it needs to be!</p>\\n\\n<p><strong>_________________________________</strong></p>\\n\\n<p>If
|
674
|
+
you want to see <em>a little less</em> May: <a href=\\\"/r/pokemon\\\">/r/pokemon</a></p>\\n\\n<p>If
|
675
|
+
you want to see <strong>MORE</strong> of May: <a href=\\\"/r/pokeporn\\\">/r/pokeporn</a></p>\\n\\n<p>May<sup>May<sup>May<sup>May<sup>May</sup></sup></sup></sup></p>\\n</div><!--
|
676
|
+
SC_ON -->\", \"title\": \"MAY MAY MAY MAY MAY MAY\", \"over18\": false,
|
677
|
+
\"user_is_moderator\": null, \"header_title\": \"DAE Think May is HAWT? No
|
678
|
+
really...\", \"description\": \"**_________________________________**\\n\\nThis
|
679
|
+
sub is devoted entirely to the character **May**, from the 3rd gen in RUBY
|
680
|
+
SAPPHIRE and EMERALD as well as **May** from the anime. **Sapphire**, from
|
681
|
+
Pokemon adventures is also allowed. *THERE IS NOT LIMIT ON WHAT YOU CAN POST
|
682
|
+
BUT IT MUST BE RELATED TO THE ABOVE OR WILL BE REMOVED!!!*\\n\\nMark all posts
|
683
|
+
with NSFW if you think that it needs to be!\\n\\n**_________________________________**\\n\\nIf
|
684
|
+
you want to see *a little less* May: /r/pokemon\\n\\nIf you want to see **MORE**
|
685
|
+
of May: /r/pokeporn\\n\\nMay^May^May^May^May\", \"submit_link_label\": null,
|
686
|
+
\"accounts_active\": null, \"spam_comments\": \"low\", \"spam_links\": \"high\",
|
687
|
+
\"header_size\": [64, 64], \"subscribers\": 2, \"submit_text_label\": null,
|
688
|
+
\"name\": \"t5_2w6x8\", \"created\": 1359513753.0, \"url\": \"/r/maylooksgoodin3d/\",
|
689
|
+
\"created_utc\": 1359510153.0, \"user_is_contributor\": null, \"public_traffic\":
|
690
|
+
false, \"public_description\": \"This sub is devoted entirely to the character
|
691
|
+
**May**, from the 3rd gen in RUBY SAPPHIRE and EMERALD as well as **May**
|
692
|
+
from the anime. **Sapphire**, from Pokemon adventures is also here.\", \"comment_score_hide_mins\":
|
693
|
+
0, \"subreddit_type\": \"public\", \"submission_type\": \"any\", \"user_is_subscriber\":
|
694
|
+
null}}, {\"kind\": \"t5\", \"data\": {\"submit_text_html\": null, \"user_is_banned\":
|
695
|
+
null, \"id\": \"2uh7v\", \"submit_text\": \"\", \"spam_selfposts\": \"high\",
|
696
|
+
\"display_name\": \"weaverquest\", \"header_img\": null, \"description_html\":
|
697
|
+
\"<!-- SC_OFF --><div class=\\\"md\\\"><p>Anything that
|
698
|
+
is related to Ruby Quest, Nan Quest, Dive Quest, and all other projects by
|
699
|
+
Weaver goes here.</p>\\n\\n<p><strong>Mark NSFW fanart.</strong>
|
700
|
+
That is all.</p>\\n\\n<p>~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~</p>\\n\\n<p>If
|
701
|
+
you&#39;re lost and have no idea what in the fuck I&#39;m talking
|
702
|
+
about, here are some handy links:</p>\\n\\n<p><a href=\\\"http://evilcorporation.com.br/rubyquest/\\\">Ruby
|
703
|
+
Quest Complete Archive</a></p>\\n\\n<p><a href=\\\"http://tgchan.org/wiki/NanQuest\\\">Nan
|
704
|
+
Quest Threads + Wiki Page</a></p>\\n</div><!-- SC_ON
|
705
|
+
-->\", \"title\": \"Rubyquest, Nanquest, Divequest\", \"over18\": false,
|
706
|
+
\"user_is_moderator\": null, \"header_title\": \"it hurts\", \"description\":
|
707
|
+
\"Anything that is related to Ruby Quest, Nan Quest, Dive Quest, and all other
|
708
|
+
projects by Weaver goes here.\\n\\n**Mark NSFW fanart.** That is all.\\n\\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\\n\\nIf
|
709
|
+
you're lost and have no idea what in the fuck I'm talking about, here are
|
710
|
+
some handy links:\\n\\n[Ruby Quest Complete Archive](http://evilcorporation.com.br/rubyquest/)\\n\\n[Nan
|
711
|
+
Quest Threads + Wiki Page](http://tgchan.org/wiki/NanQuest)\", \"submit_link_label\":
|
712
|
+
\"\", \"accounts_active\": null, \"spam_comments\": \"low\", \"spam_links\":
|
713
|
+
\"high\", \"header_size\": null, \"subscribers\": 13, \"submit_text_label\":
|
714
|
+
\"\", \"name\": \"t5_2uh7v\", \"created\": 1341902709.0, \"url\": \"/r/weaverquest/\",
|
715
|
+
\"created_utc\": 1341899109.0, \"user_is_contributor\": null, \"public_traffic\":
|
716
|
+
false, \"public_description\": \"The creator of Ruby Quest and Nan Quest has
|
717
|
+
accumulated a fandom that I'm certain will find this message at some point
|
718
|
+
in time. If you've never heard of any of what I'm talking about, we've got
|
719
|
+
some links for you.\", \"comment_score_hide_mins\": 0, \"subreddit_type\":
|
720
|
+
\"public\", \"submission_type\": \"any\", \"user_is_subscriber\": null}},
|
721
|
+
{\"kind\": \"t5\", \"data\": {\"submit_text_html\": null, \"user_is_banned\":
|
722
|
+
null, \"id\": \"2tnqb\", \"submit_text\": \"\", \"spam_selfposts\": \"high\",
|
723
|
+
\"display_name\": \"ronin_ruby\", \"header_img\": \"http://c.thumbs.redditmedia.com/QpuDtr8dXxX0txdz.png\",
|
724
|
+
\"description_html\": \"<!-- SC_OFF --><div class=\\\"md\\\"><p><a
|
725
|
+
href=\\\"http://ronin-ruby.github.com/\\\">Ronin</a> is a <a href=\\\"http://www.ruby-lang.org/\\\">Ruby</a>
|
726
|
+
platform for <a href=\\\"http://www.exploit-db.com\\\">exploit development</a>
|
727
|
+
and security research. Ronin allows for the rapid development and distribution
|
728
|
+
of code, <a href=\\\"https://github.com/postmodern/postmodern/blob/master/scripts/exploits/http/oracle/dav_bypass.rb\\\">exploits</a>
|
729
|
+
or <a href=\\\"https://gist.github.com/1403961\\\">payloads</a>
|
730
|
+
via <a href=\\\"https://github.com/postmodern/postmodern\\\">Repositories</a>.</p>\\n\\n<h1>Install</h1>\\n\\n<p>Ronin
|
731
|
+
is available via <a href=\\\"http://rubygems.org/gems/ronin\\\">rubygems.org</a>:</p>\\n\\n<pre><code>$
|
732
|
+
gem install ronin\\n</code></pre>\\n\\n<h1>Featured</h1>\\n\\n<ul>\\n<li><a
|
733
|
+
href=\\\"http://www.reddit.com/r/ronin_ruby/comments/vtsb3/blog_roninsupport_050_ronin_150_roningen_120/\\\">ronin-support
|
734
|
+
0.5.0, ronin 1.5.0 and ronin-gen 1.2.0 released!</a></li>\\n</ul>\\n\\n<h1>Links</h1>\\n\\n<ul>\\n<li><a
|
735
|
+
href=\\\"http://ronin-ruby.github.com/blog/\\\">Blog</a></li>\\n<li><a
|
736
|
+
href=\\\"https://twitter.com/ronin_ruby\\\">Twitter</a></li>\\n<li><a
|
737
|
+
href=\\\"http://ronin-ruby.github.com/irc/\\\" title=\\\"irc.freenode.net
|
738
|
+
#ronin\\\">IRC</a></li>\\n<li><a href=\\\"https://groups.google.com/group/ronin-ruby\\\">Mailinglist</a></li>\\n<li><a
|
739
|
+
href=\\\"http://ronin-ruby.github.com/docs/\\\">Docs</a></li>\\n<li><a
|
740
|
+
href=\\\"https://github.com/ronin-ruby/\\\">GitHub</a></li>\\n</ul>\\n\\n<h1>Ruby</h1>\\n\\n<h2>Interactive</h2>\\n\\n<ul>\\n<li><a
|
741
|
+
href=\\\"http://tryruby.org/\\\" title=\\\"in your browser!\\\">TryRuby</a></li>\\n<li><a
|
742
|
+
href=\\\"http://rubykoans.com/\\\" title=\\\"learn by doing\\\">Ruby Kohans</a></li>\\n<li><a
|
743
|
+
href=\\\"http://www.youtube.com/user/MattStopaDev\\\" title=\\\"short videos
|
744
|
+
about Ruby\\\">Matt Stopa Dev</a></li>\\n</ul>\\n\\n<h2>Resources</h2>\\n\\n<ul>\\n<li><a
|
745
|
+
href=\\\"http://www.ruby-doc.org/docs/ProgrammingRuby/\\\" title=\\\"free!\\\">Programming
|
746
|
+
Ruby</a></li>\\n<li><a href=\\\"http://www.humblelittlerubybook.com/\\\"
|
747
|
+
title=\\\"free!\\\">Humble Little Ruby Book</a></li>\\n<li><a
|
748
|
+
href=\\\"http://www.amazon.com/gp/product/1934356085/ref=as_li_tf_tl?ie=UTF8&amp;tag=redditrrubyco-20&amp;linkCode=as2&amp;camp=1789&amp;creative=9325&amp;creativeASIN=1934356085\\\">Programming
|
749
|
+
Ruby 1.9</a></li>\\n<li><a href=\\\"http://www.amazon.com/gp/product/0321584104/ref=as_li_tf_tl?ie=UTF8&amp;tag=redditrrubyco-20&amp;linkCode=as2&amp;camp=1789&amp;creative=9325&amp;creativeASIN=0321584104\\\">Eloquent
|
750
|
+
Ruby</a></li>\\n<li><a href=\\\"http://www.amazon.com/gp/product/1933988657/ref=as_li_qf_sp_asin_tl?ie=UTF8&amp;tag=redditrrubyco-20&amp;linkCode=as2&amp;camp=1789&amp;creative=9325&amp;creativeASIN=1933988657\\\">Well
|
751
|
+
Grounded Rubyist</a></li>\\n</ul>\\n\\n<h2>Tools</h2>\\n\\n<ul>\\n<li><a
|
752
|
+
href=\\\"https://rvm.beginrescueend.com/\\\">RVM</a></li>\\n<li><a
|
753
|
+
href=\\\"http://gembundler.com/\\\">Bundler</a></li>\\n</ul>\\n</div><!--
|
754
|
+
SC_ON -->\", \"title\": \"News, links, questions and tips for using Ronin
|
755
|
+
or other Ruby hackery\", \"over18\": false, \"user_is_moderator\": null, \"header_title\":
|
756
|
+
null, \"description\": \"[Ronin](http://ronin-ruby.github.com/) is a [Ruby](http://www.ruby-lang.org/)
|
757
|
+
platform for [exploit development](http://www.exploit-db.com) and security
|
758
|
+
research. Ronin allows for the rapid development and distribution of code,
|
759
|
+
[exploits](https://github.com/postmodern/postmodern/blob/master/scripts/exploits/http/oracle/dav_bypass.rb)
|
760
|
+
or [payloads](https://gist.github.com/1403961) via [Repositories](https://github.com/postmodern/postmodern).\\n\\n#
|
761
|
+
Install\\n\\nRonin is available via [rubygems.org](http://rubygems.org/gems/ronin):\\n\\n
|
762
|
+
\ $ gem install ronin\\n\\n# Featured\\n\\n* [ronin-support 0.5.0, ronin
|
763
|
+
1.5.0 and ronin-gen 1.2.0 released!](http://www.reddit.com/r/ronin_ruby/comments/vtsb3/blog_roninsupport_050_ronin_150_roningen_120/)\\n\\n\\n#
|
764
|
+
Links\\n\\n* [Blog](http://ronin-ruby.github.com/blog/)\\n* [Twitter](https://twitter.com/ronin_ruby)\\n*
|
765
|
+
[IRC](http://ronin-ruby.github.com/irc/ \\\"irc.freenode.net #ronin\\\")\\n*
|
766
|
+
[Mailinglist](https://groups.google.com/group/ronin-ruby)\\n* [Docs](http://ronin-ruby.github.com/docs/)\\n*
|
767
|
+
[GitHub](https://github.com/ronin-ruby/)\\n\\n# Ruby\\n\\n## Interactive\\n\\n*
|
768
|
+
[TryRuby](http://tryruby.org/ \\\"in your browser!\\\")\\n* [Ruby Kohans](http://rubykoans.com/
|
769
|
+
\\\"learn by doing\\\")\\n* [Matt Stopa Dev](http://www.youtube.com/user/MattStopaDev
|
770
|
+
\\\"short videos about Ruby\\\")\\n\\n## Resources\\n\\n* [Programming Ruby](http://www.ruby-doc.org/docs/ProgrammingRuby/
|
771
|
+
\\\"free!\\\")\\n* [Humble Little Ruby Book](http://www.humblelittlerubybook.com/
|
772
|
+
\\\"free!\\\")\\n* [Programming Ruby 1.9](http://www.amazon.com/gp/product/1934356085/ref=as_li_tf_tl?ie=UTF8&tag=redditrrubyco-20&linkCode=as2&camp=1789&creative=9325&creativeASIN=1934356085)\\n*
|
773
|
+
[Eloquent Ruby](http://www.amazon.com/gp/product/0321584104/ref=as_li_tf_tl?ie=UTF8&tag=redditrrubyco-20&linkCode=as2&camp=1789&creative=9325&creativeASIN=0321584104)\\n*
|
774
|
+
[Well Grounded Rubyist](http://www.amazon.com/gp/product/1933988657/ref=as_li_qf_sp_asin_tl?ie=UTF8&tag=redditrrubyco-20&linkCode=as2&camp=1789&creative=9325&creativeASIN=1933988657)\\n\\n##
|
775
|
+
Tools\\n\\n* [RVM](https://rvm.beginrescueend.com/)\\n* [Bundler](http://gembundler.com/)\",
|
776
|
+
\"submit_link_label\": \"\", \"accounts_active\": null, \"spam_comments\":
|
777
|
+
\"low\", \"spam_links\": \"high\", \"header_size\": [196, 80], \"subscribers\":
|
778
|
+
56, \"submit_text_label\": \"\", \"name\": \"t5_2tnqb\", \"created\": 1330654922.0,
|
779
|
+
\"url\": \"/r/ronin_ruby/\", \"created_utc\": 1330651322.0, \"user_is_contributor\":
|
780
|
+
null, \"public_traffic\": false, \"public_description\": \"[Ronin](http://ronin-ruby.github.com/)
|
781
|
+
is a [Ruby](http://www.ruby-lang.org/) platform for [exploit development](http://www.exploit-db.com)
|
782
|
+
and security research. Ronin allows for the rapid development and distribution
|
783
|
+
of code, [exploits](https://github.com/postmodern/postmodern/blob/master/scripts/exploits/http/oracle/dav_bypass.rb)
|
784
|
+
or [payloads](https://gist.github.com/1403961) via [Repositories](https://github.com/postmodern/postmodern).\",
|
785
|
+
\"comment_score_hide_mins\": 0, \"subreddit_type\": \"public\", \"submission_type\":
|
786
|
+
\"any\", \"user_is_subscriber\": null}}, {\"kind\": \"t5\", \"data\": {\"submit_text_html\":
|
787
|
+
null, \"user_is_banned\": null, \"id\": \"2vk3w\", \"submit_text\": \"\",
|
788
|
+
\"spam_selfposts\": \"high\", \"display_name\": \"railsjobs\", \"header_img\":
|
789
|
+
null, \"description_html\": \"<!-- SC_OFF --><div class=\\\"md\\\"><p><strong>Are
|
790
|
+
you a developer who is looking for work?</strong></p>\\n\\n<p>Submit
|
791
|
+
a post with a title containing [for hire]</p>\\n\\n<p><strong>Are
|
792
|
+
you looking to hire a developer?</strong></p>\\n\\n<p>Submit
|
793
|
+
a post with a title containing [hiring]</p>\\n\\n<p><strong>The
|
794
|
+
following tags should be used by both parties:</strong></p>\\n\\n<table><thead>\\n<tr>\\n<th
|
795
|
+
align=\\\"right\\\">Title Tag</th>\\n<th align=\\\"left\\\">Description</th>\\n</tr>\\n</thead><tbody>\\n<tr>\\n<td
|
796
|
+
align=\\\"right\\\">[contract]</td>\\n<td align=\\\"left\\\">You
|
797
|
+
are only interested in short-term contracts.</td>\\n</tr>\\n<tr>\\n<td
|
798
|
+
align=\\\"right\\\">[fulltime]</td>\\n<td align=\\\"left\\\">You
|
799
|
+
only want to hire/become an employee.</td>\\n</tr>\\n<tr>\\n<td
|
800
|
+
align=\\\"right\\\">[remote]</td>\\n<td align=\\\"left\\\">You
|
801
|
+
are only interested in hiring/working remotely.</td>\\n</tr>\\n</tbody></table>\\n\\n<p>(If
|
802
|
+
you are not interested in hiring/working remotely, please include your state
|
803
|
+
or country in the title.)</p>\\n\\n<p><strong>Examples</strong></p>\\n\\n<p>A
|
804
|
+
developer looking for full-time work:</p>\\n\\n<blockquote>\\n<p>[for
|
805
|
+
hire, fulltime] Rails developer in SF looking for a great startup</p>\\n</blockquote>\\n\\n<p>Looking
|
806
|
+
to hire either employees or contractors to work from anywhere:</p>\\n\\n<blockquote>\\n<p>[hiring,
|
807
|
+
fulltime or contract, remote] Full-Stack Rails developer needed, can work
|
808
|
+
from home!</p>\\n</blockquote>\\n</div><!-- SC_ON -->\",
|
809
|
+
\"title\": \"Jobs for Ruby on Rails developers\", \"over18\": false, \"user_is_moderator\":
|
810
|
+
null, \"header_title\": null, \"description\": \"**Are you a developer who
|
811
|
+
is looking for work?**\\n\\nSubmit a post with a title containing [for hire]\\n\\n**Are
|
812
|
+
you looking to hire a developer?**\\n\\nSubmit a post with a title containing
|
813
|
+
[hiring]\\n\\n**The following tags should be used by both parties:**\\n\\n|
|
814
|
+
Title Tag | Description |\\n|-----------:|:------------|\\n| [contract]
|
815
|
+
| You are only interested in short-term contracts. |\\n| [fulltime] | You
|
816
|
+
only want to hire/become an employee. |\\n| [remote] | You are only interested
|
817
|
+
in hiring/working remotely. |\\n\\n(If you are not interested in hiring/working
|
818
|
+
remotely, please include your state or country in the title.)\\n\\n**Examples**\\n\\nA
|
819
|
+
developer looking for full-time work:\\n\\n> [for hire, fulltime] Rails
|
820
|
+
developer in SF looking for a great startup\\n\\nLooking to hire either employees
|
821
|
+
or contractors to work from anywhere:\\n\\n> [hiring, fulltime or contract,
|
822
|
+
remote] Full-Stack Rails developer needed, can work from home!\", \"submit_link_label\":
|
823
|
+
null, \"accounts_active\": null, \"spam_comments\": \"low\", \"spam_links\":
|
824
|
+
\"high\", \"header_size\": null, \"subscribers\": 139, \"submit_text_label\":
|
825
|
+
null, \"name\": \"t5_2vk3w\", \"created\": 1352936850.0, \"url\": \"/r/railsjobs/\",
|
826
|
+
\"created_utc\": 1352933250.0, \"user_is_contributor\": null, \"public_traffic\":
|
827
|
+
false, \"public_description\": \"Post a listing if you're looking for work,
|
828
|
+
or are looking for a Rails developer. Feel free to post either text/self posts,
|
829
|
+
or links to a job listing on an external website. \", \"comment_score_hide_mins\":
|
830
|
+
0, \"subreddit_type\": \"public\", \"submission_type\": \"any\", \"user_is_subscriber\":
|
831
|
+
null}}, {\"kind\": \"t5\", \"data\": {\"submit_text_html\": null, \"user_is_banned\":
|
832
|
+
null, \"id\": \"2qhjc\", \"submit_text\": \"\", \"spam_selfposts\": \"high\",
|
833
|
+
\"display_name\": \"ruby_rss\", \"header_img\": null, \"description_html\":
|
834
|
+
\"<!-- SC_OFF --><div class=\\\"md\\\"><p>ruby stuffs</p>\\n</div><!--
|
835
|
+
SC_ON -->\", \"title\": \"ruby stuffs\", \"over18\": false, \"user_is_moderator\":
|
836
|
+
null, \"header_title\": \"\", \"description\": \"ruby stuffs\", \"submit_link_label\":
|
837
|
+
\"\", \"accounts_active\": null, \"spam_comments\": \"low\", \"spam_links\":
|
838
|
+
\"high\", \"header_size\": null, \"subscribers\": 55, \"submit_text_label\":
|
839
|
+
\"\", \"name\": \"t5_2qhjc\", \"created\": 1205813702.0, \"url\": \"/r/ruby_rss/\",
|
840
|
+
\"created_utc\": 1205810102.0, \"user_is_contributor\": null, \"public_traffic\":
|
841
|
+
false, \"public_description\": \"\", \"comment_score_hide_mins\": 0, \"subreddit_type\":
|
842
|
+
\"public\", \"submission_type\": \"any\", \"user_is_subscriber\": null}},
|
843
|
+
{\"kind\": \"t5\", \"data\": {\"submit_text_html\": null, \"user_is_banned\":
|
844
|
+
null, \"id\": \"2s7fs\", \"submit_text\": \"\", \"spam_selfposts\": \"high\",
|
845
|
+
\"display_name\": \"ruby_proposals\", \"header_img\": null, \"description_html\":
|
846
|
+
\"<!-- SC_OFF --><div class=\\\"md\\\"><p>Propose a Ruby
|
847
|
+
project, discuss it, and implement it. If you think of something good, post
|
848
|
+
it here and some poor schmuck looking for something to do can make it.</p>\\n</div><!--
|
849
|
+
SC_ON -->\", \"title\": \"Ruby Proposals :: Project Ideas\", \"over18\":
|
850
|
+
false, \"user_is_moderator\": null, \"header_title\": null, \"description\":
|
851
|
+
\"Propose a Ruby project, discuss it, and implement it. If you think of something
|
852
|
+
good, post it here and some poor schmuck looking for something to do can make
|
853
|
+
it.\", \"submit_link_label\": \"\", \"accounts_active\": null, \"spam_comments\":
|
854
|
+
\"low\", \"spam_links\": \"high\", \"header_size\": null, \"subscribers\":
|
855
|
+
33, \"submit_text_label\": \"\", \"name\": \"t5_2s7fs\", \"created\": 1291043868.0,
|
856
|
+
\"url\": \"/r/ruby_proposals/\", \"created_utc\": 1291040268.0, \"user_is_contributor\":
|
857
|
+
null, \"public_traffic\": false, \"public_description\": \"\", \"comment_score_hide_mins\":
|
858
|
+
0, \"subreddit_type\": \"public\", \"submission_type\": \"any\", \"user_is_subscriber\":
|
859
|
+
null}}, {\"kind\": \"t5\", \"data\": {\"submit_text_html\": null, \"user_is_banned\":
|
860
|
+
null, \"id\": \"2qnuv\", \"submit_text\": \"\", \"spam_selfposts\": \"high\",
|
861
|
+
\"display_name\": \"rubyfeed\", \"header_img\": null, \"description_html\":
|
862
|
+
\"<!-- SC_OFF --><div class=\\\"md\\\"><p>ruby programming
|
863
|
+
language feed</p>\\n</div><!-- SC_ON -->\", \"title\": \"ruby
|
864
|
+
programming language feed\", \"over18\": false, \"user_is_moderator\": null,
|
865
|
+
\"header_title\": \"\", \"description\": \"ruby programming language feed\",
|
866
|
+
\"submit_link_label\": \"\", \"accounts_active\": null, \"spam_comments\":
|
867
|
+
\"low\", \"spam_links\": \"high\", \"header_size\": null, \"subscribers\":
|
868
|
+
60, \"submit_text_label\": \"\", \"name\": \"t5_2qnuv\", \"created\": 1225058060.0,
|
869
|
+
\"url\": \"/r/rubyfeed/\", \"created_utc\": 1225054460.0, \"user_is_contributor\":
|
870
|
+
null, \"public_traffic\": false, \"public_description\": \"\", \"comment_score_hide_mins\":
|
871
|
+
0, \"subreddit_type\": \"public\", \"submission_type\": \"any\", \"user_is_subscriber\":
|
872
|
+
null}}], \"after\": \"t5_2qnuv\", \"before\": null}}"
|
873
|
+
http_version:
|
874
|
+
recorded_at: Sun, 10 Nov 2013 22:38:21 GMT
|
875
|
+
recorded_with: VCR 2.6.0
|