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
@@ -0,0 +1,15 @@
1
+ require 'spec_helper'
2
+
3
+ describe "entities/edit.html.erb" do
4
+ before(:each) do
5
+ @entity = assign(:entity, stub_model(Entity))
6
+ end
7
+
8
+ it "renders the edit entity form" do
9
+ render
10
+
11
+ # Run the generator again with the --webrat flag if you want to use webrat matchers
12
+ assert_select "form", :action => entities_path(@entity), :method => "post" do
13
+ end
14
+ end
15
+ end
@@ -0,0 +1,14 @@
1
+ require 'spec_helper'
2
+
3
+ describe "entities/index.html.erb" do
4
+ before(:each) do
5
+ assign(:entities, [
6
+ stub_model(Entity),
7
+ stub_model(Entity)
8
+ ])
9
+ end
10
+
11
+ it "renders a list of entities" do
12
+ render
13
+ end
14
+ end
@@ -0,0 +1,15 @@
1
+ require 'spec_helper'
2
+
3
+ describe "entities/new.html.erb" do
4
+ before(:each) do
5
+ assign(:entity, stub_model(Entity).as_new_record)
6
+ end
7
+
8
+ it "renders new entity form" do
9
+ render
10
+
11
+ # Run the generator again with the --webrat flag if you want to use webrat matchers
12
+ assert_select "form", :action => entities_path, :method => "post" do
13
+ end
14
+ end
15
+ end
@@ -0,0 +1,11 @@
1
+ require 'spec_helper'
2
+
3
+ describe "entities/show.html.erb" do
4
+ before(:each) do
5
+ @entity = assign(:entity, stub_model(Entity))
6
+ end
7
+
8
+ it "renders attributes in <p>" do
9
+ render
10
+ end
11
+ end
@@ -0,0 +1,15 @@
1
+ require 'spec_helper'
2
+
3
+ describe "platforms/edit.html.erb" do
4
+ before(:each) do
5
+ @platform = assign(:platform, stub_model(Platform))
6
+ end
7
+
8
+ it "renders the edit platform form" do
9
+ render
10
+
11
+ # Run the generator again with the --webrat flag if you want to use webrat matchers
12
+ assert_select "form", :action => platforms_path(@platform), :method => "post" do
13
+ end
14
+ end
15
+ end
@@ -0,0 +1,14 @@
1
+ require 'spec_helper'
2
+
3
+ describe "platforms/index.html.erb" do
4
+ before(:each) do
5
+ assign(:platforms, [
6
+ stub_model(Platform),
7
+ stub_model(Platform)
8
+ ])
9
+ end
10
+
11
+ it "renders a list of platforms" do
12
+ render
13
+ end
14
+ end
@@ -0,0 +1,15 @@
1
+ require 'spec_helper'
2
+
3
+ describe "platforms/new.html.erb" do
4
+ before(:each) do
5
+ assign(:platform, stub_model(Platform).as_new_record)
6
+ end
7
+
8
+ it "renders new platform form" do
9
+ render
10
+
11
+ # Run the generator again with the --webrat flag if you want to use webrat matchers
12
+ assert_select "form", :action => platforms_path, :method => "post" do
13
+ end
14
+ end
15
+ end
@@ -0,0 +1,11 @@
1
+ require 'spec_helper'
2
+
3
+ describe "platforms/show.html.erb" do
4
+ before(:each) do
5
+ @platform = assign(:platform, stub_model(Platform))
6
+ end
7
+
8
+ it "renders attributes in <p>" do
9
+ render
10
+ end
11
+ end
File without changes
File without changes
File without changes
@@ -0,0 +1,12 @@
1
+ require 'test_helper'
2
+ require 'rails/performance_test_help'
3
+
4
+ class BrowsingTest < ActionDispatch::PerformanceTest
5
+ # Refer to the documentation for all available options
6
+ # self.profile_options = { :runs => 5, :metrics => [:wall_time, :memory]
7
+ # :output => 'tmp/performance', :formats => [:flat] }
8
+
9
+ def test_homepage
10
+ get '/'
11
+ end
12
+ end
@@ -0,0 +1,13 @@
1
+ ENV["RAILS_ENV"] = "test"
2
+ require File.expand_path('../../config/environment', __FILE__)
3
+ require 'rails/test_help'
4
+
5
+ class ActiveSupport::TestCase
6
+ # Setup all fixtures in test/fixtures/*.(yml|csv) for all tests in alphabetical order.
7
+ #
8
+ # Note: You'll currently still have to declare fixtures explicitly in integration tests
9
+ # -- they do not yet inherit this setting
10
+ fixtures :all
11
+
12
+ # Add more helper methods to be used by all tests here...
13
+ end
File without changes
File without changes
metadata CHANGED
@@ -5,9 +5,9 @@ version: !ruby/object:Gem::Version
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
- - 1
9
- - 6
10
- version: 0.1.6
8
+ - 2
9
+ - 0
10
+ version: 0.2.0
11
11
  platform: ruby
12
12
  authors:
13
13
  - Igal Koshevoy
@@ -15,7 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2012-08-11 00:00:00 Z
18
+ date: 2012-08-13 00:00:00 Z
19
19
  dependencies:
20
20
  - !ruby/object:Gem::Dependency
21
21
  version_requirements: &id001 !ruby/object:Gem::Requirement
@@ -41,8 +41,7 @@ dependencies:
41
41
  segments:
42
42
  - 3
43
43
  - 0
44
- - 0
45
- version: 3.0.0
44
+ version: "3.0"
46
45
  name: rails
47
46
  prerelease: false
48
47
  type: :runtime
@@ -123,62 +122,6 @@ dependencies:
123
122
  prerelease: false
124
123
  type: :development
125
124
  requirement: *id007
126
- - !ruby/object:Gem::Dependency
127
- version_requirements: &id008 !ruby/object:Gem::Requirement
128
- none: false
129
- requirements:
130
- - - ">="
131
- - !ruby/object:Gem::Version
132
- hash: 3
133
- segments:
134
- - 0
135
- version: "0"
136
- name: guard
137
- prerelease: false
138
- type: :development
139
- requirement: *id008
140
- - !ruby/object:Gem::Dependency
141
- version_requirements: &id009 !ruby/object:Gem::Requirement
142
- none: false
143
- requirements:
144
- - - ">="
145
- - !ruby/object:Gem::Version
146
- hash: 3
147
- segments:
148
- - 0
149
- version: "0"
150
- name: guard-rspec
151
- prerelease: false
152
- type: :development
153
- requirement: *id009
154
- - !ruby/object:Gem::Dependency
155
- version_requirements: &id010 !ruby/object:Gem::Requirement
156
- none: false
157
- requirements:
158
- - - ">="
159
- - !ruby/object:Gem::Version
160
- hash: 3
161
- segments:
162
- - 0
163
- version: "0"
164
- name: guard-spork
165
- prerelease: false
166
- type: :development
167
- requirement: *id010
168
- - !ruby/object:Gem::Dependency
169
- version_requirements: &id011 !ruby/object:Gem::Requirement
170
- none: false
171
- requirements:
172
- - - ">="
173
- - !ruby/object:Gem::Version
174
- hash: 3
175
- segments:
176
- - 0
177
- version: "0"
178
- name: libnotify
179
- prerelease: false
180
- type: :development
181
- requirement: *id011
182
125
  description: A user interface for `paper_trail` versioning data in Ruby on Rails 3 applications.
183
126
  email: igal@pragmaticraft.com
184
127
  executables: []
@@ -189,6 +132,9 @@ extra_rdoc_files:
189
132
  - LICENSE.txt
190
133
  - README.md
191
134
  files:
135
+ - .gitignore
136
+ - .travis.yml
137
+ - CHANGES.md
192
138
  - Gemfile
193
139
  - Gemfile.lock
194
140
  - LICENSE.txt
@@ -203,82 +149,320 @@ files:
203
149
  - app/views/paper_trail_manager/changes/show.html.erb
204
150
  - lib/paper_trail_manager.rb
205
151
  - paper_trail_manager.gemspec
206
- - spec/controllers/paper_trail_manager/changes_controller_spec.rb
207
- - spec/dummy/Rakefile
208
- - spec/dummy/app/controllers/application_controller.rb
209
- - spec/dummy/app/controllers/entities_controller.rb
210
- - spec/dummy/app/controllers/platforms_controller.rb
211
- - spec/dummy/app/helpers/application_helper.rb
212
- - spec/dummy/app/helpers/entities_helper.rb
213
- - spec/dummy/app/helpers/platforms_helper.rb
214
- - spec/dummy/app/models/entity.rb
215
- - spec/dummy/app/models/platform.rb
216
- - spec/dummy/app/views/application/index.html.erb
217
- - spec/dummy/app/views/entities/_form.html.erb
218
- - spec/dummy/app/views/entities/edit.html.erb
219
- - spec/dummy/app/views/entities/index.html.erb
220
- - spec/dummy/app/views/entities/new.html.erb
221
- - spec/dummy/app/views/entities/show.html.erb
222
- - spec/dummy/app/views/layouts/application.html.erb
223
- - spec/dummy/app/views/platforms/_form.html.erb
224
- - spec/dummy/app/views/platforms/edit.html.erb
225
- - spec/dummy/app/views/platforms/index.html.erb
226
- - spec/dummy/app/views/platforms/new.html.erb
227
- - spec/dummy/app/views/platforms/show.html.erb
228
- - spec/dummy/config.ru
229
- - spec/dummy/config/application.rb
230
- - spec/dummy/config/boot.rb
231
- - spec/dummy/config/database.yml
232
- - spec/dummy/config/environment.rb
233
- - spec/dummy/config/environments/development.rb
234
- - spec/dummy/config/environments/production.rb
235
- - spec/dummy/config/environments/test.rb
236
- - spec/dummy/config/initializers/backtrace_silencers.rb
237
- - spec/dummy/config/initializers/inflections.rb
238
- - spec/dummy/config/initializers/mime_types.rb
239
- - spec/dummy/config/initializers/secret_token.rb
240
- - spec/dummy/config/initializers/session_store.rb
241
- - spec/dummy/config/locales/en.yml
242
- - spec/dummy/config/routes.rb
243
- - spec/dummy/db/migrate/20110228091428_create_entities.rb
244
- - spec/dummy/db/migrate/20110228093241_create_platforms.rb
245
- - spec/dummy/db/migrate/20110228094444_create_versions.rb
246
- - spec/dummy/db/schema.rb
247
- - spec/dummy/public/404.html
248
- - spec/dummy/public/422.html
249
- - spec/dummy/public/500.html
250
- - spec/dummy/public/favicon.ico
251
- - spec/dummy/public/javascripts/application.js
252
- - spec/dummy/public/javascripts/controls.js
253
- - spec/dummy/public/javascripts/dragdrop.js
254
- - spec/dummy/public/javascripts/effects.js
255
- - spec/dummy/public/javascripts/prototype.js
256
- - spec/dummy/public/javascripts/rails.js
257
- - spec/dummy/public/stylesheets/changes.css
258
- - spec/dummy/script/rails
259
- - spec/dummy/spec/controllers/entities_controller_spec.rb
260
- - spec/dummy/spec/controllers/platforms_controller_spec.rb
261
- - spec/dummy/spec/helpers/entities_helper_spec.rb
262
- - spec/dummy/spec/helpers/platforms_helper_spec.rb
263
- - spec/dummy/spec/integration/navigation_spec.rb
264
- - spec/dummy/spec/integration/paper_trail_manager_spec.rb
265
- - spec/dummy/spec/models/entity_spec.rb
266
- - spec/dummy/spec/models/platform_spec.rb
267
- - spec/dummy/spec/requests/entities_spec.rb
268
- - spec/dummy/spec/requests/platforms_spec.rb
269
- - spec/dummy/spec/routing/entities_routing_spec.rb
270
- - spec/dummy/spec/routing/platforms_routing_spec.rb
271
- - spec/dummy/spec/views/entities/edit.html.erb_spec.rb
272
- - spec/dummy/spec/views/entities/index.html.erb_spec.rb
273
- - spec/dummy/spec/views/entities/new.html.erb_spec.rb
274
- - spec/dummy/spec/views/entities/show.html.erb_spec.rb
275
- - spec/dummy/spec/views/platforms/edit.html.erb_spec.rb
276
- - spec/dummy/spec/views/platforms/index.html.erb_spec.rb
277
- - spec/dummy/spec/views/platforms/new.html.erb_spec.rb
278
- - spec/dummy/spec/views/platforms/show.html.erb_spec.rb
279
- - spec/paper_trail_manager_spec.rb
280
- - spec/spec_helper.rb
281
- - spec/support/factories.rb
152
+ - rails_test/Rakefile
153
+ - rails_test/common/app/controllers/application_controller.rb
154
+ - rails_test/common/app/controllers/entities_controller.rb
155
+ - rails_test/common/app/controllers/platforms_controller.rb
156
+ - rails_test/common/app/helpers/application_helper.rb
157
+ - rails_test/common/app/helpers/entities_helper.rb
158
+ - rails_test/common/app/helpers/platforms_helper.rb
159
+ - rails_test/common/app/models/entity.rb
160
+ - rails_test/common/app/models/platform.rb
161
+ - rails_test/common/app/views/application/index.html.erb
162
+ - rails_test/common/app/views/entities/_form.html.erb
163
+ - rails_test/common/app/views/entities/edit.html.erb
164
+ - rails_test/common/app/views/entities/index.html.erb
165
+ - rails_test/common/app/views/entities/new.html.erb
166
+ - rails_test/common/app/views/entities/show.html.erb
167
+ - rails_test/common/app/views/layouts/application.html.erb
168
+ - rails_test/common/app/views/platforms/_form.html.erb
169
+ - rails_test/common/app/views/platforms/edit.html.erb
170
+ - rails_test/common/app/views/platforms/index.html.erb
171
+ - rails_test/common/app/views/platforms/new.html.erb
172
+ - rails_test/common/app/views/platforms/show.html.erb
173
+ - rails_test/common/config/database.yml
174
+ - rails_test/common/db/migrate/20110228091428_create_entities.rb
175
+ - rails_test/common/db/migrate/20110228093241_create_platforms.rb
176
+ - rails_test/common/db/migrate/20110228094444_create_versions.rb
177
+ - rails_test/common/spec/controllers/entities_controller_spec.rb
178
+ - rails_test/common/spec/controllers/platforms_controller_spec.rb
179
+ - rails_test/common/spec/helpers/entities_helper_spec.rb
180
+ - rails_test/common/spec/helpers/platforms_helper_spec.rb
181
+ - rails_test/common/spec/integration/navigation_spec.rb
182
+ - rails_test/common/spec/integration/paper_trail_manager_spec.rb
183
+ - rails_test/common/spec/models/entity_spec.rb
184
+ - rails_test/common/spec/models/platform_spec.rb
185
+ - rails_test/common/spec/requests/entities_spec.rb
186
+ - rails_test/common/spec/requests/platforms_spec.rb
187
+ - rails_test/common/spec/routing/entities_routing_spec.rb
188
+ - rails_test/common/spec/routing/platforms_routing_spec.rb
189
+ - rails_test/common/spec/spec_helper.rb
190
+ - rails_test/common/spec/support/factories.rb
191
+ - rails_test/common/spec/views/entities/edit.html.erb_spec.rb
192
+ - rails_test/common/spec/views/entities/index.html.erb_spec.rb
193
+ - rails_test/common/spec/views/entities/new.html.erb_spec.rb
194
+ - rails_test/common/spec/views/entities/show.html.erb_spec.rb
195
+ - rails_test/common/spec/views/platforms/edit.html.erb_spec.rb
196
+ - rails_test/common/spec/views/platforms/index.html.erb_spec.rb
197
+ - rails_test/common/spec/views/platforms/new.html.erb_spec.rb
198
+ - rails_test/common/spec/views/platforms/show.html.erb_spec.rb
199
+ - rails_test/generate_test_directory
200
+ - rails_test/rails-3.0.17/.gitignore
201
+ - rails_test/rails-3.0.17/README
202
+ - rails_test/rails-3.0.17/Rakefile
203
+ - rails_test/rails-3.0.17/app/controllers/application_controller.rb
204
+ - rails_test/rails-3.0.17/app/controllers/entities_controller.rb
205
+ - rails_test/rails-3.0.17/app/controllers/platforms_controller.rb
206
+ - rails_test/rails-3.0.17/app/helpers/application_helper.rb
207
+ - rails_test/rails-3.0.17/app/helpers/entities_helper.rb
208
+ - rails_test/rails-3.0.17/app/helpers/platforms_helper.rb
209
+ - rails_test/rails-3.0.17/app/models/entity.rb
210
+ - rails_test/rails-3.0.17/app/models/platform.rb
211
+ - rails_test/rails-3.0.17/app/views/application/index.html.erb
212
+ - rails_test/rails-3.0.17/app/views/entities/_form.html.erb
213
+ - rails_test/rails-3.0.17/app/views/entities/edit.html.erb
214
+ - rails_test/rails-3.0.17/app/views/entities/index.html.erb
215
+ - rails_test/rails-3.0.17/app/views/entities/new.html.erb
216
+ - rails_test/rails-3.0.17/app/views/entities/show.html.erb
217
+ - rails_test/rails-3.0.17/app/views/layouts/application.html.erb
218
+ - rails_test/rails-3.0.17/app/views/platforms/_form.html.erb
219
+ - rails_test/rails-3.0.17/app/views/platforms/edit.html.erb
220
+ - rails_test/rails-3.0.17/app/views/platforms/index.html.erb
221
+ - rails_test/rails-3.0.17/app/views/platforms/new.html.erb
222
+ - rails_test/rails-3.0.17/app/views/platforms/show.html.erb
223
+ - rails_test/rails-3.0.17/config.ru
224
+ - rails_test/rails-3.0.17/config/application.rb
225
+ - rails_test/rails-3.0.17/config/boot.rb
226
+ - rails_test/rails-3.0.17/config/database.yml
227
+ - rails_test/rails-3.0.17/config/environment.rb
228
+ - rails_test/rails-3.0.17/config/environments/development.rb
229
+ - rails_test/rails-3.0.17/config/environments/production.rb
230
+ - rails_test/rails-3.0.17/config/environments/test.rb
231
+ - rails_test/rails-3.0.17/config/initializers/backtrace_silencers.rb
232
+ - rails_test/rails-3.0.17/config/initializers/inflections.rb
233
+ - rails_test/rails-3.0.17/config/initializers/mime_types.rb
234
+ - rails_test/rails-3.0.17/config/initializers/secret_token.rb
235
+ - rails_test/rails-3.0.17/config/initializers/session_store.rb
236
+ - rails_test/rails-3.0.17/config/locales/en.yml
237
+ - rails_test/rails-3.0.17/config/routes.rb
238
+ - rails_test/rails-3.0.17/db/migrate/20110228091428_create_entities.rb
239
+ - rails_test/rails-3.0.17/db/migrate/20110228093241_create_platforms.rb
240
+ - rails_test/rails-3.0.17/db/migrate/20110228094444_create_versions.rb
241
+ - rails_test/rails-3.0.17/db/schema.rb
242
+ - rails_test/rails-3.0.17/db/seeds.rb
243
+ - rails_test/rails-3.0.17/doc/README_FOR_APP
244
+ - rails_test/rails-3.0.17/lib/tasks/.gitkeep
245
+ - rails_test/rails-3.0.17/public/404.html
246
+ - rails_test/rails-3.0.17/public/422.html
247
+ - rails_test/rails-3.0.17/public/500.html
248
+ - rails_test/rails-3.0.17/public/favicon.ico
249
+ - rails_test/rails-3.0.17/public/images/rails.png
250
+ - rails_test/rails-3.0.17/public/index.html
251
+ - rails_test/rails-3.0.17/public/javascripts/application.js
252
+ - rails_test/rails-3.0.17/public/javascripts/controls.js
253
+ - rails_test/rails-3.0.17/public/javascripts/dragdrop.js
254
+ - rails_test/rails-3.0.17/public/javascripts/effects.js
255
+ - rails_test/rails-3.0.17/public/javascripts/prototype.js
256
+ - rails_test/rails-3.0.17/public/javascripts/rails.js
257
+ - rails_test/rails-3.0.17/public/robots.txt
258
+ - rails_test/rails-3.0.17/public/stylesheets/.gitkeep
259
+ - rails_test/rails-3.0.17/script/rails
260
+ - rails_test/rails-3.0.17/spec/controllers/entities_controller_spec.rb
261
+ - rails_test/rails-3.0.17/spec/controllers/platforms_controller_spec.rb
262
+ - rails_test/rails-3.0.17/spec/helpers/entities_helper_spec.rb
263
+ - rails_test/rails-3.0.17/spec/helpers/platforms_helper_spec.rb
264
+ - rails_test/rails-3.0.17/spec/integration/navigation_spec.rb
265
+ - rails_test/rails-3.0.17/spec/integration/paper_trail_manager_spec.rb
266
+ - rails_test/rails-3.0.17/spec/models/entity_spec.rb
267
+ - rails_test/rails-3.0.17/spec/models/platform_spec.rb
268
+ - rails_test/rails-3.0.17/spec/requests/entities_spec.rb
269
+ - rails_test/rails-3.0.17/spec/requests/platforms_spec.rb
270
+ - rails_test/rails-3.0.17/spec/routing/entities_routing_spec.rb
271
+ - rails_test/rails-3.0.17/spec/routing/platforms_routing_spec.rb
272
+ - rails_test/rails-3.0.17/spec/spec_helper.rb
273
+ - rails_test/rails-3.0.17/spec/support/factories.rb
274
+ - rails_test/rails-3.0.17/spec/views/entities/edit.html.erb_spec.rb
275
+ - rails_test/rails-3.0.17/spec/views/entities/index.html.erb_spec.rb
276
+ - rails_test/rails-3.0.17/spec/views/entities/new.html.erb_spec.rb
277
+ - rails_test/rails-3.0.17/spec/views/entities/show.html.erb_spec.rb
278
+ - rails_test/rails-3.0.17/spec/views/platforms/edit.html.erb_spec.rb
279
+ - rails_test/rails-3.0.17/spec/views/platforms/index.html.erb_spec.rb
280
+ - rails_test/rails-3.0.17/spec/views/platforms/new.html.erb_spec.rb
281
+ - rails_test/rails-3.0.17/spec/views/platforms/show.html.erb_spec.rb
282
+ - rails_test/rails-3.0.17/test/performance/browsing_test.rb
283
+ - rails_test/rails-3.0.17/test/test_helper.rb
284
+ - rails_test/rails-3.0.17/vendor/plugins/.gitkeep
285
+ - rails_test/rails-3.1.8/.gitignore
286
+ - rails_test/rails-3.1.8/README
287
+ - rails_test/rails-3.1.8/Rakefile
288
+ - rails_test/rails-3.1.8/app/assets/images/rails.png
289
+ - rails_test/rails-3.1.8/app/assets/javascripts/application.js
290
+ - rails_test/rails-3.1.8/app/assets/stylesheets/application.css
291
+ - rails_test/rails-3.1.8/app/controllers/application_controller.rb
292
+ - rails_test/rails-3.1.8/app/controllers/entities_controller.rb
293
+ - rails_test/rails-3.1.8/app/controllers/platforms_controller.rb
294
+ - rails_test/rails-3.1.8/app/helpers/application_helper.rb
295
+ - rails_test/rails-3.1.8/app/helpers/entities_helper.rb
296
+ - rails_test/rails-3.1.8/app/helpers/platforms_helper.rb
297
+ - rails_test/rails-3.1.8/app/mailers/.gitkeep
298
+ - rails_test/rails-3.1.8/app/models/.gitkeep
299
+ - rails_test/rails-3.1.8/app/models/entity.rb
300
+ - rails_test/rails-3.1.8/app/models/platform.rb
301
+ - rails_test/rails-3.1.8/app/views/application/index.html.erb
302
+ - rails_test/rails-3.1.8/app/views/entities/_form.html.erb
303
+ - rails_test/rails-3.1.8/app/views/entities/edit.html.erb
304
+ - rails_test/rails-3.1.8/app/views/entities/index.html.erb
305
+ - rails_test/rails-3.1.8/app/views/entities/new.html.erb
306
+ - rails_test/rails-3.1.8/app/views/entities/show.html.erb
307
+ - rails_test/rails-3.1.8/app/views/layouts/application.html.erb
308
+ - rails_test/rails-3.1.8/app/views/platforms/_form.html.erb
309
+ - rails_test/rails-3.1.8/app/views/platforms/edit.html.erb
310
+ - rails_test/rails-3.1.8/app/views/platforms/index.html.erb
311
+ - rails_test/rails-3.1.8/app/views/platforms/new.html.erb
312
+ - rails_test/rails-3.1.8/app/views/platforms/show.html.erb
313
+ - rails_test/rails-3.1.8/config.ru
314
+ - rails_test/rails-3.1.8/config/application.rb
315
+ - rails_test/rails-3.1.8/config/boot.rb
316
+ - rails_test/rails-3.1.8/config/database.yml
317
+ - rails_test/rails-3.1.8/config/environment.rb
318
+ - rails_test/rails-3.1.8/config/environments/development.rb
319
+ - rails_test/rails-3.1.8/config/environments/production.rb
320
+ - rails_test/rails-3.1.8/config/environments/test.rb
321
+ - rails_test/rails-3.1.8/config/initializers/backtrace_silencers.rb
322
+ - rails_test/rails-3.1.8/config/initializers/inflections.rb
323
+ - rails_test/rails-3.1.8/config/initializers/mime_types.rb
324
+ - rails_test/rails-3.1.8/config/initializers/secret_token.rb
325
+ - rails_test/rails-3.1.8/config/initializers/session_store.rb
326
+ - rails_test/rails-3.1.8/config/initializers/wrap_parameters.rb
327
+ - rails_test/rails-3.1.8/config/locales/en.yml
328
+ - rails_test/rails-3.1.8/config/routes.rb
329
+ - rails_test/rails-3.1.8/db/migrate/20110228091428_create_entities.rb
330
+ - rails_test/rails-3.1.8/db/migrate/20110228093241_create_platforms.rb
331
+ - rails_test/rails-3.1.8/db/migrate/20110228094444_create_versions.rb
332
+ - rails_test/rails-3.1.8/db/schema.rb
333
+ - rails_test/rails-3.1.8/db/seeds.rb
334
+ - rails_test/rails-3.1.8/doc/README_FOR_APP
335
+ - rails_test/rails-3.1.8/lib/assets/.gitkeep
336
+ - rails_test/rails-3.1.8/lib/tasks/.gitkeep
337
+ - rails_test/rails-3.1.8/log/.gitkeep
338
+ - rails_test/rails-3.1.8/public/404.html
339
+ - rails_test/rails-3.1.8/public/422.html
340
+ - rails_test/rails-3.1.8/public/500.html
341
+ - rails_test/rails-3.1.8/public/favicon.ico
342
+ - rails_test/rails-3.1.8/public/index.html
343
+ - rails_test/rails-3.1.8/public/robots.txt
344
+ - rails_test/rails-3.1.8/script/rails
345
+ - rails_test/rails-3.1.8/spec/controllers/entities_controller_spec.rb
346
+ - rails_test/rails-3.1.8/spec/controllers/platforms_controller_spec.rb
347
+ - rails_test/rails-3.1.8/spec/helpers/entities_helper_spec.rb
348
+ - rails_test/rails-3.1.8/spec/helpers/platforms_helper_spec.rb
349
+ - rails_test/rails-3.1.8/spec/integration/navigation_spec.rb
350
+ - rails_test/rails-3.1.8/spec/integration/paper_trail_manager_spec.rb
351
+ - rails_test/rails-3.1.8/spec/models/entity_spec.rb
352
+ - rails_test/rails-3.1.8/spec/models/platform_spec.rb
353
+ - rails_test/rails-3.1.8/spec/requests/entities_spec.rb
354
+ - rails_test/rails-3.1.8/spec/requests/platforms_spec.rb
355
+ - rails_test/rails-3.1.8/spec/routing/entities_routing_spec.rb
356
+ - rails_test/rails-3.1.8/spec/routing/platforms_routing_spec.rb
357
+ - rails_test/rails-3.1.8/spec/spec_helper.rb
358
+ - rails_test/rails-3.1.8/spec/support/factories.rb
359
+ - rails_test/rails-3.1.8/spec/views/entities/edit.html.erb_spec.rb
360
+ - rails_test/rails-3.1.8/spec/views/entities/index.html.erb_spec.rb
361
+ - rails_test/rails-3.1.8/spec/views/entities/new.html.erb_spec.rb
362
+ - rails_test/rails-3.1.8/spec/views/entities/show.html.erb_spec.rb
363
+ - rails_test/rails-3.1.8/spec/views/platforms/edit.html.erb_spec.rb
364
+ - rails_test/rails-3.1.8/spec/views/platforms/index.html.erb_spec.rb
365
+ - rails_test/rails-3.1.8/spec/views/platforms/new.html.erb_spec.rb
366
+ - rails_test/rails-3.1.8/spec/views/platforms/show.html.erb_spec.rb
367
+ - rails_test/rails-3.1.8/test/fixtures/.gitkeep
368
+ - rails_test/rails-3.1.8/test/functional/.gitkeep
369
+ - rails_test/rails-3.1.8/test/integration/.gitkeep
370
+ - rails_test/rails-3.1.8/test/performance/browsing_test.rb
371
+ - rails_test/rails-3.1.8/test/test_helper.rb
372
+ - rails_test/rails-3.1.8/test/unit/.gitkeep
373
+ - rails_test/rails-3.1.8/vendor/assets/stylesheets/.gitkeep
374
+ - rails_test/rails-3.1.8/vendor/plugins/.gitkeep
375
+ - rails_test/rails-3.2.8/.gitignore
376
+ - rails_test/rails-3.2.8/README.rdoc
377
+ - rails_test/rails-3.2.8/Rakefile
378
+ - rails_test/rails-3.2.8/app/assets/images/rails.png
379
+ - rails_test/rails-3.2.8/app/assets/javascripts/application.js
380
+ - rails_test/rails-3.2.8/app/assets/stylesheets/application.css
381
+ - rails_test/rails-3.2.8/app/controllers/application_controller.rb
382
+ - rails_test/rails-3.2.8/app/controllers/entities_controller.rb
383
+ - rails_test/rails-3.2.8/app/controllers/platforms_controller.rb
384
+ - rails_test/rails-3.2.8/app/helpers/application_helper.rb
385
+ - rails_test/rails-3.2.8/app/helpers/entities_helper.rb
386
+ - rails_test/rails-3.2.8/app/helpers/platforms_helper.rb
387
+ - rails_test/rails-3.2.8/app/mailers/.gitkeep
388
+ - rails_test/rails-3.2.8/app/models/.gitkeep
389
+ - rails_test/rails-3.2.8/app/models/entity.rb
390
+ - rails_test/rails-3.2.8/app/models/platform.rb
391
+ - rails_test/rails-3.2.8/app/views/application/index.html.erb
392
+ - rails_test/rails-3.2.8/app/views/entities/_form.html.erb
393
+ - rails_test/rails-3.2.8/app/views/entities/edit.html.erb
394
+ - rails_test/rails-3.2.8/app/views/entities/index.html.erb
395
+ - rails_test/rails-3.2.8/app/views/entities/new.html.erb
396
+ - rails_test/rails-3.2.8/app/views/entities/show.html.erb
397
+ - rails_test/rails-3.2.8/app/views/layouts/application.html.erb
398
+ - rails_test/rails-3.2.8/app/views/platforms/_form.html.erb
399
+ - rails_test/rails-3.2.8/app/views/platforms/edit.html.erb
400
+ - rails_test/rails-3.2.8/app/views/platforms/index.html.erb
401
+ - rails_test/rails-3.2.8/app/views/platforms/new.html.erb
402
+ - rails_test/rails-3.2.8/app/views/platforms/show.html.erb
403
+ - rails_test/rails-3.2.8/config.ru
404
+ - rails_test/rails-3.2.8/config/application.rb
405
+ - rails_test/rails-3.2.8/config/boot.rb
406
+ - rails_test/rails-3.2.8/config/database.yml
407
+ - rails_test/rails-3.2.8/config/environment.rb
408
+ - rails_test/rails-3.2.8/config/environments/development.rb
409
+ - rails_test/rails-3.2.8/config/environments/production.rb
410
+ - rails_test/rails-3.2.8/config/environments/test.rb
411
+ - rails_test/rails-3.2.8/config/initializers/backtrace_silencers.rb
412
+ - rails_test/rails-3.2.8/config/initializers/inflections.rb
413
+ - rails_test/rails-3.2.8/config/initializers/mime_types.rb
414
+ - rails_test/rails-3.2.8/config/initializers/secret_token.rb
415
+ - rails_test/rails-3.2.8/config/initializers/session_store.rb
416
+ - rails_test/rails-3.2.8/config/initializers/wrap_parameters.rb
417
+ - rails_test/rails-3.2.8/config/locales/en.yml
418
+ - rails_test/rails-3.2.8/config/routes.rb
419
+ - rails_test/rails-3.2.8/db/migrate/20110228091428_create_entities.rb
420
+ - rails_test/rails-3.2.8/db/migrate/20110228093241_create_platforms.rb
421
+ - rails_test/rails-3.2.8/db/migrate/20110228094444_create_versions.rb
422
+ - rails_test/rails-3.2.8/db/schema.rb
423
+ - rails_test/rails-3.2.8/db/seeds.rb
424
+ - rails_test/rails-3.2.8/doc/README_FOR_APP
425
+ - rails_test/rails-3.2.8/lib/assets/.gitkeep
426
+ - rails_test/rails-3.2.8/lib/tasks/.gitkeep
427
+ - rails_test/rails-3.2.8/log/.gitkeep
428
+ - rails_test/rails-3.2.8/public/404.html
429
+ - rails_test/rails-3.2.8/public/422.html
430
+ - rails_test/rails-3.2.8/public/500.html
431
+ - rails_test/rails-3.2.8/public/favicon.ico
432
+ - rails_test/rails-3.2.8/public/index.html
433
+ - rails_test/rails-3.2.8/public/robots.txt
434
+ - rails_test/rails-3.2.8/script/rails
435
+ - rails_test/rails-3.2.8/spec/controllers/entities_controller_spec.rb
436
+ - rails_test/rails-3.2.8/spec/controllers/platforms_controller_spec.rb
437
+ - rails_test/rails-3.2.8/spec/helpers/entities_helper_spec.rb
438
+ - rails_test/rails-3.2.8/spec/helpers/platforms_helper_spec.rb
439
+ - rails_test/rails-3.2.8/spec/integration/navigation_spec.rb
440
+ - rails_test/rails-3.2.8/spec/integration/paper_trail_manager_spec.rb
441
+ - rails_test/rails-3.2.8/spec/models/entity_spec.rb
442
+ - rails_test/rails-3.2.8/spec/models/platform_spec.rb
443
+ - rails_test/rails-3.2.8/spec/requests/entities_spec.rb
444
+ - rails_test/rails-3.2.8/spec/requests/platforms_spec.rb
445
+ - rails_test/rails-3.2.8/spec/routing/entities_routing_spec.rb
446
+ - rails_test/rails-3.2.8/spec/routing/platforms_routing_spec.rb
447
+ - rails_test/rails-3.2.8/spec/spec_helper.rb
448
+ - rails_test/rails-3.2.8/spec/support/factories.rb
449
+ - rails_test/rails-3.2.8/spec/views/entities/edit.html.erb_spec.rb
450
+ - rails_test/rails-3.2.8/spec/views/entities/index.html.erb_spec.rb
451
+ - rails_test/rails-3.2.8/spec/views/entities/new.html.erb_spec.rb
452
+ - rails_test/rails-3.2.8/spec/views/entities/show.html.erb_spec.rb
453
+ - rails_test/rails-3.2.8/spec/views/platforms/edit.html.erb_spec.rb
454
+ - rails_test/rails-3.2.8/spec/views/platforms/index.html.erb_spec.rb
455
+ - rails_test/rails-3.2.8/spec/views/platforms/new.html.erb_spec.rb
456
+ - rails_test/rails-3.2.8/spec/views/platforms/show.html.erb_spec.rb
457
+ - rails_test/rails-3.2.8/test/fixtures/.gitkeep
458
+ - rails_test/rails-3.2.8/test/functional/.gitkeep
459
+ - rails_test/rails-3.2.8/test/integration/.gitkeep
460
+ - rails_test/rails-3.2.8/test/performance/browsing_test.rb
461
+ - rails_test/rails-3.2.8/test/test_helper.rb
462
+ - rails_test/rails-3.2.8/test/unit/.gitkeep
463
+ - rails_test/rails-3.2.8/vendor/assets/javascripts/.gitkeep
464
+ - rails_test/rails-3.2.8/vendor/assets/stylesheets/.gitkeep
465
+ - rails_test/rails-3.2.8/vendor/plugins/.gitkeep
282
466
  homepage: http://github.com/igal/paper_trail_manager
283
467
  licenses: []
284
468