paper_trail_manager 0.1.6 → 0.2.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (331) hide show
  1. data/.gitignore +7 -0
  2. data/.travis.yml +6 -0
  3. data/CHANGES.md +37 -0
  4. data/Gemfile +1 -18
  5. data/Gemfile.lock +60 -98
  6. data/README.md +23 -0
  7. data/Rakefile +10 -25
  8. data/VERSION +1 -1
  9. data/paper_trail_manager.gemspec +322 -93
  10. data/rails_test/Rakefile +90 -0
  11. data/{spec/dummy → rails_test/common}/app/controllers/application_controller.rb +0 -0
  12. data/{spec/dummy → rails_test/common}/app/controllers/entities_controller.rb +0 -0
  13. data/{spec/dummy → rails_test/common}/app/controllers/platforms_controller.rb +0 -0
  14. data/{spec/dummy → rails_test/common}/app/helpers/application_helper.rb +0 -0
  15. data/{spec/dummy → rails_test/common}/app/helpers/entities_helper.rb +0 -0
  16. data/{spec/dummy → rails_test/common}/app/helpers/platforms_helper.rb +0 -0
  17. data/{spec/dummy → rails_test/common}/app/models/entity.rb +2 -0
  18. data/{spec/dummy → rails_test/common}/app/models/platform.rb +2 -0
  19. data/{spec/dummy → rails_test/common}/app/views/application/index.html.erb +0 -0
  20. data/{spec/dummy → rails_test/common}/app/views/entities/_form.html.erb +0 -0
  21. data/{spec/dummy → rails_test/common}/app/views/entities/edit.html.erb +0 -0
  22. data/{spec/dummy → rails_test/common}/app/views/entities/index.html.erb +0 -0
  23. data/{spec/dummy → rails_test/common}/app/views/entities/new.html.erb +0 -0
  24. data/{spec/dummy → rails_test/common}/app/views/entities/show.html.erb +0 -0
  25. data/{spec/dummy → rails_test/common}/app/views/layouts/application.html.erb +0 -0
  26. data/{spec/dummy → rails_test/common}/app/views/platforms/_form.html.erb +0 -0
  27. data/{spec/dummy → rails_test/common}/app/views/platforms/edit.html.erb +0 -0
  28. data/{spec/dummy → rails_test/common}/app/views/platforms/index.html.erb +0 -0
  29. data/{spec/dummy → rails_test/common}/app/views/platforms/new.html.erb +0 -0
  30. data/{spec/dummy → rails_test/common}/app/views/platforms/show.html.erb +0 -0
  31. data/{spec/dummy → rails_test/common}/config/database.yml +0 -0
  32. data/{spec/dummy → rails_test/common}/db/migrate/20110228091428_create_entities.rb +0 -0
  33. data/{spec/dummy → rails_test/common}/db/migrate/20110228093241_create_platforms.rb +0 -0
  34. data/{spec/dummy → rails_test/common}/db/migrate/20110228094444_create_versions.rb +0 -0
  35. data/{spec/dummy → rails_test/common}/spec/controllers/entities_controller_spec.rb +0 -0
  36. data/{spec/dummy → rails_test/common}/spec/controllers/platforms_controller_spec.rb +0 -0
  37. data/{spec/dummy → rails_test/common}/spec/helpers/entities_helper_spec.rb +0 -0
  38. data/{spec/dummy → rails_test/common}/spec/helpers/platforms_helper_spec.rb +0 -0
  39. data/{spec/dummy → rails_test/common}/spec/integration/navigation_spec.rb +1 -1
  40. data/{spec/dummy → rails_test/common}/spec/integration/paper_trail_manager_spec.rb +28 -21
  41. data/{spec/dummy → rails_test/common}/spec/models/entity_spec.rb +0 -0
  42. data/{spec/dummy → rails_test/common}/spec/models/platform_spec.rb +0 -0
  43. data/{spec/dummy → rails_test/common}/spec/requests/entities_spec.rb +0 -0
  44. data/{spec/dummy → rails_test/common}/spec/requests/platforms_spec.rb +0 -0
  45. data/{spec/dummy → rails_test/common}/spec/routing/entities_routing_spec.rb +0 -0
  46. data/{spec/dummy → rails_test/common}/spec/routing/platforms_routing_spec.rb +0 -0
  47. data/rails_test/common/spec/spec_helper.rb +32 -0
  48. data/{spec → rails_test/common/spec}/support/factories.rb +0 -0
  49. data/{spec/dummy → rails_test/common}/spec/views/entities/edit.html.erb_spec.rb +0 -0
  50. data/{spec/dummy → rails_test/common}/spec/views/entities/index.html.erb_spec.rb +0 -0
  51. data/{spec/dummy → rails_test/common}/spec/views/entities/new.html.erb_spec.rb +0 -0
  52. data/{spec/dummy → rails_test/common}/spec/views/entities/show.html.erb_spec.rb +0 -0
  53. data/{spec/dummy → rails_test/common}/spec/views/platforms/edit.html.erb_spec.rb +0 -0
  54. data/{spec/dummy → rails_test/common}/spec/views/platforms/index.html.erb_spec.rb +0 -0
  55. data/{spec/dummy → rails_test/common}/spec/views/platforms/new.html.erb_spec.rb +0 -0
  56. data/{spec/dummy → rails_test/common}/spec/views/platforms/show.html.erb_spec.rb +0 -0
  57. data/rails_test/generate_test_directory +59 -0
  58. data/rails_test/rails-3.0.17/.gitignore +4 -0
  59. data/rails_test/rails-3.0.17/README +256 -0
  60. data/{spec/dummy → rails_test/rails-3.0.17}/Rakefile +1 -1
  61. data/rails_test/rails-3.0.17/app/controllers/application_controller.rb +6 -0
  62. data/rails_test/rails-3.0.17/app/controllers/entities_controller.rb +83 -0
  63. data/rails_test/rails-3.0.17/app/controllers/platforms_controller.rb +83 -0
  64. data/rails_test/rails-3.0.17/app/helpers/application_helper.rb +2 -0
  65. data/rails_test/rails-3.0.17/app/helpers/entities_helper.rb +2 -0
  66. data/rails_test/rails-3.0.17/app/helpers/platforms_helper.rb +2 -0
  67. data/rails_test/rails-3.0.17/app/models/entity.rb +8 -0
  68. data/rails_test/rails-3.0.17/app/models/platform.rb +8 -0
  69. data/rails_test/rails-3.0.17/app/views/application/index.html.erb +6 -0
  70. data/rails_test/rails-3.0.17/app/views/entities/_form.html.erb +17 -0
  71. data/rails_test/rails-3.0.17/app/views/entities/edit.html.erb +6 -0
  72. data/rails_test/rails-3.0.17/app/views/entities/index.html.erb +21 -0
  73. data/rails_test/rails-3.0.17/app/views/entities/new.html.erb +5 -0
  74. data/rails_test/rails-3.0.17/app/views/entities/show.html.erb +5 -0
  75. data/rails_test/rails-3.0.17/app/views/layouts/application.html.erb +14 -0
  76. data/rails_test/rails-3.0.17/app/views/platforms/_form.html.erb +17 -0
  77. data/rails_test/rails-3.0.17/app/views/platforms/edit.html.erb +6 -0
  78. data/rails_test/rails-3.0.17/app/views/platforms/index.html.erb +21 -0
  79. data/rails_test/rails-3.0.17/app/views/platforms/new.html.erb +5 -0
  80. data/rails_test/rails-3.0.17/app/views/platforms/show.html.erb +5 -0
  81. data/rails_test/rails-3.0.17/config.ru +4 -0
  82. data/{spec/dummy → rails_test/rails-3.0.17}/config/application.rb +5 -8
  83. data/rails_test/rails-3.0.17/config/boot.rb +6 -0
  84. data/rails_test/rails-3.0.17/config/database.yml +22 -0
  85. data/rails_test/rails-3.0.17/config/environment.rb +5 -0
  86. data/{spec/dummy → rails_test/rails-3.0.17}/config/environments/development.rb +1 -1
  87. data/{spec/dummy → rails_test/rails-3.0.17}/config/environments/production.rb +1 -1
  88. data/{spec/dummy → rails_test/rails-3.0.17}/config/environments/test.rb +1 -1
  89. data/{spec/dummy → rails_test/rails-3.0.17}/config/initializers/backtrace_silencers.rb +0 -0
  90. data/{spec/dummy → rails_test/rails-3.0.17}/config/initializers/inflections.rb +0 -0
  91. data/{spec/dummy → rails_test/rails-3.0.17}/config/initializers/mime_types.rb +0 -0
  92. data/rails_test/rails-3.0.17/config/initializers/secret_token.rb +7 -0
  93. data/rails_test/rails-3.0.17/config/initializers/session_store.rb +8 -0
  94. data/{spec/dummy → rails_test/rails-3.0.17}/config/locales/en.yml +0 -0
  95. data/rails_test/rails-3.0.17/config/routes.rb +8 -0
  96. data/rails_test/rails-3.0.17/db/migrate/20110228091428_create_entities.rb +14 -0
  97. data/rails_test/rails-3.0.17/db/migrate/20110228093241_create_platforms.rb +14 -0
  98. data/rails_test/rails-3.0.17/db/migrate/20110228094444_create_versions.rb +18 -0
  99. data/{spec/dummy → rails_test/rails-3.0.17}/db/schema.rb +0 -0
  100. data/rails_test/rails-3.0.17/db/seeds.rb +7 -0
  101. data/rails_test/rails-3.0.17/doc/README_FOR_APP +2 -0
  102. data/{spec/dummy/public/favicon.ico → rails_test/rails-3.0.17/lib/tasks/.gitkeep} +0 -0
  103. data/{spec/dummy → rails_test/rails-3.0.17}/public/404.html +0 -0
  104. data/{spec/dummy → rails_test/rails-3.0.17}/public/422.html +0 -0
  105. data/{spec/dummy → rails_test/rails-3.0.17}/public/500.html +0 -0
  106. data/rails_test/rails-3.0.17/public/favicon.ico +0 -0
  107. data/rails_test/rails-3.0.17/public/images/rails.png +0 -0
  108. data/rails_test/rails-3.0.17/public/index.html +239 -0
  109. data/{spec/dummy → rails_test/rails-3.0.17}/public/javascripts/application.js +0 -0
  110. data/{spec/dummy → rails_test/rails-3.0.17}/public/javascripts/controls.js +0 -0
  111. data/{spec/dummy → rails_test/rails-3.0.17}/public/javascripts/dragdrop.js +0 -0
  112. data/{spec/dummy → rails_test/rails-3.0.17}/public/javascripts/effects.js +0 -0
  113. data/{spec/dummy → rails_test/rails-3.0.17}/public/javascripts/prototype.js +0 -0
  114. data/rails_test/rails-3.0.17/public/javascripts/rails.js +202 -0
  115. data/rails_test/rails-3.0.17/public/robots.txt +5 -0
  116. data/rails_test/rails-3.0.17/public/stylesheets/.gitkeep +0 -0
  117. data/{spec/dummy → rails_test/rails-3.0.17}/script/rails +0 -0
  118. data/rails_test/rails-3.0.17/spec/controllers/entities_controller_spec.rb +125 -0
  119. data/rails_test/rails-3.0.17/spec/controllers/platforms_controller_spec.rb +125 -0
  120. data/rails_test/rails-3.0.17/spec/helpers/entities_helper_spec.rb +15 -0
  121. data/rails_test/rails-3.0.17/spec/helpers/platforms_helper_spec.rb +15 -0
  122. data/rails_test/rails-3.0.17/spec/integration/navigation_spec.rb +7 -0
  123. data/rails_test/rails-3.0.17/spec/integration/paper_trail_manager_spec.rb +232 -0
  124. data/rails_test/rails-3.0.17/spec/models/entity_spec.rb +14 -0
  125. data/rails_test/rails-3.0.17/spec/models/platform_spec.rb +14 -0
  126. data/rails_test/rails-3.0.17/spec/requests/entities_spec.rb +11 -0
  127. data/rails_test/rails-3.0.17/spec/requests/platforms_spec.rb +11 -0
  128. data/rails_test/rails-3.0.17/spec/routing/entities_routing_spec.rb +35 -0
  129. data/rails_test/rails-3.0.17/spec/routing/platforms_routing_spec.rb +35 -0
  130. data/rails_test/rails-3.0.17/spec/spec_helper.rb +32 -0
  131. data/rails_test/rails-3.0.17/spec/support/factories.rb +14 -0
  132. data/rails_test/rails-3.0.17/spec/views/entities/edit.html.erb_spec.rb +15 -0
  133. data/rails_test/rails-3.0.17/spec/views/entities/index.html.erb_spec.rb +14 -0
  134. data/rails_test/rails-3.0.17/spec/views/entities/new.html.erb_spec.rb +15 -0
  135. data/rails_test/rails-3.0.17/spec/views/entities/show.html.erb_spec.rb +11 -0
  136. data/rails_test/rails-3.0.17/spec/views/platforms/edit.html.erb_spec.rb +15 -0
  137. data/rails_test/rails-3.0.17/spec/views/platforms/index.html.erb_spec.rb +14 -0
  138. data/rails_test/rails-3.0.17/spec/views/platforms/new.html.erb_spec.rb +15 -0
  139. data/rails_test/rails-3.0.17/spec/views/platforms/show.html.erb_spec.rb +11 -0
  140. data/rails_test/rails-3.0.17/test/performance/browsing_test.rb +9 -0
  141. data/rails_test/rails-3.0.17/test/test_helper.rb +13 -0
  142. data/rails_test/rails-3.0.17/vendor/plugins/.gitkeep +0 -0
  143. data/rails_test/rails-3.1.8/.gitignore +15 -0
  144. data/rails_test/rails-3.1.8/README +261 -0
  145. data/rails_test/rails-3.1.8/Rakefile +7 -0
  146. data/rails_test/rails-3.1.8/app/assets/images/rails.png +0 -0
  147. data/rails_test/rails-3.1.8/app/assets/javascripts/application.js +9 -0
  148. data/rails_test/rails-3.1.8/app/assets/stylesheets/application.css +7 -0
  149. data/rails_test/rails-3.1.8/app/controllers/application_controller.rb +6 -0
  150. data/rails_test/rails-3.1.8/app/controllers/entities_controller.rb +83 -0
  151. data/rails_test/rails-3.1.8/app/controllers/platforms_controller.rb +83 -0
  152. data/rails_test/rails-3.1.8/app/helpers/application_helper.rb +2 -0
  153. data/rails_test/rails-3.1.8/app/helpers/entities_helper.rb +2 -0
  154. data/rails_test/rails-3.1.8/app/helpers/platforms_helper.rb +2 -0
  155. data/rails_test/rails-3.1.8/app/mailers/.gitkeep +0 -0
  156. data/rails_test/rails-3.1.8/app/models/.gitkeep +0 -0
  157. data/rails_test/rails-3.1.8/app/models/entity.rb +8 -0
  158. data/rails_test/rails-3.1.8/app/models/platform.rb +8 -0
  159. data/rails_test/rails-3.1.8/app/views/application/index.html.erb +6 -0
  160. data/rails_test/rails-3.1.8/app/views/entities/_form.html.erb +17 -0
  161. data/rails_test/rails-3.1.8/app/views/entities/edit.html.erb +6 -0
  162. data/rails_test/rails-3.1.8/app/views/entities/index.html.erb +21 -0
  163. data/rails_test/rails-3.1.8/app/views/entities/new.html.erb +5 -0
  164. data/rails_test/rails-3.1.8/app/views/entities/show.html.erb +5 -0
  165. data/rails_test/rails-3.1.8/app/views/layouts/application.html.erb +14 -0
  166. data/rails_test/rails-3.1.8/app/views/platforms/_form.html.erb +17 -0
  167. data/rails_test/rails-3.1.8/app/views/platforms/edit.html.erb +6 -0
  168. data/rails_test/rails-3.1.8/app/views/platforms/index.html.erb +21 -0
  169. data/rails_test/rails-3.1.8/app/views/platforms/new.html.erb +5 -0
  170. data/rails_test/rails-3.1.8/app/views/platforms/show.html.erb +5 -0
  171. data/{spec/dummy → rails_test/rails-3.1.8}/config.ru +1 -1
  172. data/rails_test/rails-3.1.8/config/application.rb +48 -0
  173. data/rails_test/rails-3.1.8/config/boot.rb +6 -0
  174. data/rails_test/rails-3.1.8/config/database.yml +22 -0
  175. data/{spec/dummy → rails_test/rails-3.1.8}/config/environment.rb +1 -1
  176. data/rails_test/rails-3.1.8/config/environments/development.rb +30 -0
  177. data/rails_test/rails-3.1.8/config/environments/production.rb +60 -0
  178. data/rails_test/rails-3.1.8/config/environments/test.rb +39 -0
  179. data/rails_test/rails-3.1.8/config/initializers/backtrace_silencers.rb +7 -0
  180. data/rails_test/rails-3.1.8/config/initializers/inflections.rb +10 -0
  181. data/rails_test/rails-3.1.8/config/initializers/mime_types.rb +5 -0
  182. data/{spec/dummy → rails_test/rails-3.1.8}/config/initializers/secret_token.rb +1 -1
  183. data/{spec/dummy → rails_test/rails-3.1.8}/config/initializers/session_store.rb +2 -2
  184. data/rails_test/rails-3.1.8/config/initializers/wrap_parameters.rb +14 -0
  185. data/rails_test/rails-3.1.8/config/locales/en.yml +5 -0
  186. data/rails_test/rails-3.1.8/config/routes.rb +8 -0
  187. data/rails_test/rails-3.1.8/db/migrate/20110228091428_create_entities.rb +14 -0
  188. data/rails_test/rails-3.1.8/db/migrate/20110228093241_create_platforms.rb +14 -0
  189. data/rails_test/rails-3.1.8/db/migrate/20110228094444_create_versions.rb +18 -0
  190. data/rails_test/rails-3.1.8/db/schema.rb +40 -0
  191. data/rails_test/rails-3.1.8/db/seeds.rb +7 -0
  192. data/rails_test/rails-3.1.8/doc/README_FOR_APP +2 -0
  193. data/rails_test/rails-3.1.8/lib/assets/.gitkeep +0 -0
  194. data/rails_test/rails-3.1.8/lib/tasks/.gitkeep +0 -0
  195. data/rails_test/rails-3.1.8/log/.gitkeep +0 -0
  196. data/rails_test/rails-3.1.8/public/404.html +26 -0
  197. data/rails_test/rails-3.1.8/public/422.html +26 -0
  198. data/rails_test/rails-3.1.8/public/500.html +26 -0
  199. data/rails_test/rails-3.1.8/public/favicon.ico +0 -0
  200. data/rails_test/rails-3.1.8/public/index.html +241 -0
  201. data/rails_test/rails-3.1.8/public/robots.txt +5 -0
  202. data/rails_test/rails-3.1.8/script/rails +6 -0
  203. data/rails_test/rails-3.1.8/spec/controllers/entities_controller_spec.rb +125 -0
  204. data/rails_test/rails-3.1.8/spec/controllers/platforms_controller_spec.rb +125 -0
  205. data/rails_test/rails-3.1.8/spec/helpers/entities_helper_spec.rb +15 -0
  206. data/rails_test/rails-3.1.8/spec/helpers/platforms_helper_spec.rb +15 -0
  207. data/rails_test/rails-3.1.8/spec/integration/navigation_spec.rb +7 -0
  208. data/rails_test/rails-3.1.8/spec/integration/paper_trail_manager_spec.rb +232 -0
  209. data/rails_test/rails-3.1.8/spec/models/entity_spec.rb +14 -0
  210. data/rails_test/rails-3.1.8/spec/models/platform_spec.rb +14 -0
  211. data/rails_test/rails-3.1.8/spec/requests/entities_spec.rb +11 -0
  212. data/rails_test/rails-3.1.8/spec/requests/platforms_spec.rb +11 -0
  213. data/rails_test/rails-3.1.8/spec/routing/entities_routing_spec.rb +35 -0
  214. data/rails_test/rails-3.1.8/spec/routing/platforms_routing_spec.rb +35 -0
  215. data/rails_test/rails-3.1.8/spec/spec_helper.rb +32 -0
  216. data/rails_test/rails-3.1.8/spec/support/factories.rb +14 -0
  217. data/rails_test/rails-3.1.8/spec/views/entities/edit.html.erb_spec.rb +15 -0
  218. data/rails_test/rails-3.1.8/spec/views/entities/index.html.erb_spec.rb +14 -0
  219. data/rails_test/rails-3.1.8/spec/views/entities/new.html.erb_spec.rb +15 -0
  220. data/rails_test/rails-3.1.8/spec/views/entities/show.html.erb_spec.rb +11 -0
  221. data/rails_test/rails-3.1.8/spec/views/platforms/edit.html.erb_spec.rb +15 -0
  222. data/rails_test/rails-3.1.8/spec/views/platforms/index.html.erb_spec.rb +14 -0
  223. data/rails_test/rails-3.1.8/spec/views/platforms/new.html.erb_spec.rb +15 -0
  224. data/rails_test/rails-3.1.8/spec/views/platforms/show.html.erb_spec.rb +11 -0
  225. data/rails_test/rails-3.1.8/test/fixtures/.gitkeep +0 -0
  226. data/rails_test/rails-3.1.8/test/functional/.gitkeep +0 -0
  227. data/rails_test/rails-3.1.8/test/integration/.gitkeep +0 -0
  228. data/rails_test/rails-3.1.8/test/performance/browsing_test.rb +12 -0
  229. data/rails_test/rails-3.1.8/test/test_helper.rb +13 -0
  230. data/rails_test/rails-3.1.8/test/unit/.gitkeep +0 -0
  231. data/rails_test/rails-3.1.8/vendor/assets/stylesheets/.gitkeep +0 -0
  232. data/rails_test/rails-3.1.8/vendor/plugins/.gitkeep +0 -0
  233. data/rails_test/rails-3.2.8/.gitignore +15 -0
  234. data/rails_test/rails-3.2.8/README.rdoc +261 -0
  235. data/rails_test/rails-3.2.8/Rakefile +7 -0
  236. data/rails_test/rails-3.2.8/app/assets/images/rails.png +0 -0
  237. data/rails_test/rails-3.2.8/app/assets/javascripts/application.js +15 -0
  238. data/rails_test/rails-3.2.8/app/assets/stylesheets/application.css +13 -0
  239. data/rails_test/rails-3.2.8/app/controllers/application_controller.rb +6 -0
  240. data/rails_test/rails-3.2.8/app/controllers/entities_controller.rb +83 -0
  241. data/rails_test/rails-3.2.8/app/controllers/platforms_controller.rb +83 -0
  242. data/rails_test/rails-3.2.8/app/helpers/application_helper.rb +2 -0
  243. data/rails_test/rails-3.2.8/app/helpers/entities_helper.rb +2 -0
  244. data/rails_test/rails-3.2.8/app/helpers/platforms_helper.rb +2 -0
  245. data/rails_test/rails-3.2.8/app/mailers/.gitkeep +0 -0
  246. data/rails_test/rails-3.2.8/app/models/.gitkeep +0 -0
  247. data/rails_test/rails-3.2.8/app/models/entity.rb +8 -0
  248. data/rails_test/rails-3.2.8/app/models/platform.rb +8 -0
  249. data/rails_test/rails-3.2.8/app/views/application/index.html.erb +6 -0
  250. data/rails_test/rails-3.2.8/app/views/entities/_form.html.erb +17 -0
  251. data/rails_test/rails-3.2.8/app/views/entities/edit.html.erb +6 -0
  252. data/rails_test/rails-3.2.8/app/views/entities/index.html.erb +21 -0
  253. data/rails_test/rails-3.2.8/app/views/entities/new.html.erb +5 -0
  254. data/rails_test/rails-3.2.8/app/views/entities/show.html.erb +5 -0
  255. data/rails_test/rails-3.2.8/app/views/layouts/application.html.erb +14 -0
  256. data/rails_test/rails-3.2.8/app/views/platforms/_form.html.erb +17 -0
  257. data/rails_test/rails-3.2.8/app/views/platforms/edit.html.erb +6 -0
  258. data/rails_test/rails-3.2.8/app/views/platforms/index.html.erb +21 -0
  259. data/rails_test/rails-3.2.8/app/views/platforms/new.html.erb +5 -0
  260. data/rails_test/rails-3.2.8/app/views/platforms/show.html.erb +5 -0
  261. data/rails_test/rails-3.2.8/config.ru +4 -0
  262. data/rails_test/rails-3.2.8/config/application.rb +62 -0
  263. data/rails_test/rails-3.2.8/config/boot.rb +6 -0
  264. data/rails_test/rails-3.2.8/config/database.yml +22 -0
  265. data/rails_test/rails-3.2.8/config/environment.rb +5 -0
  266. data/rails_test/rails-3.2.8/config/environments/development.rb +37 -0
  267. data/rails_test/rails-3.2.8/config/environments/production.rb +67 -0
  268. data/rails_test/rails-3.2.8/config/environments/test.rb +37 -0
  269. data/rails_test/rails-3.2.8/config/initializers/backtrace_silencers.rb +7 -0
  270. data/rails_test/rails-3.2.8/config/initializers/inflections.rb +15 -0
  271. data/rails_test/rails-3.2.8/config/initializers/mime_types.rb +5 -0
  272. data/rails_test/rails-3.2.8/config/initializers/secret_token.rb +7 -0
  273. data/rails_test/rails-3.2.8/config/initializers/session_store.rb +8 -0
  274. data/rails_test/rails-3.2.8/config/initializers/wrap_parameters.rb +14 -0
  275. data/rails_test/rails-3.2.8/config/locales/en.yml +5 -0
  276. data/rails_test/rails-3.2.8/config/routes.rb +8 -0
  277. data/rails_test/rails-3.2.8/db/migrate/20110228091428_create_entities.rb +14 -0
  278. data/rails_test/rails-3.2.8/db/migrate/20110228093241_create_platforms.rb +14 -0
  279. data/rails_test/rails-3.2.8/db/migrate/20110228094444_create_versions.rb +18 -0
  280. data/rails_test/rails-3.2.8/db/schema.rb +40 -0
  281. data/rails_test/rails-3.2.8/db/seeds.rb +7 -0
  282. data/rails_test/rails-3.2.8/doc/README_FOR_APP +2 -0
  283. data/rails_test/rails-3.2.8/lib/assets/.gitkeep +0 -0
  284. data/rails_test/rails-3.2.8/lib/tasks/.gitkeep +0 -0
  285. data/rails_test/rails-3.2.8/log/.gitkeep +0 -0
  286. data/rails_test/rails-3.2.8/public/404.html +26 -0
  287. data/rails_test/rails-3.2.8/public/422.html +26 -0
  288. data/rails_test/rails-3.2.8/public/500.html +25 -0
  289. data/rails_test/rails-3.2.8/public/favicon.ico +0 -0
  290. data/rails_test/rails-3.2.8/public/index.html +241 -0
  291. data/rails_test/rails-3.2.8/public/robots.txt +5 -0
  292. data/rails_test/rails-3.2.8/script/rails +6 -0
  293. data/rails_test/rails-3.2.8/spec/controllers/entities_controller_spec.rb +125 -0
  294. data/rails_test/rails-3.2.8/spec/controllers/platforms_controller_spec.rb +125 -0
  295. data/rails_test/rails-3.2.8/spec/helpers/entities_helper_spec.rb +15 -0
  296. data/rails_test/rails-3.2.8/spec/helpers/platforms_helper_spec.rb +15 -0
  297. data/rails_test/rails-3.2.8/spec/integration/navigation_spec.rb +7 -0
  298. data/rails_test/rails-3.2.8/spec/integration/paper_trail_manager_spec.rb +232 -0
  299. data/rails_test/rails-3.2.8/spec/models/entity_spec.rb +14 -0
  300. data/rails_test/rails-3.2.8/spec/models/platform_spec.rb +14 -0
  301. data/rails_test/rails-3.2.8/spec/requests/entities_spec.rb +11 -0
  302. data/rails_test/rails-3.2.8/spec/requests/platforms_spec.rb +11 -0
  303. data/rails_test/rails-3.2.8/spec/routing/entities_routing_spec.rb +35 -0
  304. data/rails_test/rails-3.2.8/spec/routing/platforms_routing_spec.rb +35 -0
  305. data/rails_test/rails-3.2.8/spec/spec_helper.rb +32 -0
  306. data/rails_test/rails-3.2.8/spec/support/factories.rb +14 -0
  307. data/rails_test/rails-3.2.8/spec/views/entities/edit.html.erb_spec.rb +15 -0
  308. data/rails_test/rails-3.2.8/spec/views/entities/index.html.erb_spec.rb +14 -0
  309. data/rails_test/rails-3.2.8/spec/views/entities/new.html.erb_spec.rb +15 -0
  310. data/rails_test/rails-3.2.8/spec/views/entities/show.html.erb_spec.rb +11 -0
  311. data/rails_test/rails-3.2.8/spec/views/platforms/edit.html.erb_spec.rb +15 -0
  312. data/rails_test/rails-3.2.8/spec/views/platforms/index.html.erb_spec.rb +14 -0
  313. data/rails_test/rails-3.2.8/spec/views/platforms/new.html.erb_spec.rb +15 -0
  314. data/rails_test/rails-3.2.8/spec/views/platforms/show.html.erb_spec.rb +11 -0
  315. data/rails_test/rails-3.2.8/test/fixtures/.gitkeep +0 -0
  316. data/rails_test/rails-3.2.8/test/functional/.gitkeep +0 -0
  317. data/rails_test/rails-3.2.8/test/integration/.gitkeep +0 -0
  318. data/rails_test/rails-3.2.8/test/performance/browsing_test.rb +12 -0
  319. data/rails_test/rails-3.2.8/test/test_helper.rb +13 -0
  320. data/rails_test/rails-3.2.8/test/unit/.gitkeep +0 -0
  321. data/rails_test/rails-3.2.8/vendor/assets/javascripts/.gitkeep +0 -0
  322. data/rails_test/rails-3.2.8/vendor/assets/stylesheets/.gitkeep +0 -0
  323. data/rails_test/rails-3.2.8/vendor/plugins/.gitkeep +0 -0
  324. metadata +322 -138
  325. data/spec/controllers/paper_trail_manager/changes_controller_spec.rb +0 -8
  326. data/spec/dummy/config/boot.rb +0 -10
  327. data/spec/dummy/config/routes.rb +0 -64
  328. data/spec/dummy/public/javascripts/rails.js +0 -175
  329. data/spec/dummy/public/stylesheets/changes.css +0 -47
  330. data/spec/paper_trail_manager_spec.rb +0 -7
  331. data/spec/spec_helper.rb +0 -77
@@ -1,4 +1,4 @@
1
- Dummy::Application.configure do
1
+ Rails3017::Application.configure do
2
2
  # Settings specified here will take precedence over those in config/application.rb
3
3
 
4
4
  # The production environment is meant for finished, "live" apps.
@@ -1,4 +1,4 @@
1
- Dummy::Application.configure do
1
+ Rails3017::Application.configure do
2
2
  # Settings specified here will take precedence over those in config/application.rb
3
3
 
4
4
  # The test environment is used exclusively to run your application's
@@ -0,0 +1,7 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Your secret key for verifying the integrity of signed cookies.
4
+ # If you change this key, all old signed cookies will become invalid!
5
+ # Make sure the secret is at least 30 characters and all random,
6
+ # no regular words or you'll be exposed to dictionary attacks.
7
+ Rails3017::Application.config.secret_token = '20e8bd990d4965f98f4bd62d6cf74b4871995b4ef3e8931ef646dea3a68c01df47d32776fb866ddf22aa156c20b41df5829ca08847e264249ec014eb3efcba95'
@@ -0,0 +1,8 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ Rails3017::Application.config.session_store :cookie_store, :key => '_rails-3.0.17_session'
4
+
5
+ # Use the database for sessions instead of the cookie-based default,
6
+ # which shouldn't be used to store highly confidential information
7
+ # (create the session table with "rails generate session_migration")
8
+ # Rails3017::Application.config.session_store :active_record_store
@@ -0,0 +1,8 @@
1
+ Rails3017::Application.routes.draw do
2
+ root :to => 'application#index'
3
+
4
+ resources :changes, :controller => 'paper_trail_manager/changes'
5
+ resources :entities
6
+ resources :platforms
7
+
8
+ end
@@ -0,0 +1,14 @@
1
+ class CreateEntities < ActiveRecord::Migration
2
+ def self.up
3
+ create_table :entities do |t|
4
+ t.string :name
5
+ t.string :status
6
+
7
+ t.timestamps
8
+ end
9
+ end
10
+
11
+ def self.down
12
+ drop_table :entities
13
+ end
14
+ end
@@ -0,0 +1,14 @@
1
+ class CreatePlatforms < ActiveRecord::Migration
2
+ def self.up
3
+ create_table :platforms do |t|
4
+ t.string :name
5
+ t.string :status
6
+
7
+ t.timestamps
8
+ end
9
+ end
10
+
11
+ def self.down
12
+ drop_table :platforms
13
+ end
14
+ end
@@ -0,0 +1,18 @@
1
+ class CreateVersions < ActiveRecord::Migration
2
+ def self.up
3
+ create_table :versions do |t|
4
+ t.string :item_type, :null => false
5
+ t.integer :item_id, :null => false
6
+ t.string :event, :null => false
7
+ t.string :whodunnit
8
+ t.text :object
9
+ t.datetime :created_at
10
+ end
11
+ add_index :versions, [:item_type, :item_id]
12
+ end
13
+
14
+ def self.down
15
+ remove_index :versions, [:item_type, :item_id]
16
+ drop_table :versions
17
+ end
18
+ end
@@ -0,0 +1,7 @@
1
+ # This file should contain all the record creation needed to seed the database with its default values.
2
+ # The data can then be loaded with the rake db:seed (or created alongside the db with db:setup).
3
+ #
4
+ # Examples:
5
+ #
6
+ # cities = City.create([{ :name => 'Chicago' }, { :name => 'Copenhagen' }])
7
+ # Mayor.create(:name => 'Daley', :city => cities.first)
@@ -0,0 +1,2 @@
1
+ Use this README file to introduce your application and point to useful places in the API for learning more.
2
+ Run "rake doc:app" to generate API documentation for your models, controllers, helpers, and libraries.
File without changes
@@ -0,0 +1,239 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>Ruby on Rails: Welcome aboard</title>
5
+ <style type="text/css" media="screen">
6
+ body {
7
+ margin: 0;
8
+ margin-bottom: 25px;
9
+ padding: 0;
10
+ background-color: #f0f0f0;
11
+ font-family: "Lucida Grande", "Bitstream Vera Sans", "Verdana";
12
+ font-size: 13px;
13
+ color: #333;
14
+ }
15
+
16
+ h1 {
17
+ font-size: 28px;
18
+ color: #000;
19
+ }
20
+
21
+ a {color: #03c}
22
+ a:hover {
23
+ background-color: #03c;
24
+ color: white;
25
+ text-decoration: none;
26
+ }
27
+
28
+
29
+ #page {
30
+ background-color: #f0f0f0;
31
+ width: 750px;
32
+ margin: 0;
33
+ margin-left: auto;
34
+ margin-right: auto;
35
+ }
36
+
37
+ #content {
38
+ float: left;
39
+ background-color: white;
40
+ border: 3px solid #aaa;
41
+ border-top: none;
42
+ padding: 25px;
43
+ width: 500px;
44
+ }
45
+
46
+ #sidebar {
47
+ float: right;
48
+ width: 175px;
49
+ }
50
+
51
+ #footer {
52
+ clear: both;
53
+ }
54
+
55
+
56
+ #header, #about, #getting-started {
57
+ padding-left: 75px;
58
+ padding-right: 30px;
59
+ }
60
+
61
+
62
+ #header {
63
+ background-image: url("images/rails.png");
64
+ background-repeat: no-repeat;
65
+ background-position: top left;
66
+ height: 64px;
67
+ }
68
+ #header h1, #header h2 {margin: 0}
69
+ #header h2 {
70
+ color: #888;
71
+ font-weight: normal;
72
+ font-size: 16px;
73
+ }
74
+
75
+
76
+ #about h3 {
77
+ margin: 0;
78
+ margin-bottom: 10px;
79
+ font-size: 14px;
80
+ }
81
+
82
+ #about-content {
83
+ background-color: #ffd;
84
+ border: 1px solid #fc0;
85
+ margin-left: -55px;
86
+ margin-right: -10px;
87
+ }
88
+ #about-content table {
89
+ margin-top: 10px;
90
+ margin-bottom: 10px;
91
+ font-size: 11px;
92
+ border-collapse: collapse;
93
+ }
94
+ #about-content td {
95
+ padding: 10px;
96
+ padding-top: 3px;
97
+ padding-bottom: 3px;
98
+ }
99
+ #about-content td.name {color: #555}
100
+ #about-content td.value {color: #000}
101
+
102
+ #about-content ul {
103
+ padding: 0;
104
+ list-style-type: none;
105
+ }
106
+
107
+ #about-content.failure {
108
+ background-color: #fcc;
109
+ border: 1px solid #f00;
110
+ }
111
+ #about-content.failure p {
112
+ margin: 0;
113
+ padding: 10px;
114
+ }
115
+
116
+
117
+ #getting-started {
118
+ border-top: 1px solid #ccc;
119
+ margin-top: 25px;
120
+ padding-top: 15px;
121
+ }
122
+ #getting-started h1 {
123
+ margin: 0;
124
+ font-size: 20px;
125
+ }
126
+ #getting-started h2 {
127
+ margin: 0;
128
+ font-size: 14px;
129
+ font-weight: normal;
130
+ color: #333;
131
+ margin-bottom: 25px;
132
+ }
133
+ #getting-started ol {
134
+ margin-left: 0;
135
+ padding-left: 0;
136
+ }
137
+ #getting-started li {
138
+ font-size: 18px;
139
+ color: #888;
140
+ margin-bottom: 25px;
141
+ }
142
+ #getting-started li h2 {
143
+ margin: 0;
144
+ font-weight: normal;
145
+ font-size: 18px;
146
+ color: #333;
147
+ }
148
+ #getting-started li p {
149
+ color: #555;
150
+ font-size: 13px;
151
+ }
152
+
153
+
154
+ #sidebar ul {
155
+ margin-left: 0;
156
+ padding-left: 0;
157
+ }
158
+ #sidebar ul h3 {
159
+ margin-top: 25px;
160
+ font-size: 16px;
161
+ padding-bottom: 10px;
162
+ border-bottom: 1px solid #ccc;
163
+ }
164
+ #sidebar li {
165
+ list-style-type: none;
166
+ }
167
+ #sidebar ul.links li {
168
+ margin-bottom: 5px;
169
+ }
170
+
171
+ </style>
172
+ <script type="text/javascript">
173
+ function about() {
174
+ info = document.getElementById('about-content');
175
+ if (window.XMLHttpRequest)
176
+ { xhr = new XMLHttpRequest(); }
177
+ else
178
+ { xhr = new ActiveXObject("Microsoft.XMLHTTP"); }
179
+ xhr.open("GET","rails/info/properties",false);
180
+ xhr.send("");
181
+ info.innerHTML = xhr.responseText;
182
+ info.style.display = 'block'
183
+ }
184
+ </script>
185
+ </head>
186
+ <body>
187
+ <div id="page">
188
+ <div id="sidebar">
189
+ <ul id="sidebar-items">
190
+ <li>
191
+ <h3>Browse the documentation</h3>
192
+ <ul class="links">
193
+ <li><a href="http://api.rubyonrails.org/">Rails API</a></li>
194
+ <li><a href="http://stdlib.rubyonrails.org/">Ruby standard library</a></li>
195
+ <li><a href="http://corelib.rubyonrails.org/">Ruby core</a></li>
196
+ <li><a href="http://guides.rubyonrails.org/">Rails Guides</a></li>
197
+ </ul>
198
+ </li>
199
+ </ul>
200
+ </div>
201
+
202
+ <div id="content">
203
+ <div id="header">
204
+ <h1>Welcome aboard</h1>
205
+ <h2>You&rsquo;re riding Ruby on Rails!</h2>
206
+ </div>
207
+
208
+ <div id="about">
209
+ <h3><a href="rails/info/properties" onclick="about(); return false">About your application&rsquo;s environment</a></h3>
210
+ <div id="about-content" style="display: none"></div>
211
+ </div>
212
+
213
+ <div id="getting-started">
214
+ <h1>Getting started</h1>
215
+ <h2>Here&rsquo;s how to get rolling:</h2>
216
+
217
+ <ol>
218
+ <li>
219
+ <h2>Use <code>rails generate</code> to create your models and controllers</h2>
220
+ <p>To see all available options, run it without parameters.</p>
221
+ </li>
222
+
223
+ <li>
224
+ <h2>Set up a default route and remove or rename this file</h2>
225
+ <p>Routes are set up in config/routes.rb.</p>
226
+ </li>
227
+
228
+ <li>
229
+ <h2>Create your database</h2>
230
+ <p>Run <code>rake db:migrate</code> to create your database. If you're not using SQLite (the default), edit <code>config/database.yml</code> with your username and password.</p>
231
+ </li>
232
+ </ol>
233
+ </div>
234
+ </div>
235
+
236
+ <div id="footer">&nbsp;</div>
237
+ </div>
238
+ </body>
239
+ </html>
@@ -0,0 +1,202 @@
1
+ (function() {
2
+ Ajax.Responders.register({
3
+ onCreate: function(request) {
4
+ var token = $$('meta[name=csrf-token]')[0];
5
+ if (token) {
6
+ if (!request.options.requestHeaders) request.options.requestHeaders = {};
7
+ request.options.requestHeaders['X-CSRF-Token'] = token.readAttribute('content');
8
+ }
9
+ }
10
+ });
11
+
12
+ // Technique from Juriy Zaytsev
13
+ // http://thinkweb2.com/projects/prototype/detecting-event-support-without-browser-sniffing/
14
+ function isEventSupported(eventName) {
15
+ var el = document.createElement('div');
16
+ eventName = 'on' + eventName;
17
+ var isSupported = (eventName in el);
18
+ if (!isSupported) {
19
+ el.setAttribute(eventName, 'return;');
20
+ isSupported = typeof el[eventName] == 'function';
21
+ }
22
+ el = null;
23
+ return isSupported;
24
+ }
25
+
26
+ function isForm(element) {
27
+ return Object.isElement(element) && element.nodeName.toUpperCase() == 'FORM';
28
+ }
29
+
30
+ function isInput(element) {
31
+ if (Object.isElement(element)) {
32
+ var name = element.nodeName.toUpperCase();
33
+ return name == 'INPUT' || name == 'SELECT' || name == 'TEXTAREA';
34
+ }
35
+ else return false;
36
+ }
37
+
38
+ var submitBubbles = isEventSupported('submit'),
39
+ changeBubbles = isEventSupported('change');
40
+
41
+ if (!submitBubbles || !changeBubbles) {
42
+ // augment the Event.Handler class to observe custom events when needed
43
+ Event.Handler.prototype.initialize = Event.Handler.prototype.initialize.wrap(
44
+ function(init, element, eventName, selector, callback) {
45
+ init(element, eventName, selector, callback);
46
+ // is the handler being attached to an element that doesn't support this event?
47
+ if ( (!submitBubbles && this.eventName == 'submit' && !isForm(this.element)) ||
48
+ (!changeBubbles && this.eventName == 'change' && !isInput(this.element)) ) {
49
+ // "submit" => "emulated:submit"
50
+ this.eventName = 'emulated:' + this.eventName;
51
+ }
52
+ }
53
+ );
54
+ }
55
+
56
+ if (!submitBubbles) {
57
+ // discover forms on the page by observing focus events which always bubble
58
+ document.on('focusin', 'form', function(focusEvent, form) {
59
+ // special handler for the real "submit" event (one-time operation)
60
+ if (!form.retrieve('emulated:submit')) {
61
+ form.on('submit', function(submitEvent) {
62
+ var emulated = form.fire('emulated:submit', submitEvent, true);
63
+ // if custom event received preventDefault, cancel the real one too
64
+ if (emulated.returnValue === false) submitEvent.preventDefault();
65
+ });
66
+ form.store('emulated:submit', true);
67
+ }
68
+ });
69
+ }
70
+
71
+ if (!changeBubbles) {
72
+ // discover form inputs on the page
73
+ document.on('focusin', 'input, select, textarea', function(focusEvent, input) {
74
+ // special handler for real "change" events
75
+ if (!input.retrieve('emulated:change')) {
76
+ input.on('change', function(changeEvent) {
77
+ input.fire('emulated:change', changeEvent, true);
78
+ });
79
+ input.store('emulated:change', true);
80
+ }
81
+ });
82
+ }
83
+
84
+ function handleRemote(element) {
85
+ var method, url, params;
86
+
87
+ var event = element.fire("ajax:before");
88
+ if (event.stopped) return false;
89
+
90
+ if (element.tagName.toLowerCase() === 'form') {
91
+ method = element.readAttribute('method') || 'post';
92
+ url = element.readAttribute('action');
93
+ // serialize the form with respect to the submit button that was pressed
94
+ params = element.serialize({ submit: element.retrieve('rails:submit-button') });
95
+ // clear the pressed submit button information
96
+ element.store('rails:submit-button', null);
97
+ } else {
98
+ method = element.readAttribute('data-method') || 'get';
99
+ url = element.readAttribute('href');
100
+ params = {};
101
+ }
102
+
103
+ new Ajax.Request(url, {
104
+ method: method,
105
+ parameters: params,
106
+ evalScripts: true,
107
+
108
+ onCreate: function(response) { element.fire("ajax:create", response); },
109
+ onComplete: function(response) { element.fire("ajax:complete", response); },
110
+ onSuccess: function(response) { element.fire("ajax:success", response); },
111
+ onFailure: function(response) { element.fire("ajax:failure", response); }
112
+ });
113
+
114
+ element.fire("ajax:after");
115
+ }
116
+
117
+ function insertHiddenField(form, name, value) {
118
+ form.insert(new Element('input', { type: 'hidden', name: name, value: value }));
119
+ }
120
+
121
+ function handleMethod(element) {
122
+ var method = element.readAttribute('data-method'),
123
+ url = element.readAttribute('href'),
124
+ csrf_param = $$('meta[name=csrf-param]')[0],
125
+ csrf_token = $$('meta[name=csrf-token]')[0];
126
+
127
+ var form = new Element('form', { method: "POST", action: url, style: "display: none;" });
128
+ $(element.parentNode).insert(form);
129
+
130
+ if (method !== 'post') {
131
+ insertHiddenField(form, '_method', method);
132
+ }
133
+
134
+ if (csrf_param) {
135
+ insertHiddenField(form, csrf_param.readAttribute('content'), csrf_token.readAttribute('content'));
136
+ }
137
+
138
+ form.submit();
139
+ }
140
+
141
+ function disableFormElements(form) {
142
+ form.select('input[type=submit][data-disable-with]').each(function(input) {
143
+ input.store('rails:original-value', input.getValue());
144
+ input.setValue(input.readAttribute('data-disable-with')).disable();
145
+ });
146
+ }
147
+
148
+ function enableFormElements(form) {
149
+ form.select('input[type=submit][data-disable-with]').each(function(input) {
150
+ input.setValue(input.retrieve('rails:original-value')).enable();
151
+ });
152
+ }
153
+
154
+ function allowAction(element) {
155
+ var message = element.readAttribute('data-confirm');
156
+ return !message || confirm(message);
157
+ }
158
+
159
+ document.on('click', 'a[data-confirm], a[data-remote], a[data-method]', function(event, link) {
160
+ if (!allowAction(link)) {
161
+ event.stop();
162
+ return false;
163
+ }
164
+
165
+ if (link.readAttribute('data-remote')) {
166
+ handleRemote(link);
167
+ event.stop();
168
+ } else if (link.readAttribute('data-method')) {
169
+ handleMethod(link);
170
+ event.stop();
171
+ }
172
+ });
173
+
174
+ document.on("click", "form input[type=submit], form button[type=submit], form button:not([type])", function(event, button) {
175
+ // register the pressed submit button
176
+ event.findElement('form').store('rails:submit-button', button.name || false);
177
+ });
178
+
179
+ document.on("submit", function(event) {
180
+ var form = event.findElement();
181
+
182
+ if (!allowAction(form)) {
183
+ event.stop();
184
+ return false;
185
+ }
186
+
187
+ if (form.readAttribute('data-remote')) {
188
+ handleRemote(form);
189
+ event.stop();
190
+ } else {
191
+ disableFormElements(form);
192
+ }
193
+ });
194
+
195
+ document.on('ajax:create', 'form', function(event, form) {
196
+ if (form == event.findElement()) disableFormElements(form);
197
+ });
198
+
199
+ document.on('ajax:complete', 'form', function(event, form) {
200
+ if (form == event.findElement()) enableFormElements(form);
201
+ });
202
+ })();