muck-friends 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (294) hide show
  1. data/.gitignore +5 -0
  2. data/MIT-LICENSE +20 -0
  3. data/README.rdoc +51 -0
  4. data/Rakefile +101 -0
  5. data/VERSION +1 -0
  6. data/app/controllers/muck/friends_controller.rb +70 -0
  7. data/app/helpers/muck_friends_helper.rb +93 -0
  8. data/app/models/friend_mailer.rb +25 -0
  9. data/app/views/activity_templates/follow.html.erb +1 -0
  10. data/app/views/activity_templates/friends_with.html.erb +1 -0
  11. data/app/views/friend_mailer/follow.text.html.erb +8 -0
  12. data/app/views/friend_mailer/follow.text.plain.erb +8 -0
  13. data/app/views/friend_mailer/friend_request.text.html.erb +8 -0
  14. data/app/views/friend_mailer/friend_request.text.plain.erb +8 -0
  15. data/app/views/friends/_friend_simple.html.erb +4 -0
  16. data/app/views/friends/_friends.html.erb +8 -0
  17. data/app/views/friends/_notifications.html.erb +32 -0
  18. data/app/views/friends/friend_or_follow_request.html.erb +8 -0
  19. data/app/views/friends/index.html.erb +1 -0
  20. data/config/muck_friends_routes.rb +4 -0
  21. data/db/migrate/20090608073052_create_friends.rb +16 -0
  22. data/install.rb +1 -0
  23. data/lib/active_record/acts/muck_friend.rb +141 -0
  24. data/lib/active_record/acts/muck_friend_user.rb +103 -0
  25. data/lib/muck_friends.rb +12 -0
  26. data/lib/muck_friends/initialize_routes.rb +8 -0
  27. data/lib/muck_friends/tasks.rb +27 -0
  28. data/locales/ar.yml +31 -0
  29. data/locales/bg.yml +31 -0
  30. data/locales/ca.yml +31 -0
  31. data/locales/cs.yml +31 -0
  32. data/locales/da.yml +31 -0
  33. data/locales/de.yml +31 -0
  34. data/locales/el.yml +31 -0
  35. data/locales/en.yml +31 -0
  36. data/locales/es.yml +31 -0
  37. data/locales/et.yml +31 -0
  38. data/locales/fa.yml +31 -0
  39. data/locales/fi.yml +31 -0
  40. data/locales/fr.yml +31 -0
  41. data/locales/gl.yml +31 -0
  42. data/locales/hi.yml +31 -0
  43. data/locales/hr.yml +31 -0
  44. data/locales/hu.yml +31 -0
  45. data/locales/id.yml +31 -0
  46. data/locales/it.yml +31 -0
  47. data/locales/iw.yml +31 -0
  48. data/locales/ja.yml +31 -0
  49. data/locales/ko.yml +31 -0
  50. data/locales/lt.yml +31 -0
  51. data/locales/lv.yml +31 -0
  52. data/locales/mt.yml +31 -0
  53. data/locales/nl.yml +31 -0
  54. data/locales/no.yml +32 -0
  55. data/locales/pl.yml +31 -0
  56. data/locales/pt-PT.yml +31 -0
  57. data/locales/pt.yml +6 -0
  58. data/locales/ro.yml +31 -0
  59. data/locales/ru.yml +31 -0
  60. data/locales/sk.yml +31 -0
  61. data/locales/sl.yml +31 -0
  62. data/locales/sq.yml +31 -0
  63. data/locales/sr.yml +31 -0
  64. data/locales/sv.yml +31 -0
  65. data/locales/th.yml +31 -0
  66. data/locales/tl.yml +31 -0
  67. data/locales/tr.yml +31 -0
  68. data/locales/uk.yml +31 -0
  69. data/locales/vi.yml +31 -0
  70. data/locales/zh-CN.yml +31 -0
  71. data/locales/zh-TW.yml +31 -0
  72. data/locales/zh.yml +31 -0
  73. data/muck-friends.gemspec +381 -0
  74. data/rails/init.rb +4 -0
  75. data/tasks/rails.rake +1 -0
  76. data/test/rails_root/.gitignore +8 -0
  77. data/test/rails_root/.rake_tasks +103 -0
  78. data/test/rails_root/Capfile +3 -0
  79. data/test/rails_root/Rakefile +15 -0
  80. data/test/rails_root/app/controllers/application_controller.rb +21 -0
  81. data/test/rails_root/app/controllers/default_controller.rb +7 -0
  82. data/test/rails_root/app/helpers/application_helper.rb +3 -0
  83. data/test/rails_root/app/models/.keep +0 -0
  84. data/test/rails_root/app/models/activity.rb +3 -0
  85. data/test/rails_root/app/models/friend.rb +4 -0
  86. data/test/rails_root/app/models/user.rb +8 -0
  87. data/test/rails_root/app/models/user_session.rb +2 -0
  88. data/test/rails_root/app/views/default/index.html.erb +1 -0
  89. data/test/rails_root/app/views/layouts/default.html.erb +26 -0
  90. data/test/rails_root/config/amazon_s3.yml +14 -0
  91. data/test/rails_root/config/boot.rb +109 -0
  92. data/test/rails_root/config/database.yml +14 -0
  93. data/test/rails_root/config/environment.rb +27 -0
  94. data/test/rails_root/config/environments/development.rb +19 -0
  95. data/test/rails_root/config/environments/production.rb +1 -0
  96. data/test/rails_root/config/environments/test.rb +34 -0
  97. data/test/rails_root/config/global_config.yml +72 -0
  98. data/test/rails_root/config/initializers/inflections.rb +10 -0
  99. data/test/rails_root/config/initializers/mime_types.rb +5 -0
  100. data/test/rails_root/config/initializers/requires.rb +13 -0
  101. data/test/rails_root/config/initializers/session_store.rb +8 -0
  102. data/test/rails_root/config/routes.rb +3 -0
  103. data/test/rails_root/db/.keep +0 -0
  104. data/test/rails_root/db/migrate/20090320174818_create_muck_permissions_and_roles.rb +16 -0
  105. data/test/rails_root/db/migrate/20090402033319_add_muck_activities.rb +36 -0
  106. data/test/rails_root/db/migrate/20090602041838_create_users.rb +39 -0
  107. data/test/rails_root/db/migrate/20090608073052_create_friends.rb +16 -0
  108. data/test/rails_root/features/step_definitions/webrat_steps.rb +99 -0
  109. data/test/rails_root/features/support/env.rb +14 -0
  110. data/test/rails_root/public/.htaccess +40 -0
  111. data/test/rails_root/public/404.html +30 -0
  112. data/test/rails_root/public/422.html +30 -0
  113. data/test/rails_root/public/500.html +30 -0
  114. data/test/rails_root/public/dispatch.rb +10 -0
  115. data/test/rails_root/public/favicon.ico +0 -0
  116. data/test/rails_root/public/images/arrow_left.gif +0 -0
  117. data/test/rails_root/public/images/arrow_right.gif +0 -0
  118. data/test/rails_root/public/images/blue/preview.gif +0 -0
  119. data/test/rails_root/public/images/icons/accept.png +0 -0
  120. data/test/rails_root/public/images/icons/add.png +0 -0
  121. data/test/rails_root/public/images/icons/delete.png +0 -0
  122. data/test/rails_root/public/images/icons/vote.png +0 -0
  123. data/test/rails_root/public/images/loading.gif +0 -0
  124. data/test/rails_root/public/images/profile_default.jpg +0 -0
  125. data/test/rails_root/public/images/rails.png +0 -0
  126. data/test/rails_root/public/images/red/preview.gif +0 -0
  127. data/test/rails_root/public/images/spinner.gif +0 -0
  128. data/test/rails_root/public/images/sprites.png +0 -0
  129. data/test/rails_root/public/javascripts/application.js +2 -0
  130. data/test/rails_root/public/javascripts/builder.js +136 -0
  131. data/test/rails_root/public/javascripts/controls.js +963 -0
  132. data/test/rails_root/public/javascripts/dragdrop.js +972 -0
  133. data/test/rails_root/public/javascripts/effects.js +1120 -0
  134. data/test/rails_root/public/javascripts/fancyzoom.min.js +1 -0
  135. data/test/rails_root/public/javascripts/jquery/jquery-ui.js +273 -0
  136. data/test/rails_root/public/javascripts/jquery/jquery.form.js +637 -0
  137. data/test/rails_root/public/javascripts/jquery/jquery.jgrowl.js +2 -0
  138. data/test/rails_root/public/javascripts/jquery/jquery.js +19 -0
  139. data/test/rails_root/public/javascripts/jquery/jquery.tips.js +69 -0
  140. data/test/rails_root/public/javascripts/muck.js +76 -0
  141. data/test/rails_root/public/javascripts/muck_activities.js +108 -0
  142. data/test/rails_root/public/javascripts/prototype.js +4225 -0
  143. data/test/rails_root/public/javascripts/scriptaculous.js +58 -0
  144. data/test/rails_root/public/javascripts/slider.js +277 -0
  145. data/test/rails_root/public/javascripts/sound.js +60 -0
  146. data/test/rails_root/public/robots.txt +1 -0
  147. data/test/rails_root/public/stylesheets/.keep +0 -0
  148. data/test/rails_root/public/stylesheets/admin.css +12 -0
  149. data/test/rails_root/public/stylesheets/blueprint/ie.css +26 -0
  150. data/test/rails_root/public/stylesheets/blueprint/liquid_screen.css +203 -0
  151. data/test/rails_root/public/stylesheets/blueprint/plugins/buttons/icons/cross.png +0 -0
  152. data/test/rails_root/public/stylesheets/blueprint/plugins/buttons/icons/key.png +0 -0
  153. data/test/rails_root/public/stylesheets/blueprint/plugins/buttons/icons/tick.png +0 -0
  154. data/test/rails_root/public/stylesheets/blueprint/plugins/buttons/readme.txt +32 -0
  155. data/test/rails_root/public/stylesheets/blueprint/plugins/buttons/screen.css +97 -0
  156. data/test/rails_root/public/stylesheets/blueprint/plugins/fancy-type/readme.txt +14 -0
  157. data/test/rails_root/public/stylesheets/blueprint/plugins/fancy-type/screen.css +71 -0
  158. data/test/rails_root/public/stylesheets/blueprint/plugins/link-icons/icons/doc.png +0 -0
  159. data/test/rails_root/public/stylesheets/blueprint/plugins/link-icons/icons/email.png +0 -0
  160. data/test/rails_root/public/stylesheets/blueprint/plugins/link-icons/icons/external.png +0 -0
  161. data/test/rails_root/public/stylesheets/blueprint/plugins/link-icons/icons/feed.png +0 -0
  162. data/test/rails_root/public/stylesheets/blueprint/plugins/link-icons/icons/im.png +0 -0
  163. data/test/rails_root/public/stylesheets/blueprint/plugins/link-icons/icons/pdf.png +0 -0
  164. data/test/rails_root/public/stylesheets/blueprint/plugins/link-icons/icons/visited.png +0 -0
  165. data/test/rails_root/public/stylesheets/blueprint/plugins/link-icons/icons/xls.png +0 -0
  166. data/test/rails_root/public/stylesheets/blueprint/plugins/link-icons/readme.txt +18 -0
  167. data/test/rails_root/public/stylesheets/blueprint/plugins/link-icons/screen.css +40 -0
  168. data/test/rails_root/public/stylesheets/blueprint/plugins/liquid/liquid.css +134 -0
  169. data/test/rails_root/public/stylesheets/blueprint/plugins/liquid/src/liquid.css +197 -0
  170. data/test/rails_root/public/stylesheets/blueprint/plugins/rtl/readme.txt +10 -0
  171. data/test/rails_root/public/stylesheets/blueprint/plugins/rtl/screen.css +109 -0
  172. data/test/rails_root/public/stylesheets/blueprint/print.css +30 -0
  173. data/test/rails_root/public/stylesheets/blueprint/screen.css +251 -0
  174. data/test/rails_root/public/stylesheets/blueprint/sprite.css +1 -0
  175. data/test/rails_root/public/stylesheets/blueprint/src/forms.css +49 -0
  176. data/test/rails_root/public/stylesheets/blueprint/src/grid.css +213 -0
  177. data/test/rails_root/public/stylesheets/blueprint/src/grid.png +0 -0
  178. data/test/rails_root/public/stylesheets/blueprint/src/ie.css +59 -0
  179. data/test/rails_root/public/stylesheets/blueprint/src/print.css +85 -0
  180. data/test/rails_root/public/stylesheets/blueprint/src/reset.css +38 -0
  181. data/test/rails_root/public/stylesheets/blueprint/src/typography.css +105 -0
  182. data/test/rails_root/public/stylesheets/jquery/cupertino/images/ui-bg_diagonals-small_0_aaaaaa_40x40.png +0 -0
  183. data/test/rails_root/public/stylesheets/jquery/cupertino/images/ui-bg_diagonals-thick_15_444444_40x40.png +0 -0
  184. data/test/rails_root/public/stylesheets/jquery/cupertino/images/ui-bg_glass_100_f0f0f0_1x400.png +0 -0
  185. data/test/rails_root/public/stylesheets/jquery/cupertino/images/ui-bg_glass_50_99c2ff_1x400.png +0 -0
  186. data/test/rails_root/public/stylesheets/jquery/cupertino/images/ui-bg_glass_55_fbf5d0_1x400.png +0 -0
  187. data/test/rails_root/public/stylesheets/jquery/cupertino/images/ui-bg_glass_80_e6e6e6_1x400.png +0 -0
  188. data/test/rails_root/public/stylesheets/jquery/cupertino/images/ui-bg_glass_95_fef1ec_1x400.png +0 -0
  189. data/test/rails_root/public/stylesheets/jquery/cupertino/images/ui-bg_highlight-hard_100_f9f9f9_1x100.png +0 -0
  190. data/test/rails_root/public/stylesheets/jquery/cupertino/images/ui-bg_highlight-soft_100_e7eef3_1x100.png +0 -0
  191. data/test/rails_root/public/stylesheets/jquery/cupertino/images/ui-icons_222222_256x240.png +0 -0
  192. data/test/rails_root/public/stylesheets/jquery/cupertino/images/ui-icons_2694e8_256x240.png +0 -0
  193. data/test/rails_root/public/stylesheets/jquery/cupertino/images/ui-icons_2e83ff_256x240.png +0 -0
  194. data/test/rails_root/public/stylesheets/jquery/cupertino/images/ui-icons_72a7cf_256x240.png +0 -0
  195. data/test/rails_root/public/stylesheets/jquery/cupertino/images/ui-icons_888888_256x240.png +0 -0
  196. data/test/rails_root/public/stylesheets/jquery/cupertino/images/ui-icons_cd0a0a_256x240.png +0 -0
  197. data/test/rails_root/public/stylesheets/jquery/cupertino/images/ui-icons_ffffff_256x240.png +0 -0
  198. data/test/rails_root/public/stylesheets/jquery/cupertino/jquery-ui-1.7.1.custom.css +404 -0
  199. data/test/rails_root/public/stylesheets/jquery/redmond/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
  200. data/test/rails_root/public/stylesheets/jquery/redmond/images/ui-bg_flat_55_fbec88_40x100.png +0 -0
  201. data/test/rails_root/public/stylesheets/jquery/redmond/images/ui-bg_glass_75_d0e5f5_1x400.png +0 -0
  202. data/test/rails_root/public/stylesheets/jquery/redmond/images/ui-bg_glass_85_dfeffc_1x400.png +0 -0
  203. data/test/rails_root/public/stylesheets/jquery/redmond/images/ui-bg_glass_95_fef1ec_1x400.png +0 -0
  204. data/test/rails_root/public/stylesheets/jquery/redmond/images/ui-bg_gloss-wave_55_5c9ccc_500x100.png +0 -0
  205. data/test/rails_root/public/stylesheets/jquery/redmond/images/ui-bg_inset-hard_100_f5f8f9_1x100.png +0 -0
  206. data/test/rails_root/public/stylesheets/jquery/redmond/images/ui-bg_inset-hard_100_fcfdfd_1x100.png +0 -0
  207. data/test/rails_root/public/stylesheets/jquery/redmond/images/ui-icons_217bc0_256x240.png +0 -0
  208. data/test/rails_root/public/stylesheets/jquery/redmond/images/ui-icons_2e83ff_256x240.png +0 -0
  209. data/test/rails_root/public/stylesheets/jquery/redmond/images/ui-icons_469bdd_256x240.png +0 -0
  210. data/test/rails_root/public/stylesheets/jquery/redmond/images/ui-icons_6da8d5_256x240.png +0 -0
  211. data/test/rails_root/public/stylesheets/jquery/redmond/images/ui-icons_cd0a0a_256x240.png +0 -0
  212. data/test/rails_root/public/stylesheets/jquery/redmond/images/ui-icons_d8e7f3_256x240.png +0 -0
  213. data/test/rails_root/public/stylesheets/jquery/redmond/images/ui-icons_f9bd01_256x240.png +0 -0
  214. data/test/rails_root/public/stylesheets/jquery/redmond/jquery-ui-1.7.1.custom.css +404 -0
  215. data/test/rails_root/public/stylesheets/jquery/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
  216. data/test/rails_root/public/stylesheets/jquery/smoothness/images/ui-bg_flat_75_ffffff_40x100.png +0 -0
  217. data/test/rails_root/public/stylesheets/jquery/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png +0 -0
  218. data/test/rails_root/public/stylesheets/jquery/smoothness/images/ui-bg_glass_65_ffffff_1x400.png +0 -0
  219. data/test/rails_root/public/stylesheets/jquery/smoothness/images/ui-bg_glass_75_dadada_1x400.png +0 -0
  220. data/test/rails_root/public/stylesheets/jquery/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png +0 -0
  221. data/test/rails_root/public/stylesheets/jquery/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png +0 -0
  222. data/test/rails_root/public/stylesheets/jquery/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png +0 -0
  223. data/test/rails_root/public/stylesheets/jquery/smoothness/images/ui-icons_222222_256x240.png +0 -0
  224. data/test/rails_root/public/stylesheets/jquery/smoothness/images/ui-icons_2e83ff_256x240.png +0 -0
  225. data/test/rails_root/public/stylesheets/jquery/smoothness/images/ui-icons_454545_256x240.png +0 -0
  226. data/test/rails_root/public/stylesheets/jquery/smoothness/images/ui-icons_888888_256x240.png +0 -0
  227. data/test/rails_root/public/stylesheets/jquery/smoothness/images/ui-icons_cd0a0a_256x240.png +0 -0
  228. data/test/rails_root/public/stylesheets/jquery/smoothness/jquery-ui-1.7.1.custom.css +404 -0
  229. data/test/rails_root/public/stylesheets/jquery/ui-lightness/images/ui-bg_diagonals-thick_18_b81900_40x40.png +0 -0
  230. data/test/rails_root/public/stylesheets/jquery/ui-lightness/images/ui-bg_diagonals-thick_20_666666_40x40.png +0 -0
  231. data/test/rails_root/public/stylesheets/jquery/ui-lightness/images/ui-bg_flat_10_000000_40x100.png +0 -0
  232. data/test/rails_root/public/stylesheets/jquery/ui-lightness/images/ui-bg_glass_100_f6f6f6_1x400.png +0 -0
  233. data/test/rails_root/public/stylesheets/jquery/ui-lightness/images/ui-bg_glass_100_fdf5ce_1x400.png +0 -0
  234. data/test/rails_root/public/stylesheets/jquery/ui-lightness/images/ui-bg_glass_65_ffffff_1x400.png +0 -0
  235. data/test/rails_root/public/stylesheets/jquery/ui-lightness/images/ui-bg_gloss-wave_35_f6a828_500x100.png +0 -0
  236. data/test/rails_root/public/stylesheets/jquery/ui-lightness/images/ui-bg_highlight-soft_100_eeeeee_1x100.png +0 -0
  237. data/test/rails_root/public/stylesheets/jquery/ui-lightness/images/ui-bg_highlight-soft_75_ffe45c_1x100.png +0 -0
  238. data/test/rails_root/public/stylesheets/jquery/ui-lightness/images/ui-icons_222222_256x240.png +0 -0
  239. data/test/rails_root/public/stylesheets/jquery/ui-lightness/images/ui-icons_228ef1_256x240.png +0 -0
  240. data/test/rails_root/public/stylesheets/jquery/ui-lightness/images/ui-icons_ef8c08_256x240.png +0 -0
  241. data/test/rails_root/public/stylesheets/jquery/ui-lightness/images/ui-icons_ffd27a_256x240.png +0 -0
  242. data/test/rails_root/public/stylesheets/jquery/ui-lightness/images/ui-icons_ffffff_256x240.png +0 -0
  243. data/test/rails_root/public/stylesheets/jquery/ui-lightness/jquery-ui-1.7.1.custom.css +404 -0
  244. data/test/rails_root/public/stylesheets/reset.css +0 -0
  245. data/test/rails_root/public/stylesheets/styles.css +79 -0
  246. data/test/rails_root/public/stylesheets/themes/blue/styles.css +1 -0
  247. data/test/rails_root/public/stylesheets/themes/red/styles.css +1 -0
  248. data/test/rails_root/script/about +3 -0
  249. data/test/rails_root/script/breakpointer +3 -0
  250. data/test/rails_root/script/console +3 -0
  251. data/test/rails_root/script/create_project.rb +52 -0
  252. data/test/rails_root/script/cucumber +7 -0
  253. data/test/rails_root/script/dbconsole +3 -0
  254. data/test/rails_root/script/destroy +3 -0
  255. data/test/rails_root/script/generate +3 -0
  256. data/test/rails_root/script/performance/benchmarker +3 -0
  257. data/test/rails_root/script/performance/profiler +3 -0
  258. data/test/rails_root/script/performance/request +3 -0
  259. data/test/rails_root/script/plugin +3 -0
  260. data/test/rails_root/script/process/inspector +3 -0
  261. data/test/rails_root/script/process/reaper +3 -0
  262. data/test/rails_root/script/process/spawner +3 -0
  263. data/test/rails_root/script/runner +3 -0
  264. data/test/rails_root/script/server +3 -0
  265. data/test/rails_root/test/factories.rb +50 -0
  266. data/test/rails_root/test/functional/.keep +0 -0
  267. data/test/rails_root/test/functional/friends_controller_test.rb +171 -0
  268. data/test/rails_root/test/integration/.keep +0 -0
  269. data/test/rails_root/test/mocks/development/.keep +0 -0
  270. data/test/rails_root/test/mocks/test/.keep +0 -0
  271. data/test/rails_root/test/shoulda_macros/controller.rb +45 -0
  272. data/test/rails_root/test/shoulda_macros/forms.rb +32 -0
  273. data/test/rails_root/test/shoulda_macros/models.rb +50 -0
  274. data/test/rails_root/test/shoulda_macros/pagination.rb +53 -0
  275. data/test/rails_root/test/shoulda_macros/plugins.rb +34 -0
  276. data/test/rails_root/test/test_helper.rb +38 -0
  277. data/test/rails_root/test/unit/.keep +0 -0
  278. data/test/rails_root/test/unit/friend_mailer_test.rb +37 -0
  279. data/test/rails_root/test/unit/friend_test.rb +186 -0
  280. data/test/rails_root/test/unit/user_test.rb +170 -0
  281. data/test/rails_root/vendor/plugins/ssl_requirement/README +43 -0
  282. data/test/rails_root/vendor/plugins/ssl_requirement/lib/ssl_requirement.rb +62 -0
  283. data/test/rails_root/vendor/plugins/ssl_requirement/test/ssl_requirement_test.rb +132 -0
  284. data/test/rails_root/vendor/plugins/validation_reflection/CHANGELOG +24 -0
  285. data/test/rails_root/vendor/plugins/validation_reflection/LICENSE +20 -0
  286. data/test/rails_root/vendor/plugins/validation_reflection/README +64 -0
  287. data/test/rails_root/vendor/plugins/validation_reflection/Rakefile +22 -0
  288. data/test/rails_root/vendor/plugins/validation_reflection/about.yml +7 -0
  289. data/test/rails_root/vendor/plugins/validation_reflection/init.rb +8 -0
  290. data/test/rails_root/vendor/plugins/validation_reflection/lib/boiler_plate/validation_reflection.rb +129 -0
  291. data/test/rails_root/vendor/plugins/validation_reflection/test/test_helper.rb +36 -0
  292. data/test/rails_root/vendor/plugins/validation_reflection/test/validation_reflection_test.rb +126 -0
  293. data/uninstall.rb +1 -0
  294. metadata +416 -0
@@ -0,0 +1,31 @@
1
+ ---
2
+ sl:
3
+ muck:
4
+ activity_templates:
5
+ follow: Nasljedovatelji
6
+ friends_with: Prijatelji
7
+ friends:
8
+ acccept_friend_request: "Sprejmi povabilo k prijateljstvu"
9
+ accept: (sprejeti)
10
+ delete: (črtano)
11
+ follow_activity: "{{inviter}} is now following {{invited}}"
12
+ following_you: "{{name}} is now following you on {{application_name}}"
13
+ friend_request: Prijateljstvu
14
+ friend_request_pending: "Prijateljstvu dokler {{link}}"
15
+ friend_request_sent: "Prijateljstvu Poslano"
16
+ friends_title: "Moji prijatelji"
17
+ friends_with: "{{inviter}} is now friends with {{invited}}"
18
+ ignore: (ignore)
19
+ no_followers: "Vi trenutno nimajo koli nasljedovatelji"
20
+ no_friends: "Vi trenutno nimajo kakšne prijatelje"
21
+ not_following_anyone: "Trenutno niste naslednje vsakogar"
22
+ problem_adding_follow: "Pojavil se je problem {{user}} dodate na vaš seznam slediti. Prosimo, poskusite znova."
23
+ problem_sending_friend_request: "Prišlo je do težave s pošiljanjem prijatelju zahtevo {{user}}. Prosimo, poskusite znova."
24
+ removed_friendship: "Odstranjeno prijatelj razmerja"
25
+ same_inviter_error_message: "Uporabnik ne more postati prijatelji s sam."
26
+ sign_up_to_follow: "Prijava za spremljanje"
27
+ start_following: "Začni Po"
28
+ stop_being_friends: "Ne bodi Prijatelji"
29
+ stop_following: "Stop Po"
30
+ view_all: "Prikaži vse"
31
+ you_are_now_following: "Zdaj ste v naslednjih {{user}}"
@@ -0,0 +1,31 @@
1
+ ---
2
+ sq:
3
+ muck:
4
+ activity_templates:
5
+ follow: Pasues
6
+ friends_with: Shokët
7
+ friends:
8
+ acccept_friend_request: "Accept Friend Request"
9
+ accept: (pranoni)
10
+ delete: (fshini)
11
+ follow_activity: "{{inviter}} is now following {{invited}}"
12
+ following_you: "{{name}} is now following you on {{application_name}}"
13
+ friend_request: "Friend Request"
14
+ friend_request_pending: "Friend kërkesën në pritje të {{link}}"
15
+ friend_request_sent: "Friend Request Sent"
16
+ friends_title: "My Friends"
17
+ friends_with: "{{inviter}} is now friends with {{invited}}"
18
+ ignore: (injoro)
19
+ no_followers: "Ju aktualisht nuk kanë ndonjë ndjekësit"
20
+ no_friends: "Ju aktualisht nuk kanë ndonjë shok"
21
+ not_following_anyone: "Ju nuk jeni aktualisht pas askujt"
22
+ problem_adding_follow: "Ka ndodhur një problem duke shtuar {{user}} në listën tuaj të ndjekë. Ju lutemi të provoni përsëri."
23
+ problem_sending_friend_request: "Ka ndodhur një problem dërguar një kërkesë për mik {{user}}. Ju lutemi të provoni përsëri."
24
+ removed_friendship: "Removed mik marrëdhënie"
25
+ same_inviter_error_message: "Përdoruesi nuk mund të bëhen shokë me themself."
26
+ sign_up_to_follow: "Sign-up të Ndiqni"
27
+ start_following: "Fillimi Pas"
28
+ stop_being_friends: "Stop jesh Friends"
29
+ stop_following: "Pas Stop"
30
+ view_all: "View All"
31
+ you_are_now_following: "Ju jeni tani pas {{user}}"
@@ -0,0 +1,31 @@
1
+ ---
2
+ sr:
3
+ muck:
4
+ activity_templates:
5
+ follow: Следбеници
6
+ friends_with: Пријатељи
7
+ friends:
8
+ acccept_friend_request: "Прихватите захтев пријатеља"
9
+ accept: (прихватити)
10
+ delete: (брисање)
11
+ follow_activity: "{{inviter}} is now following {{invited}}"
12
+ following_you: "{{name}} is now following you on {{application_name}}"
13
+ friend_request: "Фриенд Рекуест"
14
+ friend_request_pending: "Захтјев за пријатељство на чекању {{link}}"
15
+ friend_request_sent: "Фриенд Рекуест Сент"
16
+ friends_title: "Моји пријатељи"
17
+ friends_with: "{{inviter}} is now friends with {{invited}}"
18
+ ignore: (игноришете)
19
+ no_followers: "Не Тренутно имате било каквих сљедбеника"
20
+ no_friends: "Не тренутно имате пријатеље"
21
+ not_following_anyone: "Тренутно не следеће никоме"
22
+ problem_adding_follow: "Дошло је до проблема у додавању {{user}} пратите на свој списак. Плеасе тры агаин."
23
+ problem_sending_friend_request: "Дошло је до проблема приликом слања захтева за {{user}}. пријатељу Плеасе тры агаин."
24
+ removed_friendship: "Одстрањена пријатељу однос"
25
+ same_inviter_error_message: "Корисник не може постати пријатељ са тхемселф."
26
+ sign_up_to_follow: "Сигн-уп пратити"
27
+ start_following: "Крените Следећи"
28
+ stop_being_friends: "Стоп Беинг Фриендс"
29
+ stop_following: "Након Стоп"
30
+ view_all: "Виеу Алл"
31
+ you_are_now_following: "Сада сте следеће {{user}}"
@@ -0,0 +1,31 @@
1
+ ---
2
+ sv:
3
+ muck:
4
+ activity_templates:
5
+ follow: Efterföljare
6
+ friends_with: Vänner
7
+ friends:
8
+ acccept_friend_request: "Godkänn vänbegäran"
9
+ accept: (acceptera)
10
+ delete: (radera)
11
+ follow_activity: "{{inviter}} is now following {{invited}}"
12
+ following_you: "{{name}} is now following you on {{application_name}}"
13
+ friend_request: Vänbegäran
14
+ friend_request_pending: "Vänbegäran väntan {{link}}"
15
+ friend_request_sent: "Vänbegäran Skickat"
16
+ friends_title: "Mina vänner"
17
+ friends_with: "{{inviter}} is now friends with {{invited}}"
18
+ ignore: (ignorera)
19
+ no_followers: "Du för närvarande inte har några anhängare"
20
+ no_friends: "Du för närvarande inte har några vänner"
21
+ not_following_anyone: "Du är för närvarande inte efter någon"
22
+ problem_adding_follow: "Det uppstod ett problem att lägga {{user}} på ditt följa listan. Please try again."
23
+ problem_sending_friend_request: "Det uppstod ett problem med att skicka en vänbegäran till {{user}}. Please try again."
24
+ removed_friendship: "Borttaget vän förhållandet"
25
+ same_inviter_error_message: "Användare kan inte bli vän med sig själv."
26
+ sign_up_to_follow: "Registrera dig att följa"
27
+ start_following: "Start Efter"
28
+ stop_being_friends: "Sluta vara Vänner"
29
+ stop_following: "Stopp Efter"
30
+ view_all: "Visa alla"
31
+ you_are_now_following: "Du är nu följande {{user}}"
@@ -0,0 +1,31 @@
1
+ ---
2
+ th:
3
+ muck:
4
+ activity_templates:
5
+ follow: สมัครพรรคพวก
6
+ friends_with: เพื่อนๆ
7
+ friends:
8
+ acccept_friend_request: ยอมรับเพื่อนคำขอ
9
+ accept: (รับ)
10
+ delete: (ลบ)
11
+ follow_activity: "{{inviter}} is now following {{invited}}"
12
+ following_you: "{{name}} is now following you on {{application_name}}"
13
+ friend_request: เพื่อนคำขอ
14
+ friend_request_pending: "เพื่อนที่รอการอนุมัติคำขอ {{link}}"
15
+ friend_request_sent: เพื่อนส่งคำขอแล้ว
16
+ friends_title: เพื่อนของฉัน
17
+ friends_with: "{{inviter}} is now friends with {{invited}}"
18
+ ignore: (ละเว้น)
19
+ no_followers: คุณไม่ได้ในขณะนี้มีสมัครพรรคพวก
20
+ no_friends: คุณไม่ได้มีอยู่ในขณะนี้เพื่อนๆ
21
+ not_following_anyone: ขณะนี้ท่านไม่ได้ต่อไปนี้ทุกคน
22
+ problem_adding_follow: "มีปัญหาในการเพิ่ม {{user}} ของคุณตามรายการ. โปรดลองอีกครั้ง."
23
+ problem_sending_friend_request: "มีปัญหาในการส่งคำขอเป็นเพื่อนไปยัง {{user}}. โปรดลองอีกครั้ง."
24
+ removed_friendship: ลบเพื่อนความสัมพันธ์
25
+ same_inviter_error_message: "ผู้ใช้ไม่สามารถเป็นเพื่อนกับ themself."
26
+ sign_up_to_follow: ลงทะเบียนเพื่อปฏิบัติตาม
27
+ start_following: เริ่มต้นต่อไปนี้
28
+ stop_being_friends: หยุดเป็นเพื่อน
29
+ stop_following: หยุดตาม
30
+ view_all: ดูทั้งหมด
31
+ you_are_now_following: "ขณะนี้คุณอยู่ต่อไปนี้ {{user}}"
@@ -0,0 +1,31 @@
1
+ ---
2
+ tl:
3
+ muck:
4
+ activity_templates:
5
+ follow: Mga
6
+ friends_with: "Mga kaibigan"
7
+ friends:
8
+ acccept_friend_request: "Tanggapin Kaibigan Kahilingan"
9
+ accept: (tanggapin)
10
+ delete: (tanggalin)
11
+ follow_activity: "{{inviter}} is now following {{invited}}"
12
+ following_you: "{{name}} is now following you on {{application_name}}"
13
+ friend_request: "Kaibigan ng Kahilingan"
14
+ friend_request_pending: "Friend request pending {{link}}"
15
+ friend_request_sent: "Kaibigan Naipadalang Kahilingan"
16
+ friends_title: "Aking Kaibigan"
17
+ friends_with: "{{inviter}} is now friends with {{invited}}"
18
+ ignore: "(huwag pansinin)"
19
+ no_followers: "Ikaw ay hindi kasalukuyan ay may anumang mga"
20
+ no_friends: "Ikaw ay hindi kasalukuyan ay may anumang mga kaibigan"
21
+ not_following_anyone: "Ikaw ay kasalukuyang hindi sumusunod na kahit sino"
22
+ problem_adding_follow: "Nagkaroon ng problema sa pagdagdag ng {{user}} sa iyong sundin listahan. Mangyaring subukan ulit."
23
+ problem_sending_friend_request: "Nagkaroon ng problema sa pagpapadala ng isang kaibigan kahilingan sa {{user}}. Mangyaring subukan ulit."
24
+ removed_friendship: "Tinanggal na kaibigan na relasyon"
25
+ same_inviter_error_message: "User ay maaaring hindi maging mga kaibigan na may themself."
26
+ sign_up_to_follow: "Mag-sign-up sa Sundin"
27
+ start_following: "Simulan Kasunod"
28
+ stop_being_friends: "Itigil ang pagiging Kaibigan"
29
+ stop_following: "Itigil Kasunod"
30
+ view_all: "Tingnan ang lahat ng"
31
+ you_are_now_following: "Kayo ngayon ay sumusunod {{user}}"
@@ -0,0 +1,31 @@
1
+ ---
2
+ tr:
3
+ muck:
4
+ activity_templates:
5
+ follow: Taraftar
6
+ friends_with: Arkadaşlar
7
+ friends:
8
+ acccept_friend_request: "Kabul Arkadaşına İstek"
9
+ accept: "() kabul"
10
+ delete: (sil)
11
+ follow_activity: "{{inviter}} is now following {{invited}}"
12
+ following_you: "{{name}} is now following you on {{application_name}}"
13
+ friend_request: "Arkadaşına İstek"
14
+ friend_request_pending: "Arkadaş isteğini bekleyen {{link}}"
15
+ friend_request_sent: "Arkadaşına İstek Gönderildi"
16
+ friends_title: Arkadaşlar
17
+ friends_with: "{{inviter}} is now friends with {{invited}}"
18
+ ignore: "() yok saymak"
19
+ no_followers: "Şu anda herhangi bir kişiyi yok"
20
+ no_friends: "Şu anda herhangi bir arkadaş yok"
21
+ not_following_anyone: "Şu anda herkes aşağıdaki değildir"
22
+ problem_adding_follow: "Bir sorun listesini izleyin sizin için {{user}} eklenmesi oldu. Lütfen tekrar deneyin."
23
+ problem_sending_friend_request: "Bir sorun {{user}}. Bir arkadaşa talepte oldu Lütfen tekrar deneyin."
24
+ removed_friendship: "Kaldırılan arkadaş ilişkileri"
25
+ same_inviter_error_message: "Kullanıcı kendilerini arkadaş olamaz."
26
+ sign_up_to_follow: "Kayıt için izleyin"
27
+ start_following: "Başlat'ı sonra"
28
+ stop_being_friends: "Being Arkadaşlar Dur"
29
+ stop_following: "Dur ardından"
30
+ view_all: Tüm
31
+ you_are_now_following: "Artık {{user}} aşağıdadır"
@@ -0,0 +1,31 @@
1
+ ---
2
+ uk:
3
+ muck:
4
+ activity_templates:
5
+ follow: Послідовники
6
+ friends_with: Друзі
7
+ friends:
8
+ acccept_friend_request: "Прийняти пропозицію дружби"
9
+ accept: (прийняти)
10
+ delete: (видалення)
11
+ follow_activity: "{{inviter}} is now following {{invited}}"
12
+ following_you: "{{name}} is now following you on {{application_name}}"
13
+ friend_request: "Інший Запит"
14
+ friend_request_pending: "Інший запит до {{link}}"
15
+ friend_request_sent: "Інший Запит надіслано"
16
+ friends_title: "Мої друзі"
17
+ friends_with: "{{inviter}} is now friends with {{invited}}"
18
+ ignore: (ігнорувати)
19
+ no_followers: "Ви в даний час не мають яких-небудь послідовники"
20
+ no_friends: "Ви в даний час не мають яких-небудь друзі"
21
+ not_following_anyone: "В даний час ви не хто наступний"
22
+ problem_adding_follow: "Був проблему додавши {{user}} вашої наступної списку. Будь ласка, спробуйте ще раз."
23
+ problem_sending_friend_request: "Був проблема відправлення одного з проханням до {{user}}. Будь ласка, спробуйте ще раз."
24
+ removed_friendship: "Вилучено другу відносини"
25
+ same_inviter_error_message: "Користувач не може дружити з себе."
26
+ sign_up_to_follow: "Зареєструватися для подальшої"
27
+ start_following: "Після початку"
28
+ stop_being_friends: "Перестати бути друзями"
29
+ stop_following: "Після зупинки"
30
+ view_all: "Переглянути всі"
31
+ you_are_now_following: "Тепер наступний {{user}}"
@@ -0,0 +1,31 @@
1
+ ---
2
+ vi:
3
+ muck:
4
+ activity_templates:
5
+ follow: Những
6
+ friends_with: "Bạn bè"
7
+ friends:
8
+ acccept_friend_request: "Yêu cầu chấp nhận bạn bè"
9
+ accept: "(chấp nhận)"
10
+ delete: (xóa)
11
+ follow_activity: "{{inviter}} is now following {{invited}}"
12
+ following_you: "{{name}} is now following you on {{application_name}}"
13
+ friend_request: "Yêu cầu bạn bè"
14
+ friend_request_pending: "Bạn bè đang chờ giải quyết yêu cầu {{link}}"
15
+ friend_request_sent: "Yêu cầu người bạn đã gửi"
16
+ friends_title: "Bạn bè của tôi"
17
+ friends_with: "{{inviter}} is now friends with {{invited}}"
18
+ ignore: "(bỏ qua)"
19
+ no_followers: "Bạn hiện tại không có bất kỳ những"
20
+ no_friends: "Bạn hiện tại không có bất cứ bạn bè"
21
+ not_following_anyone: "Bạn không có hiện sau đây bất cứ ai"
22
+ problem_adding_follow: "Có một vấn đề khi thêm {{user}} của bạn hãy thực hiện theo danh sách. Xin vui lòng thử lại."
23
+ problem_sending_friend_request: "Có một vấn đề khi gửi một yêu cầu kết bạn để {{user}}. Xin vui lòng thử lại."
24
+ removed_friendship: "Xoá bỏ mối quan hệ bạn bè"
25
+ same_inviter_error_message: "Người này không thể trở thành bạn bè với themself."
26
+ sign_up_to_follow: "Đăng ký để theo"
27
+ start_following: "Bắt đầu Sau"
28
+ stop_being_friends: "Ngưng Đang bạn bè"
29
+ stop_following: "Dừng Sau"
30
+ view_all: "Xem tất cả"
31
+ you_are_now_following: "Bạn bây giờ đang theo {{user}}"
@@ -0,0 +1,31 @@
1
+ ---
2
+ zh-CN:
3
+ muck:
4
+ activity_templates:
5
+ follow: 追随者
6
+ friends_with: 朋友们
7
+ friends:
8
+ acccept_friend_request: 接受好友请求
9
+ accept: (接受)
10
+ delete: (删除)
11
+ follow_activity: "{{inviter}} is now following {{invited}}"
12
+ following_you: "{{name}} is now following you on {{application_name}}"
13
+ friend_request: 朋友的要求
14
+ friend_request_pending: "朋友的要求待{{link}}"
15
+ friend_request_sent: 朋友要求传送
16
+ friends_title: 我的朋友
17
+ friends_with: "{{inviter}} is now friends with {{invited}}"
18
+ ignore: (忽略)
19
+ no_followers: 您目前还没有任何的追随者
20
+ no_friends: 您目前还没有任何朋友
21
+ not_following_anyone: 您目前没有任何人后
22
+ problem_adding_follow: "有问题还{{user}}到您的后续名单。请再试一次。"
23
+ problem_sending_friend_request: "有问题的朋友发送请求{{user}}.请再试一次。"
24
+ removed_friendship: 删除朋友关系
25
+ same_inviter_error_message: "用户不能成为朋友themself 。"
26
+ sign_up_to_follow: 注册后续
27
+ start_following: 启动后
28
+ stop_being_friends: 不再是朋友
29
+ stop_following: 停止后
30
+ view_all: 查看全部
31
+ you_are_now_following: "您现在以下{{user}}"
@@ -0,0 +1,31 @@
1
+ ---
2
+ zh-TW:
3
+ muck:
4
+ activity_templates:
5
+ follow: 追隨者
6
+ friends_with: 朋友們
7
+ friends:
8
+ acccept_friend_request: 接受好友請求
9
+ accept: (接受)
10
+ delete: (刪除)
11
+ follow_activity: "{{inviter}} is now following {{invited}}"
12
+ following_you: "{{name}} is now following you on {{application_name}}"
13
+ friend_request: 朋友的要求
14
+ friend_request_pending: "朋友的要求待{{link}}"
15
+ friend_request_sent: 朋友要求傳送
16
+ friends_title: 我的朋友
17
+ friends_with: "{{inviter}} is now friends with {{invited}}"
18
+ ignore: (忽略)
19
+ no_followers: 您目前還沒有任何的追隨者
20
+ no_friends: 您目前還沒有任何朋友
21
+ not_following_anyone: 您目前沒有任何人後
22
+ problem_adding_follow: "有問題還{{user}}到您的後續名單。請再試一次。"
23
+ problem_sending_friend_request: "有問題的朋友發送請求{{user}}.請再試一次。"
24
+ removed_friendship: 刪除朋友關係
25
+ same_inviter_error_message: "用戶不能成為朋友themself 。"
26
+ sign_up_to_follow: 註冊後續
27
+ start_following: 啟動後
28
+ stop_being_friends: 不再是朋友
29
+ stop_following: 停止後
30
+ view_all: 查看全部
31
+ you_are_now_following: "您現在以下{{user}}"
@@ -0,0 +1,31 @@
1
+ ---
2
+ zh:
3
+ muck:
4
+ activity_templates:
5
+ follow: 追随者
6
+ friends_with: 朋友们
7
+ friends:
8
+ acccept_friend_request: 接受好友请求
9
+ accept: (接受)
10
+ delete: (删除)
11
+ follow_activity: "{{inviter}} is now following {{invited}}"
12
+ following_you: "{{name}} is now following you on {{application_name}}"
13
+ friend_request: 朋友的要求
14
+ friend_request_pending: "朋友的要求待{{link}}"
15
+ friend_request_sent: 朋友要求传送
16
+ friends_title: 我的朋友
17
+ friends_with: "{{inviter}} is now friends with {{invited}}"
18
+ ignore: (忽略)
19
+ no_followers: 您目前还没有任何的追随者
20
+ no_friends: 您目前还没有任何朋友
21
+ not_following_anyone: 您目前没有任何人后
22
+ problem_adding_follow: "有问题还{{user}}到您的后续名单。请再试一次。"
23
+ problem_sending_friend_request: "有问题的朋友发送请求{{user}}.请再试一次。"
24
+ removed_friendship: 删除朋友关系
25
+ same_inviter_error_message: "用户不能成为朋友themself 。"
26
+ sign_up_to_follow: 注册后续
27
+ start_following: 启动后
28
+ stop_being_friends: 不再是朋友
29
+ stop_following: 停止后
30
+ view_all: 查看全部
31
+ you_are_now_following: "您现在以下{{user}}"
@@ -0,0 +1,381 @@
1
+ # -*- encoding: utf-8 -*-
2
+
3
+ Gem::Specification.new do |s|
4
+ s.name = %q{muck-friends}
5
+ s.version = "0.1.1"
6
+
7
+ s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
8
+ s.authors = ["Justin Ball"]
9
+ s.date = %q{2009-07-07}
10
+ s.description = %q{Friend engine for the muck system.}
11
+ s.email = %q{justinball@gmail.com}
12
+ s.extra_rdoc_files = [
13
+ "README.rdoc"
14
+ ]
15
+ s.files = [
16
+ ".gitignore",
17
+ "MIT-LICENSE",
18
+ "README.rdoc",
19
+ "Rakefile",
20
+ "VERSION",
21
+ "app/controllers/muck/friends_controller.rb",
22
+ "app/helpers/muck_friends_helper.rb",
23
+ "app/models/friend_mailer.rb",
24
+ "app/views/activity_templates/follow.html.erb",
25
+ "app/views/activity_templates/friends_with.html.erb",
26
+ "app/views/friend_mailer/follow.text.html.erb",
27
+ "app/views/friend_mailer/follow.text.plain.erb",
28
+ "app/views/friend_mailer/friend_request.text.html.erb",
29
+ "app/views/friend_mailer/friend_request.text.plain.erb",
30
+ "app/views/friends/_friend_simple.html.erb",
31
+ "app/views/friends/_friends.html.erb",
32
+ "app/views/friends/_notifications.html.erb",
33
+ "app/views/friends/friend_or_follow_request.html.erb",
34
+ "app/views/friends/index.html.erb",
35
+ "config/muck_friends_routes.rb",
36
+ "db/migrate/20090608073052_create_friends.rb",
37
+ "install.rb",
38
+ "lib/active_record/acts/muck_friend.rb",
39
+ "lib/active_record/acts/muck_friend_user.rb",
40
+ "lib/muck_friends.rb",
41
+ "lib/muck_friends/initialize_routes.rb",
42
+ "lib/muck_friends/tasks.rb",
43
+ "locales/ar.yml",
44
+ "locales/bg.yml",
45
+ "locales/ca.yml",
46
+ "locales/cs.yml",
47
+ "locales/da.yml",
48
+ "locales/de.yml",
49
+ "locales/el.yml",
50
+ "locales/en.yml",
51
+ "locales/es.yml",
52
+ "locales/et.yml",
53
+ "locales/fa.yml",
54
+ "locales/fi.yml",
55
+ "locales/fr.yml",
56
+ "locales/gl.yml",
57
+ "locales/hi.yml",
58
+ "locales/hr.yml",
59
+ "locales/hu.yml",
60
+ "locales/id.yml",
61
+ "locales/it.yml",
62
+ "locales/iw.yml",
63
+ "locales/ja.yml",
64
+ "locales/ko.yml",
65
+ "locales/lt.yml",
66
+ "locales/lv.yml",
67
+ "locales/mt.yml",
68
+ "locales/nl.yml",
69
+ "locales/no.yml",
70
+ "locales/pl.yml",
71
+ "locales/pt-PT.yml",
72
+ "locales/pt.yml",
73
+ "locales/ro.yml",
74
+ "locales/ru.yml",
75
+ "locales/sk.yml",
76
+ "locales/sl.yml",
77
+ "locales/sq.yml",
78
+ "locales/sr.yml",
79
+ "locales/sv.yml",
80
+ "locales/th.yml",
81
+ "locales/tl.yml",
82
+ "locales/tr.yml",
83
+ "locales/uk.yml",
84
+ "locales/vi.yml",
85
+ "locales/zh-CN.yml",
86
+ "locales/zh-TW.yml",
87
+ "locales/zh.yml",
88
+ "muck-friends.gemspec",
89
+ "rails/init.rb",
90
+ "tasks/rails.rake",
91
+ "test/rails_root/.gitignore",
92
+ "test/rails_root/.rake_tasks",
93
+ "test/rails_root/Capfile",
94
+ "test/rails_root/Rakefile",
95
+ "test/rails_root/app/controllers/application_controller.rb",
96
+ "test/rails_root/app/controllers/default_controller.rb",
97
+ "test/rails_root/app/helpers/application_helper.rb",
98
+ "test/rails_root/app/models/.keep",
99
+ "test/rails_root/app/models/activity.rb",
100
+ "test/rails_root/app/models/friend.rb",
101
+ "test/rails_root/app/models/user.rb",
102
+ "test/rails_root/app/models/user_session.rb",
103
+ "test/rails_root/app/views/default/index.html.erb",
104
+ "test/rails_root/app/views/layouts/default.html.erb",
105
+ "test/rails_root/config/amazon_s3.yml",
106
+ "test/rails_root/config/boot.rb",
107
+ "test/rails_root/config/database.yml",
108
+ "test/rails_root/config/environment.rb",
109
+ "test/rails_root/config/environments/development.rb",
110
+ "test/rails_root/config/environments/production.rb",
111
+ "test/rails_root/config/environments/test.rb",
112
+ "test/rails_root/config/global_config.yml",
113
+ "test/rails_root/config/initializers/inflections.rb",
114
+ "test/rails_root/config/initializers/mime_types.rb",
115
+ "test/rails_root/config/initializers/requires.rb",
116
+ "test/rails_root/config/initializers/session_store.rb",
117
+ "test/rails_root/config/routes.rb",
118
+ "test/rails_root/db/.keep",
119
+ "test/rails_root/db/migrate/20090320174818_create_muck_permissions_and_roles.rb",
120
+ "test/rails_root/db/migrate/20090402033319_add_muck_activities.rb",
121
+ "test/rails_root/db/migrate/20090602041838_create_users.rb",
122
+ "test/rails_root/db/migrate/20090608073052_create_friends.rb",
123
+ "test/rails_root/features/step_definitions/webrat_steps.rb",
124
+ "test/rails_root/features/support/env.rb",
125
+ "test/rails_root/public/.htaccess",
126
+ "test/rails_root/public/404.html",
127
+ "test/rails_root/public/422.html",
128
+ "test/rails_root/public/500.html",
129
+ "test/rails_root/public/dispatch.rb",
130
+ "test/rails_root/public/favicon.ico",
131
+ "test/rails_root/public/images/arrow_left.gif",
132
+ "test/rails_root/public/images/arrow_right.gif",
133
+ "test/rails_root/public/images/blue/preview.gif",
134
+ "test/rails_root/public/images/icons/accept.png",
135
+ "test/rails_root/public/images/icons/add.png",
136
+ "test/rails_root/public/images/icons/delete.png",
137
+ "test/rails_root/public/images/icons/vote.png",
138
+ "test/rails_root/public/images/loading.gif",
139
+ "test/rails_root/public/images/profile_default.jpg",
140
+ "test/rails_root/public/images/rails.png",
141
+ "test/rails_root/public/images/red/preview.gif",
142
+ "test/rails_root/public/images/spinner.gif",
143
+ "test/rails_root/public/images/sprites.png",
144
+ "test/rails_root/public/javascripts/application.js",
145
+ "test/rails_root/public/javascripts/builder.js",
146
+ "test/rails_root/public/javascripts/controls.js",
147
+ "test/rails_root/public/javascripts/dragdrop.js",
148
+ "test/rails_root/public/javascripts/effects.js",
149
+ "test/rails_root/public/javascripts/fancyzoom.min.js",
150
+ "test/rails_root/public/javascripts/jquery/jquery-ui.js",
151
+ "test/rails_root/public/javascripts/jquery/jquery.form.js",
152
+ "test/rails_root/public/javascripts/jquery/jquery.jgrowl.js",
153
+ "test/rails_root/public/javascripts/jquery/jquery.js",
154
+ "test/rails_root/public/javascripts/jquery/jquery.tips.js",
155
+ "test/rails_root/public/javascripts/muck.js",
156
+ "test/rails_root/public/javascripts/muck_activities.js",
157
+ "test/rails_root/public/javascripts/prototype.js",
158
+ "test/rails_root/public/javascripts/scriptaculous.js",
159
+ "test/rails_root/public/javascripts/slider.js",
160
+ "test/rails_root/public/javascripts/sound.js",
161
+ "test/rails_root/public/robots.txt",
162
+ "test/rails_root/public/stylesheets/.keep",
163
+ "test/rails_root/public/stylesheets/admin.css",
164
+ "test/rails_root/public/stylesheets/blueprint/ie.css",
165
+ "test/rails_root/public/stylesheets/blueprint/liquid_screen.css",
166
+ "test/rails_root/public/stylesheets/blueprint/plugins/buttons/icons/cross.png",
167
+ "test/rails_root/public/stylesheets/blueprint/plugins/buttons/icons/key.png",
168
+ "test/rails_root/public/stylesheets/blueprint/plugins/buttons/icons/tick.png",
169
+ "test/rails_root/public/stylesheets/blueprint/plugins/buttons/readme.txt",
170
+ "test/rails_root/public/stylesheets/blueprint/plugins/buttons/screen.css",
171
+ "test/rails_root/public/stylesheets/blueprint/plugins/fancy-type/readme.txt",
172
+ "test/rails_root/public/stylesheets/blueprint/plugins/fancy-type/screen.css",
173
+ "test/rails_root/public/stylesheets/blueprint/plugins/link-icons/icons/doc.png",
174
+ "test/rails_root/public/stylesheets/blueprint/plugins/link-icons/icons/email.png",
175
+ "test/rails_root/public/stylesheets/blueprint/plugins/link-icons/icons/external.png",
176
+ "test/rails_root/public/stylesheets/blueprint/plugins/link-icons/icons/feed.png",
177
+ "test/rails_root/public/stylesheets/blueprint/plugins/link-icons/icons/im.png",
178
+ "test/rails_root/public/stylesheets/blueprint/plugins/link-icons/icons/pdf.png",
179
+ "test/rails_root/public/stylesheets/blueprint/plugins/link-icons/icons/visited.png",
180
+ "test/rails_root/public/stylesheets/blueprint/plugins/link-icons/icons/xls.png",
181
+ "test/rails_root/public/stylesheets/blueprint/plugins/link-icons/readme.txt",
182
+ "test/rails_root/public/stylesheets/blueprint/plugins/link-icons/screen.css",
183
+ "test/rails_root/public/stylesheets/blueprint/plugins/liquid/liquid.css",
184
+ "test/rails_root/public/stylesheets/blueprint/plugins/liquid/src/liquid.css",
185
+ "test/rails_root/public/stylesheets/blueprint/plugins/rtl/readme.txt",
186
+ "test/rails_root/public/stylesheets/blueprint/plugins/rtl/screen.css",
187
+ "test/rails_root/public/stylesheets/blueprint/print.css",
188
+ "test/rails_root/public/stylesheets/blueprint/screen.css",
189
+ "test/rails_root/public/stylesheets/blueprint/sprite.css",
190
+ "test/rails_root/public/stylesheets/blueprint/src/forms.css",
191
+ "test/rails_root/public/stylesheets/blueprint/src/grid.css",
192
+ "test/rails_root/public/stylesheets/blueprint/src/grid.png",
193
+ "test/rails_root/public/stylesheets/blueprint/src/ie.css",
194
+ "test/rails_root/public/stylesheets/blueprint/src/print.css",
195
+ "test/rails_root/public/stylesheets/blueprint/src/reset.css",
196
+ "test/rails_root/public/stylesheets/blueprint/src/typography.css",
197
+ "test/rails_root/public/stylesheets/jquery/cupertino/images/ui-bg_diagonals-small_0_aaaaaa_40x40.png",
198
+ "test/rails_root/public/stylesheets/jquery/cupertino/images/ui-bg_diagonals-thick_15_444444_40x40.png",
199
+ "test/rails_root/public/stylesheets/jquery/cupertino/images/ui-bg_glass_100_f0f0f0_1x400.png",
200
+ "test/rails_root/public/stylesheets/jquery/cupertino/images/ui-bg_glass_50_99c2ff_1x400.png",
201
+ "test/rails_root/public/stylesheets/jquery/cupertino/images/ui-bg_glass_55_fbf5d0_1x400.png",
202
+ "test/rails_root/public/stylesheets/jquery/cupertino/images/ui-bg_glass_80_e6e6e6_1x400.png",
203
+ "test/rails_root/public/stylesheets/jquery/cupertino/images/ui-bg_glass_95_fef1ec_1x400.png",
204
+ "test/rails_root/public/stylesheets/jquery/cupertino/images/ui-bg_highlight-hard_100_f9f9f9_1x100.png",
205
+ "test/rails_root/public/stylesheets/jquery/cupertino/images/ui-bg_highlight-soft_100_e7eef3_1x100.png",
206
+ "test/rails_root/public/stylesheets/jquery/cupertino/images/ui-icons_222222_256x240.png",
207
+ "test/rails_root/public/stylesheets/jquery/cupertino/images/ui-icons_2694e8_256x240.png",
208
+ "test/rails_root/public/stylesheets/jquery/cupertino/images/ui-icons_2e83ff_256x240.png",
209
+ "test/rails_root/public/stylesheets/jquery/cupertino/images/ui-icons_72a7cf_256x240.png",
210
+ "test/rails_root/public/stylesheets/jquery/cupertino/images/ui-icons_888888_256x240.png",
211
+ "test/rails_root/public/stylesheets/jquery/cupertino/images/ui-icons_cd0a0a_256x240.png",
212
+ "test/rails_root/public/stylesheets/jquery/cupertino/images/ui-icons_ffffff_256x240.png",
213
+ "test/rails_root/public/stylesheets/jquery/cupertino/jquery-ui-1.7.1.custom.css",
214
+ "test/rails_root/public/stylesheets/jquery/redmond/images/ui-bg_flat_0_aaaaaa_40x100.png",
215
+ "test/rails_root/public/stylesheets/jquery/redmond/images/ui-bg_flat_55_fbec88_40x100.png",
216
+ "test/rails_root/public/stylesheets/jquery/redmond/images/ui-bg_glass_75_d0e5f5_1x400.png",
217
+ "test/rails_root/public/stylesheets/jquery/redmond/images/ui-bg_glass_85_dfeffc_1x400.png",
218
+ "test/rails_root/public/stylesheets/jquery/redmond/images/ui-bg_glass_95_fef1ec_1x400.png",
219
+ "test/rails_root/public/stylesheets/jquery/redmond/images/ui-bg_gloss-wave_55_5c9ccc_500x100.png",
220
+ "test/rails_root/public/stylesheets/jquery/redmond/images/ui-bg_inset-hard_100_f5f8f9_1x100.png",
221
+ "test/rails_root/public/stylesheets/jquery/redmond/images/ui-bg_inset-hard_100_fcfdfd_1x100.png",
222
+ "test/rails_root/public/stylesheets/jquery/redmond/images/ui-icons_217bc0_256x240.png",
223
+ "test/rails_root/public/stylesheets/jquery/redmond/images/ui-icons_2e83ff_256x240.png",
224
+ "test/rails_root/public/stylesheets/jquery/redmond/images/ui-icons_469bdd_256x240.png",
225
+ "test/rails_root/public/stylesheets/jquery/redmond/images/ui-icons_6da8d5_256x240.png",
226
+ "test/rails_root/public/stylesheets/jquery/redmond/images/ui-icons_cd0a0a_256x240.png",
227
+ "test/rails_root/public/stylesheets/jquery/redmond/images/ui-icons_d8e7f3_256x240.png",
228
+ "test/rails_root/public/stylesheets/jquery/redmond/images/ui-icons_f9bd01_256x240.png",
229
+ "test/rails_root/public/stylesheets/jquery/redmond/jquery-ui-1.7.1.custom.css",
230
+ "test/rails_root/public/stylesheets/jquery/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png",
231
+ "test/rails_root/public/stylesheets/jquery/smoothness/images/ui-bg_flat_75_ffffff_40x100.png",
232
+ "test/rails_root/public/stylesheets/jquery/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png",
233
+ "test/rails_root/public/stylesheets/jquery/smoothness/images/ui-bg_glass_65_ffffff_1x400.png",
234
+ "test/rails_root/public/stylesheets/jquery/smoothness/images/ui-bg_glass_75_dadada_1x400.png",
235
+ "test/rails_root/public/stylesheets/jquery/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png",
236
+ "test/rails_root/public/stylesheets/jquery/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png",
237
+ "test/rails_root/public/stylesheets/jquery/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png",
238
+ "test/rails_root/public/stylesheets/jquery/smoothness/images/ui-icons_222222_256x240.png",
239
+ "test/rails_root/public/stylesheets/jquery/smoothness/images/ui-icons_2e83ff_256x240.png",
240
+ "test/rails_root/public/stylesheets/jquery/smoothness/images/ui-icons_454545_256x240.png",
241
+ "test/rails_root/public/stylesheets/jquery/smoothness/images/ui-icons_888888_256x240.png",
242
+ "test/rails_root/public/stylesheets/jquery/smoothness/images/ui-icons_cd0a0a_256x240.png",
243
+ "test/rails_root/public/stylesheets/jquery/smoothness/jquery-ui-1.7.1.custom.css",
244
+ "test/rails_root/public/stylesheets/jquery/ui-lightness/images/ui-bg_diagonals-thick_18_b81900_40x40.png",
245
+ "test/rails_root/public/stylesheets/jquery/ui-lightness/images/ui-bg_diagonals-thick_20_666666_40x40.png",
246
+ "test/rails_root/public/stylesheets/jquery/ui-lightness/images/ui-bg_flat_10_000000_40x100.png",
247
+ "test/rails_root/public/stylesheets/jquery/ui-lightness/images/ui-bg_glass_100_f6f6f6_1x400.png",
248
+ "test/rails_root/public/stylesheets/jquery/ui-lightness/images/ui-bg_glass_100_fdf5ce_1x400.png",
249
+ "test/rails_root/public/stylesheets/jquery/ui-lightness/images/ui-bg_glass_65_ffffff_1x400.png",
250
+ "test/rails_root/public/stylesheets/jquery/ui-lightness/images/ui-bg_gloss-wave_35_f6a828_500x100.png",
251
+ "test/rails_root/public/stylesheets/jquery/ui-lightness/images/ui-bg_highlight-soft_100_eeeeee_1x100.png",
252
+ "test/rails_root/public/stylesheets/jquery/ui-lightness/images/ui-bg_highlight-soft_75_ffe45c_1x100.png",
253
+ "test/rails_root/public/stylesheets/jquery/ui-lightness/images/ui-icons_222222_256x240.png",
254
+ "test/rails_root/public/stylesheets/jquery/ui-lightness/images/ui-icons_228ef1_256x240.png",
255
+ "test/rails_root/public/stylesheets/jquery/ui-lightness/images/ui-icons_ef8c08_256x240.png",
256
+ "test/rails_root/public/stylesheets/jquery/ui-lightness/images/ui-icons_ffd27a_256x240.png",
257
+ "test/rails_root/public/stylesheets/jquery/ui-lightness/images/ui-icons_ffffff_256x240.png",
258
+ "test/rails_root/public/stylesheets/jquery/ui-lightness/jquery-ui-1.7.1.custom.css",
259
+ "test/rails_root/public/stylesheets/reset.css",
260
+ "test/rails_root/public/stylesheets/styles.css",
261
+ "test/rails_root/public/stylesheets/themes/blue/styles.css",
262
+ "test/rails_root/public/stylesheets/themes/red/styles.css",
263
+ "test/rails_root/script/about",
264
+ "test/rails_root/script/breakpointer",
265
+ "test/rails_root/script/console",
266
+ "test/rails_root/script/create_project.rb",
267
+ "test/rails_root/script/cucumber",
268
+ "test/rails_root/script/dbconsole",
269
+ "test/rails_root/script/destroy",
270
+ "test/rails_root/script/generate",
271
+ "test/rails_root/script/performance/benchmarker",
272
+ "test/rails_root/script/performance/profiler",
273
+ "test/rails_root/script/performance/request",
274
+ "test/rails_root/script/plugin",
275
+ "test/rails_root/script/process/inspector",
276
+ "test/rails_root/script/process/reaper",
277
+ "test/rails_root/script/process/spawner",
278
+ "test/rails_root/script/runner",
279
+ "test/rails_root/script/server",
280
+ "test/rails_root/test/factories.rb",
281
+ "test/rails_root/test/functional/.keep",
282
+ "test/rails_root/test/functional/friends_controller_test.rb",
283
+ "test/rails_root/test/integration/.keep",
284
+ "test/rails_root/test/mocks/development/.keep",
285
+ "test/rails_root/test/mocks/test/.keep",
286
+ "test/rails_root/test/shoulda_macros/controller.rb",
287
+ "test/rails_root/test/shoulda_macros/forms.rb",
288
+ "test/rails_root/test/shoulda_macros/models.rb",
289
+ "test/rails_root/test/shoulda_macros/pagination.rb",
290
+ "test/rails_root/test/shoulda_macros/plugins.rb",
291
+ "test/rails_root/test/test_helper.rb",
292
+ "test/rails_root/test/unit/.keep",
293
+ "test/rails_root/test/unit/friend_mailer_test.rb",
294
+ "test/rails_root/test/unit/friend_test.rb",
295
+ "test/rails_root/test/unit/user_test.rb",
296
+ "test/rails_root/vendor/plugins/ssl_requirement/README",
297
+ "test/rails_root/vendor/plugins/ssl_requirement/lib/ssl_requirement.rb",
298
+ "test/rails_root/vendor/plugins/ssl_requirement/test/ssl_requirement_test.rb",
299
+ "test/rails_root/vendor/plugins/validation_reflection/CHANGELOG",
300
+ "test/rails_root/vendor/plugins/validation_reflection/LICENSE",
301
+ "test/rails_root/vendor/plugins/validation_reflection/README",
302
+ "test/rails_root/vendor/plugins/validation_reflection/Rakefile",
303
+ "test/rails_root/vendor/plugins/validation_reflection/about.yml",
304
+ "test/rails_root/vendor/plugins/validation_reflection/init.rb",
305
+ "test/rails_root/vendor/plugins/validation_reflection/lib/boiler_plate/validation_reflection.rb",
306
+ "test/rails_root/vendor/plugins/validation_reflection/test/test_helper.rb",
307
+ "test/rails_root/vendor/plugins/validation_reflection/test/validation_reflection_test.rb",
308
+ "uninstall.rb"
309
+ ]
310
+ s.has_rdoc = true
311
+ s.homepage = %q{http://github.com/jbasdf/muck_friends}
312
+ s.rdoc_options = ["--charset=UTF-8"]
313
+ s.require_paths = ["lib"]
314
+ s.rubyforge_project = %q{muck-friends}
315
+ s.rubygems_version = %q{1.3.1}
316
+ s.summary = %q{Friends engine for the muck system}
317
+ s.test_files = [
318
+ "test/rails_root/app/controllers/application_controller.rb",
319
+ "test/rails_root/app/controllers/default_controller.rb",
320
+ "test/rails_root/app/helpers/application_helper.rb",
321
+ "test/rails_root/app/models/activity.rb",
322
+ "test/rails_root/app/models/friend.rb",
323
+ "test/rails_root/app/models/user.rb",
324
+ "test/rails_root/app/models/user_session.rb",
325
+ "test/rails_root/config/boot.rb",
326
+ "test/rails_root/config/environment.rb",
327
+ "test/rails_root/config/environments/development.rb",
328
+ "test/rails_root/config/environments/production.rb",
329
+ "test/rails_root/config/environments/test.rb",
330
+ "test/rails_root/config/initializers/inflections.rb",
331
+ "test/rails_root/config/initializers/mime_types.rb",
332
+ "test/rails_root/config/initializers/requires.rb",
333
+ "test/rails_root/config/initializers/session_store.rb",
334
+ "test/rails_root/config/routes.rb",
335
+ "test/rails_root/db/migrate/20090320174818_create_muck_permissions_and_roles.rb",
336
+ "test/rails_root/db/migrate/20090402033319_add_muck_activities.rb",
337
+ "test/rails_root/db/migrate/20090602041838_create_users.rb",
338
+ "test/rails_root/db/migrate/20090608073052_create_friends.rb",
339
+ "test/rails_root/db/schema.rb",
340
+ "test/rails_root/features/step_definitions/webrat_steps.rb",
341
+ "test/rails_root/features/support/env.rb",
342
+ "test/rails_root/public/dispatch.rb",
343
+ "test/rails_root/script/create_project.rb",
344
+ "test/rails_root/test/factories.rb",
345
+ "test/rails_root/test/functional/friends_controller_test.rb",
346
+ "test/rails_root/test/shoulda_macros/controller.rb",
347
+ "test/rails_root/test/shoulda_macros/forms.rb",
348
+ "test/rails_root/test/shoulda_macros/models.rb",
349
+ "test/rails_root/test/shoulda_macros/pagination.rb",
350
+ "test/rails_root/test/shoulda_macros/plugins.rb",
351
+ "test/rails_root/test/test_helper.rb",
352
+ "test/rails_root/test/unit/friend_mailer_test.rb",
353
+ "test/rails_root/test/unit/friend_test.rb",
354
+ "test/rails_root/test/unit/user_test.rb",
355
+ "test/rails_root/vendor/plugins/ssl_requirement/lib/ssl_requirement.rb",
356
+ "test/rails_root/vendor/plugins/ssl_requirement/test/ssl_requirement_test.rb",
357
+ "test/rails_root/vendor/plugins/validation_reflection/init.rb",
358
+ "test/rails_root/vendor/plugins/validation_reflection/lib/boiler_plate/validation_reflection.rb",
359
+ "test/rails_root/vendor/plugins/validation_reflection/test/test_helper.rb",
360
+ "test/rails_root/vendor/plugins/validation_reflection/test/validation_reflection_test.rb"
361
+ ]
362
+
363
+ if s.respond_to? :specification_version then
364
+ current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
365
+ s.specification_version = 2
366
+
367
+ if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
368
+ s.add_runtime_dependency(%q<muck-engine>, [">= 0"])
369
+ s.add_runtime_dependency(%q<muck-users>, [">= 0"])
370
+ s.add_runtime_dependency(%q<muck-profiles>, [">= 0"])
371
+ else
372
+ s.add_dependency(%q<muck-engine>, [">= 0"])
373
+ s.add_dependency(%q<muck-users>, [">= 0"])
374
+ s.add_dependency(%q<muck-profiles>, [">= 0"])
375
+ end
376
+ else
377
+ s.add_dependency(%q<muck-engine>, [">= 0"])
378
+ s.add_dependency(%q<muck-users>, [">= 0"])
379
+ s.add_dependency(%q<muck-profiles>, [">= 0"])
380
+ end
381
+ end