paper_trail_manager 0.2.0 → 0.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (337) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +15 -7
  3. data/.travis.yml +9 -4
  4. data/Appraisals +15 -0
  5. data/CHANGES.md +5 -0
  6. data/Gemfile +3 -26
  7. data/README.md +6 -1
  8. data/Rakefile +8 -31
  9. data/app/controllers/paper_trail_manager/changes_controller.rb +3 -3
  10. data/app/helpers/paper_trail_manager/changes_helper.rb +1 -1
  11. data/app/views/paper_trail_manager/changes/_version.html.erb +1 -1
  12. data/gemfiles/rails_3.2.gemfile +7 -0
  13. data/gemfiles/rails_4.0.gemfile +7 -0
  14. data/gemfiles/rails_4.1.gemfile +7 -0
  15. data/gemfiles/rails_4.2.gemfile +7 -0
  16. data/lib/paper_trail_manager.rb +1 -0
  17. data/paper_trail_manager.gemspec +27 -381
  18. data/{rails_test/common/spec → spec}/controllers/entities_controller_spec.rb +1 -1
  19. data/{rails_test/common/spec → spec}/controllers/platforms_controller_spec.rb +1 -1
  20. data/{rails_test/rails-3.1.8 → spec/dummy}/.gitignore +0 -0
  21. data/spec/dummy/Gemfile +9 -0
  22. data/{rails_test/rails-3.2.8 → spec/dummy}/README.rdoc +0 -0
  23. data/{rails_test/rails-3.2.8 → spec/dummy}/Rakefile +0 -0
  24. data/{rails_test/rails-3.0.17/public → spec/dummy/app/assets}/images/rails.png +0 -0
  25. data/{rails_test/rails-3.2.8 → spec/dummy}/app/assets/javascripts/application.js +0 -0
  26. data/{rails_test/rails-3.2.8 → spec/dummy}/app/assets/stylesheets/application.css +0 -0
  27. data/{rails_test/common → spec/dummy}/app/controllers/application_controller.rb +0 -0
  28. data/{rails_test/common → spec/dummy}/app/controllers/entities_controller.rb +0 -0
  29. data/{rails_test/common → spec/dummy}/app/controllers/platforms_controller.rb +0 -0
  30. data/{rails_test/common → spec/dummy}/app/helpers/application_helper.rb +0 -0
  31. data/{rails_test/common → spec/dummy}/app/helpers/entities_helper.rb +0 -0
  32. data/{rails_test/common → spec/dummy}/app/helpers/platforms_helper.rb +0 -0
  33. data/{rails_test/rails-3.0.17/lib/tasks → spec/dummy/app/mailers}/.gitkeep +0 -0
  34. data/{rails_test/rails-3.0.17/public/stylesheets → spec/dummy/app/models}/.gitkeep +0 -0
  35. data/{rails_test/common → spec/dummy}/app/models/entity.rb +0 -2
  36. data/{rails_test/rails-3.1.8 → spec/dummy}/app/models/platform.rb +0 -2
  37. data/{rails_test/common → spec/dummy}/app/views/application/index.html.erb +0 -0
  38. data/{rails_test/common → spec/dummy}/app/views/entities/_form.html.erb +0 -0
  39. data/{rails_test/common → spec/dummy}/app/views/entities/edit.html.erb +0 -0
  40. data/{rails_test/rails-3.1.8 → spec/dummy}/app/views/entities/index.html.erb +1 -1
  41. data/{rails_test/common → spec/dummy}/app/views/entities/new.html.erb +0 -0
  42. data/{rails_test/common → spec/dummy}/app/views/entities/show.html.erb +0 -0
  43. data/{rails_test/common → spec/dummy}/app/views/layouts/application.html.erb +0 -0
  44. data/{rails_test/common → spec/dummy}/app/views/platforms/_form.html.erb +0 -0
  45. data/{rails_test/common → spec/dummy}/app/views/platforms/edit.html.erb +0 -0
  46. data/{rails_test/common → spec/dummy}/app/views/platforms/index.html.erb +1 -1
  47. data/{rails_test/common → spec/dummy}/app/views/platforms/new.html.erb +0 -0
  48. data/{rails_test/common → spec/dummy}/app/views/platforms/show.html.erb +0 -0
  49. data/{rails_test/rails-3.2.8 → spec/dummy}/config.ru +0 -0
  50. data/{rails_test/rails-3.2.8 → spec/dummy}/config/application.rb +3 -1
  51. data/{rails_test/rails-3.0.17 → spec/dummy}/config/boot.rb +0 -0
  52. data/{rails_test/common → spec/dummy}/config/database.yml +0 -0
  53. data/{rails_test/rails-3.2.8 → spec/dummy}/config/environment.rb +0 -0
  54. data/{rails_test/rails-3.2.8 → spec/dummy}/config/environments/development.rb +1 -1
  55. data/{rails_test/rails-3.2.8 → spec/dummy}/config/environments/production.rb +1 -1
  56. data/{rails_test/rails-3.2.8 → spec/dummy}/config/environments/test.rb +4 -5
  57. data/{rails_test/rails-3.0.17 → spec/dummy}/config/initializers/backtrace_silencers.rb +0 -0
  58. data/{rails_test/rails-3.2.8 → spec/dummy}/config/initializers/inflections.rb +0 -0
  59. data/{rails_test/rails-3.0.17 → spec/dummy}/config/initializers/mime_types.rb +0 -0
  60. data/{rails_test/rails-3.1.8 → spec/dummy}/config/initializers/secret_token.rb +1 -1
  61. data/{rails_test/rails-3.2.8 → spec/dummy}/config/initializers/session_store.rb +0 -0
  62. data/{rails_test/rails-3.1.8 → spec/dummy}/config/initializers/wrap_parameters.rb +0 -0
  63. data/{rails_test/rails-3.1.8 → spec/dummy}/config/locales/en.yml +0 -0
  64. data/{rails_test/rails-3.2.8 → spec/dummy}/config/routes.rb +0 -0
  65. data/{rails_test/common → spec/dummy}/db/migrate/20110228091428_create_entities.rb +0 -0
  66. data/{rails_test/common → spec/dummy}/db/migrate/20110228093241_create_platforms.rb +0 -0
  67. data/{rails_test/common → spec/dummy}/db/migrate/20110228094444_create_versions.rb +0 -0
  68. data/{rails_test/rails-3.1.8 → spec/dummy}/db/schema.rb +15 -14
  69. data/{rails_test/rails-3.1.8 → spec/dummy}/db/seeds.rb +0 -0
  70. data/{rails_test/rails-3.0.17 → spec/dummy}/doc/README_FOR_APP +0 -0
  71. data/{rails_test/rails-3.0.17/vendor/plugins → spec/dummy/lib/assets}/.gitkeep +0 -0
  72. data/{rails_test/rails-3.1.8/app/mailers → spec/dummy/lib/tasks}/.gitkeep +0 -0
  73. data/{rails_test/rails-3.1.8/app/models → spec/dummy/log}/.gitkeep +0 -0
  74. data/{rails_test/rails-3.0.17 → spec/dummy}/public/404.html +0 -0
  75. data/{rails_test/rails-3.0.17 → spec/dummy}/public/422.html +0 -0
  76. data/{rails_test/rails-3.2.8 → spec/dummy}/public/500.html +0 -0
  77. data/{rails_test/rails-3.0.17 → spec/dummy}/public/favicon.ico +0 -0
  78. data/{rails_test/rails-3.2.8 → spec/dummy}/public/index.html +0 -0
  79. data/{rails_test/rails-3.0.17 → spec/dummy}/public/robots.txt +0 -0
  80. data/{rails_test/rails-3.0.17 → spec/dummy}/script/rails +0 -0
  81. data/{rails_test/rails-3.1.8/lib/assets → spec/dummy/test/fixtures}/.gitkeep +0 -0
  82. data/{rails_test/rails-3.1.8/lib/tasks → spec/dummy/test/functional}/.gitkeep +0 -0
  83. data/{rails_test/rails-3.1.8/log → spec/dummy/test/integration}/.gitkeep +0 -0
  84. data/{rails_test/rails-3.1.8 → spec/dummy}/test/performance/browsing_test.rb +0 -0
  85. data/{rails_test/rails-3.0.17 → spec/dummy}/test/test_helper.rb +0 -0
  86. data/{rails_test/rails-3.1.8/test/fixtures → spec/dummy/test/unit}/.gitkeep +0 -0
  87. data/{rails_test/rails-3.1.8/test/functional → spec/dummy/vendor/assets/javascripts}/.gitkeep +0 -0
  88. data/{rails_test/rails-3.1.8/test/integration → spec/dummy/vendor/assets/stylesheets}/.gitkeep +0 -0
  89. data/{rails_test/rails-3.1.8/test/unit → spec/dummy/vendor/plugins}/.gitkeep +0 -0
  90. data/{rails_test/common/spec → spec}/helpers/entities_helper_spec.rb +0 -0
  91. data/{rails_test/common/spec → spec}/helpers/platforms_helper_spec.rb +0 -0
  92. data/{rails_test/common/spec → spec}/integration/navigation_spec.rb +0 -0
  93. data/{rails_test/rails-3.1.8/spec → spec}/integration/paper_trail_manager_spec.rb +14 -14
  94. data/{rails_test/common/spec → spec}/models/entity_spec.rb +0 -0
  95. data/{rails_test/common/spec → spec}/models/platform_spec.rb +0 -0
  96. data/spec/rails_helper.rb +27 -0
  97. data/{rails_test/common/spec → spec}/requests/entities_spec.rb +0 -0
  98. data/{rails_test/common/spec → spec}/requests/platforms_spec.rb +0 -0
  99. data/{rails_test/common/spec → spec}/routing/entities_routing_spec.rb +0 -0
  100. data/{rails_test/common/spec → spec}/routing/platforms_routing_spec.rb +0 -0
  101. data/spec/spec_helper.rb +90 -0
  102. data/{rails_test/rails-3.0.17/spec → spec}/support/factories.rb +1 -1
  103. data/{rails_test/common/spec → spec}/views/entities/edit.html.erb_spec.rb +0 -0
  104. data/{rails_test/common/spec → spec}/views/entities/index.html.erb_spec.rb +0 -0
  105. data/{rails_test/common/spec → spec}/views/entities/new.html.erb_spec.rb +0 -0
  106. data/{rails_test/common/spec → spec}/views/entities/show.html.erb_spec.rb +0 -0
  107. data/{rails_test/common/spec → spec}/views/platforms/edit.html.erb_spec.rb +0 -0
  108. data/{rails_test/common/spec → spec}/views/platforms/index.html.erb_spec.rb +0 -0
  109. data/{rails_test/common/spec → spec}/views/platforms/new.html.erb_spec.rb +0 -0
  110. data/{rails_test/common/spec → spec}/views/platforms/show.html.erb_spec.rb +0 -0
  111. metadata +368 -458
  112. data/Gemfile.lock +0 -104
  113. data/VERSION +0 -1
  114. data/rails_test/Rakefile +0 -90
  115. data/rails_test/common/app/models/platform.rb +0 -8
  116. data/rails_test/common/app/views/entities/index.html.erb +0 -21
  117. data/rails_test/common/spec/integration/paper_trail_manager_spec.rb +0 -232
  118. data/rails_test/common/spec/spec_helper.rb +0 -32
  119. data/rails_test/common/spec/support/factories.rb +0 -14
  120. data/rails_test/generate_test_directory +0 -59
  121. data/rails_test/rails-3.0.17/.gitignore +0 -4
  122. data/rails_test/rails-3.0.17/README +0 -256
  123. data/rails_test/rails-3.0.17/Rakefile +0 -7
  124. data/rails_test/rails-3.0.17/app/controllers/application_controller.rb +0 -6
  125. data/rails_test/rails-3.0.17/app/controllers/entities_controller.rb +0 -83
  126. data/rails_test/rails-3.0.17/app/controllers/platforms_controller.rb +0 -83
  127. data/rails_test/rails-3.0.17/app/helpers/application_helper.rb +0 -2
  128. data/rails_test/rails-3.0.17/app/helpers/entities_helper.rb +0 -2
  129. data/rails_test/rails-3.0.17/app/helpers/platforms_helper.rb +0 -2
  130. data/rails_test/rails-3.0.17/app/models/entity.rb +0 -8
  131. data/rails_test/rails-3.0.17/app/models/platform.rb +0 -8
  132. data/rails_test/rails-3.0.17/app/views/application/index.html.erb +0 -6
  133. data/rails_test/rails-3.0.17/app/views/entities/_form.html.erb +0 -17
  134. data/rails_test/rails-3.0.17/app/views/entities/edit.html.erb +0 -6
  135. data/rails_test/rails-3.0.17/app/views/entities/index.html.erb +0 -21
  136. data/rails_test/rails-3.0.17/app/views/entities/new.html.erb +0 -5
  137. data/rails_test/rails-3.0.17/app/views/entities/show.html.erb +0 -5
  138. data/rails_test/rails-3.0.17/app/views/layouts/application.html.erb +0 -14
  139. data/rails_test/rails-3.0.17/app/views/platforms/_form.html.erb +0 -17
  140. data/rails_test/rails-3.0.17/app/views/platforms/edit.html.erb +0 -6
  141. data/rails_test/rails-3.0.17/app/views/platforms/index.html.erb +0 -21
  142. data/rails_test/rails-3.0.17/app/views/platforms/new.html.erb +0 -5
  143. data/rails_test/rails-3.0.17/app/views/platforms/show.html.erb +0 -5
  144. data/rails_test/rails-3.0.17/config.ru +0 -4
  145. data/rails_test/rails-3.0.17/config/application.rb +0 -42
  146. data/rails_test/rails-3.0.17/config/database.yml +0 -22
  147. data/rails_test/rails-3.0.17/config/environment.rb +0 -5
  148. data/rails_test/rails-3.0.17/config/environments/development.rb +0 -26
  149. data/rails_test/rails-3.0.17/config/environments/production.rb +0 -49
  150. data/rails_test/rails-3.0.17/config/environments/test.rb +0 -35
  151. data/rails_test/rails-3.0.17/config/initializers/inflections.rb +0 -10
  152. data/rails_test/rails-3.0.17/config/initializers/secret_token.rb +0 -7
  153. data/rails_test/rails-3.0.17/config/initializers/session_store.rb +0 -8
  154. data/rails_test/rails-3.0.17/config/locales/en.yml +0 -5
  155. data/rails_test/rails-3.0.17/config/routes.rb +0 -8
  156. data/rails_test/rails-3.0.17/db/migrate/20110228091428_create_entities.rb +0 -14
  157. data/rails_test/rails-3.0.17/db/migrate/20110228093241_create_platforms.rb +0 -14
  158. data/rails_test/rails-3.0.17/db/migrate/20110228094444_create_versions.rb +0 -18
  159. data/rails_test/rails-3.0.17/db/schema.rb +0 -40
  160. data/rails_test/rails-3.0.17/db/seeds.rb +0 -7
  161. data/rails_test/rails-3.0.17/public/500.html +0 -26
  162. data/rails_test/rails-3.0.17/public/index.html +0 -239
  163. data/rails_test/rails-3.0.17/public/javascripts/application.js +0 -2
  164. data/rails_test/rails-3.0.17/public/javascripts/controls.js +0 -965
  165. data/rails_test/rails-3.0.17/public/javascripts/dragdrop.js +0 -974
  166. data/rails_test/rails-3.0.17/public/javascripts/effects.js +0 -1123
  167. data/rails_test/rails-3.0.17/public/javascripts/prototype.js +0 -6001
  168. data/rails_test/rails-3.0.17/public/javascripts/rails.js +0 -202
  169. data/rails_test/rails-3.0.17/spec/controllers/entities_controller_spec.rb +0 -125
  170. data/rails_test/rails-3.0.17/spec/controllers/platforms_controller_spec.rb +0 -125
  171. data/rails_test/rails-3.0.17/spec/helpers/entities_helper_spec.rb +0 -15
  172. data/rails_test/rails-3.0.17/spec/helpers/platforms_helper_spec.rb +0 -15
  173. data/rails_test/rails-3.0.17/spec/integration/navigation_spec.rb +0 -7
  174. data/rails_test/rails-3.0.17/spec/integration/paper_trail_manager_spec.rb +0 -232
  175. data/rails_test/rails-3.0.17/spec/models/entity_spec.rb +0 -14
  176. data/rails_test/rails-3.0.17/spec/models/platform_spec.rb +0 -14
  177. data/rails_test/rails-3.0.17/spec/requests/entities_spec.rb +0 -11
  178. data/rails_test/rails-3.0.17/spec/requests/platforms_spec.rb +0 -11
  179. data/rails_test/rails-3.0.17/spec/routing/entities_routing_spec.rb +0 -35
  180. data/rails_test/rails-3.0.17/spec/routing/platforms_routing_spec.rb +0 -35
  181. data/rails_test/rails-3.0.17/spec/spec_helper.rb +0 -32
  182. data/rails_test/rails-3.0.17/spec/views/entities/edit.html.erb_spec.rb +0 -15
  183. data/rails_test/rails-3.0.17/spec/views/entities/index.html.erb_spec.rb +0 -14
  184. data/rails_test/rails-3.0.17/spec/views/entities/new.html.erb_spec.rb +0 -15
  185. data/rails_test/rails-3.0.17/spec/views/entities/show.html.erb_spec.rb +0 -11
  186. data/rails_test/rails-3.0.17/spec/views/platforms/edit.html.erb_spec.rb +0 -15
  187. data/rails_test/rails-3.0.17/spec/views/platforms/index.html.erb_spec.rb +0 -14
  188. data/rails_test/rails-3.0.17/spec/views/platforms/new.html.erb_spec.rb +0 -15
  189. data/rails_test/rails-3.0.17/spec/views/platforms/show.html.erb_spec.rb +0 -11
  190. data/rails_test/rails-3.0.17/test/performance/browsing_test.rb +0 -9
  191. data/rails_test/rails-3.1.8/README +0 -261
  192. data/rails_test/rails-3.1.8/Rakefile +0 -7
  193. data/rails_test/rails-3.1.8/app/assets/images/rails.png +0 -0
  194. data/rails_test/rails-3.1.8/app/assets/javascripts/application.js +0 -9
  195. data/rails_test/rails-3.1.8/app/assets/stylesheets/application.css +0 -7
  196. data/rails_test/rails-3.1.8/app/controllers/application_controller.rb +0 -6
  197. data/rails_test/rails-3.1.8/app/controllers/entities_controller.rb +0 -83
  198. data/rails_test/rails-3.1.8/app/controllers/platforms_controller.rb +0 -83
  199. data/rails_test/rails-3.1.8/app/helpers/application_helper.rb +0 -2
  200. data/rails_test/rails-3.1.8/app/helpers/entities_helper.rb +0 -2
  201. data/rails_test/rails-3.1.8/app/helpers/platforms_helper.rb +0 -2
  202. data/rails_test/rails-3.1.8/app/models/entity.rb +0 -8
  203. data/rails_test/rails-3.1.8/app/views/application/index.html.erb +0 -6
  204. data/rails_test/rails-3.1.8/app/views/entities/_form.html.erb +0 -17
  205. data/rails_test/rails-3.1.8/app/views/entities/edit.html.erb +0 -6
  206. data/rails_test/rails-3.1.8/app/views/entities/new.html.erb +0 -5
  207. data/rails_test/rails-3.1.8/app/views/entities/show.html.erb +0 -5
  208. data/rails_test/rails-3.1.8/app/views/layouts/application.html.erb +0 -14
  209. data/rails_test/rails-3.1.8/app/views/platforms/_form.html.erb +0 -17
  210. data/rails_test/rails-3.1.8/app/views/platforms/edit.html.erb +0 -6
  211. data/rails_test/rails-3.1.8/app/views/platforms/index.html.erb +0 -21
  212. data/rails_test/rails-3.1.8/app/views/platforms/new.html.erb +0 -5
  213. data/rails_test/rails-3.1.8/app/views/platforms/show.html.erb +0 -5
  214. data/rails_test/rails-3.1.8/config.ru +0 -4
  215. data/rails_test/rails-3.1.8/config/application.rb +0 -48
  216. data/rails_test/rails-3.1.8/config/boot.rb +0 -6
  217. data/rails_test/rails-3.1.8/config/database.yml +0 -22
  218. data/rails_test/rails-3.1.8/config/environment.rb +0 -5
  219. data/rails_test/rails-3.1.8/config/environments/development.rb +0 -30
  220. data/rails_test/rails-3.1.8/config/environments/production.rb +0 -60
  221. data/rails_test/rails-3.1.8/config/environments/test.rb +0 -39
  222. data/rails_test/rails-3.1.8/config/initializers/backtrace_silencers.rb +0 -7
  223. data/rails_test/rails-3.1.8/config/initializers/inflections.rb +0 -10
  224. data/rails_test/rails-3.1.8/config/initializers/mime_types.rb +0 -5
  225. data/rails_test/rails-3.1.8/config/initializers/session_store.rb +0 -8
  226. data/rails_test/rails-3.1.8/config/routes.rb +0 -8
  227. data/rails_test/rails-3.1.8/db/migrate/20110228091428_create_entities.rb +0 -14
  228. data/rails_test/rails-3.1.8/db/migrate/20110228093241_create_platforms.rb +0 -14
  229. data/rails_test/rails-3.1.8/db/migrate/20110228094444_create_versions.rb +0 -18
  230. data/rails_test/rails-3.1.8/doc/README_FOR_APP +0 -2
  231. data/rails_test/rails-3.1.8/public/404.html +0 -26
  232. data/rails_test/rails-3.1.8/public/422.html +0 -26
  233. data/rails_test/rails-3.1.8/public/500.html +0 -26
  234. data/rails_test/rails-3.1.8/public/favicon.ico +0 -0
  235. data/rails_test/rails-3.1.8/public/index.html +0 -241
  236. data/rails_test/rails-3.1.8/public/robots.txt +0 -5
  237. data/rails_test/rails-3.1.8/script/rails +0 -6
  238. data/rails_test/rails-3.1.8/spec/controllers/entities_controller_spec.rb +0 -125
  239. data/rails_test/rails-3.1.8/spec/controllers/platforms_controller_spec.rb +0 -125
  240. data/rails_test/rails-3.1.8/spec/helpers/entities_helper_spec.rb +0 -15
  241. data/rails_test/rails-3.1.8/spec/helpers/platforms_helper_spec.rb +0 -15
  242. data/rails_test/rails-3.1.8/spec/integration/navigation_spec.rb +0 -7
  243. data/rails_test/rails-3.1.8/spec/models/entity_spec.rb +0 -14
  244. data/rails_test/rails-3.1.8/spec/models/platform_spec.rb +0 -14
  245. data/rails_test/rails-3.1.8/spec/requests/entities_spec.rb +0 -11
  246. data/rails_test/rails-3.1.8/spec/requests/platforms_spec.rb +0 -11
  247. data/rails_test/rails-3.1.8/spec/routing/entities_routing_spec.rb +0 -35
  248. data/rails_test/rails-3.1.8/spec/routing/platforms_routing_spec.rb +0 -35
  249. data/rails_test/rails-3.1.8/spec/spec_helper.rb +0 -32
  250. data/rails_test/rails-3.1.8/spec/support/factories.rb +0 -14
  251. data/rails_test/rails-3.1.8/spec/views/entities/edit.html.erb_spec.rb +0 -15
  252. data/rails_test/rails-3.1.8/spec/views/entities/index.html.erb_spec.rb +0 -14
  253. data/rails_test/rails-3.1.8/spec/views/entities/new.html.erb_spec.rb +0 -15
  254. data/rails_test/rails-3.1.8/spec/views/entities/show.html.erb_spec.rb +0 -11
  255. data/rails_test/rails-3.1.8/spec/views/platforms/edit.html.erb_spec.rb +0 -15
  256. data/rails_test/rails-3.1.8/spec/views/platforms/index.html.erb_spec.rb +0 -14
  257. data/rails_test/rails-3.1.8/spec/views/platforms/new.html.erb_spec.rb +0 -15
  258. data/rails_test/rails-3.1.8/spec/views/platforms/show.html.erb_spec.rb +0 -11
  259. data/rails_test/rails-3.1.8/test/test_helper.rb +0 -13
  260. data/rails_test/rails-3.1.8/vendor/assets/stylesheets/.gitkeep +0 -0
  261. data/rails_test/rails-3.1.8/vendor/plugins/.gitkeep +0 -0
  262. data/rails_test/rails-3.2.8/.gitignore +0 -15
  263. data/rails_test/rails-3.2.8/app/assets/images/rails.png +0 -0
  264. data/rails_test/rails-3.2.8/app/controllers/application_controller.rb +0 -6
  265. data/rails_test/rails-3.2.8/app/controllers/entities_controller.rb +0 -83
  266. data/rails_test/rails-3.2.8/app/controllers/platforms_controller.rb +0 -83
  267. data/rails_test/rails-3.2.8/app/helpers/application_helper.rb +0 -2
  268. data/rails_test/rails-3.2.8/app/helpers/entities_helper.rb +0 -2
  269. data/rails_test/rails-3.2.8/app/helpers/platforms_helper.rb +0 -2
  270. data/rails_test/rails-3.2.8/app/mailers/.gitkeep +0 -0
  271. data/rails_test/rails-3.2.8/app/models/.gitkeep +0 -0
  272. data/rails_test/rails-3.2.8/app/models/entity.rb +0 -8
  273. data/rails_test/rails-3.2.8/app/models/platform.rb +0 -8
  274. data/rails_test/rails-3.2.8/app/views/application/index.html.erb +0 -6
  275. data/rails_test/rails-3.2.8/app/views/entities/_form.html.erb +0 -17
  276. data/rails_test/rails-3.2.8/app/views/entities/edit.html.erb +0 -6
  277. data/rails_test/rails-3.2.8/app/views/entities/index.html.erb +0 -21
  278. data/rails_test/rails-3.2.8/app/views/entities/new.html.erb +0 -5
  279. data/rails_test/rails-3.2.8/app/views/entities/show.html.erb +0 -5
  280. data/rails_test/rails-3.2.8/app/views/layouts/application.html.erb +0 -14
  281. data/rails_test/rails-3.2.8/app/views/platforms/_form.html.erb +0 -17
  282. data/rails_test/rails-3.2.8/app/views/platforms/edit.html.erb +0 -6
  283. data/rails_test/rails-3.2.8/app/views/platforms/index.html.erb +0 -21
  284. data/rails_test/rails-3.2.8/app/views/platforms/new.html.erb +0 -5
  285. data/rails_test/rails-3.2.8/app/views/platforms/show.html.erb +0 -5
  286. data/rails_test/rails-3.2.8/config/boot.rb +0 -6
  287. data/rails_test/rails-3.2.8/config/database.yml +0 -22
  288. data/rails_test/rails-3.2.8/config/initializers/backtrace_silencers.rb +0 -7
  289. data/rails_test/rails-3.2.8/config/initializers/mime_types.rb +0 -5
  290. data/rails_test/rails-3.2.8/config/initializers/secret_token.rb +0 -7
  291. data/rails_test/rails-3.2.8/config/initializers/wrap_parameters.rb +0 -14
  292. data/rails_test/rails-3.2.8/config/locales/en.yml +0 -5
  293. data/rails_test/rails-3.2.8/db/migrate/20110228091428_create_entities.rb +0 -14
  294. data/rails_test/rails-3.2.8/db/migrate/20110228093241_create_platforms.rb +0 -14
  295. data/rails_test/rails-3.2.8/db/migrate/20110228094444_create_versions.rb +0 -18
  296. data/rails_test/rails-3.2.8/db/schema.rb +0 -40
  297. data/rails_test/rails-3.2.8/db/seeds.rb +0 -7
  298. data/rails_test/rails-3.2.8/doc/README_FOR_APP +0 -2
  299. data/rails_test/rails-3.2.8/lib/assets/.gitkeep +0 -0
  300. data/rails_test/rails-3.2.8/lib/tasks/.gitkeep +0 -0
  301. data/rails_test/rails-3.2.8/log/.gitkeep +0 -0
  302. data/rails_test/rails-3.2.8/public/404.html +0 -26
  303. data/rails_test/rails-3.2.8/public/422.html +0 -26
  304. data/rails_test/rails-3.2.8/public/favicon.ico +0 -0
  305. data/rails_test/rails-3.2.8/public/robots.txt +0 -5
  306. data/rails_test/rails-3.2.8/script/rails +0 -6
  307. data/rails_test/rails-3.2.8/spec/controllers/entities_controller_spec.rb +0 -125
  308. data/rails_test/rails-3.2.8/spec/controllers/platforms_controller_spec.rb +0 -125
  309. data/rails_test/rails-3.2.8/spec/helpers/entities_helper_spec.rb +0 -15
  310. data/rails_test/rails-3.2.8/spec/helpers/platforms_helper_spec.rb +0 -15
  311. data/rails_test/rails-3.2.8/spec/integration/navigation_spec.rb +0 -7
  312. data/rails_test/rails-3.2.8/spec/integration/paper_trail_manager_spec.rb +0 -232
  313. data/rails_test/rails-3.2.8/spec/models/entity_spec.rb +0 -14
  314. data/rails_test/rails-3.2.8/spec/models/platform_spec.rb +0 -14
  315. data/rails_test/rails-3.2.8/spec/requests/entities_spec.rb +0 -11
  316. data/rails_test/rails-3.2.8/spec/requests/platforms_spec.rb +0 -11
  317. data/rails_test/rails-3.2.8/spec/routing/entities_routing_spec.rb +0 -35
  318. data/rails_test/rails-3.2.8/spec/routing/platforms_routing_spec.rb +0 -35
  319. data/rails_test/rails-3.2.8/spec/spec_helper.rb +0 -32
  320. data/rails_test/rails-3.2.8/spec/support/factories.rb +0 -14
  321. data/rails_test/rails-3.2.8/spec/views/entities/edit.html.erb_spec.rb +0 -15
  322. data/rails_test/rails-3.2.8/spec/views/entities/index.html.erb_spec.rb +0 -14
  323. data/rails_test/rails-3.2.8/spec/views/entities/new.html.erb_spec.rb +0 -15
  324. data/rails_test/rails-3.2.8/spec/views/entities/show.html.erb_spec.rb +0 -11
  325. data/rails_test/rails-3.2.8/spec/views/platforms/edit.html.erb_spec.rb +0 -15
  326. data/rails_test/rails-3.2.8/spec/views/platforms/index.html.erb_spec.rb +0 -14
  327. data/rails_test/rails-3.2.8/spec/views/platforms/new.html.erb_spec.rb +0 -15
  328. data/rails_test/rails-3.2.8/spec/views/platforms/show.html.erb_spec.rb +0 -11
  329. data/rails_test/rails-3.2.8/test/fixtures/.gitkeep +0 -0
  330. data/rails_test/rails-3.2.8/test/functional/.gitkeep +0 -0
  331. data/rails_test/rails-3.2.8/test/integration/.gitkeep +0 -0
  332. data/rails_test/rails-3.2.8/test/performance/browsing_test.rb +0 -12
  333. data/rails_test/rails-3.2.8/test/test_helper.rb +0 -13
  334. data/rails_test/rails-3.2.8/test/unit/.gitkeep +0 -0
  335. data/rails_test/rails-3.2.8/vendor/assets/javascripts/.gitkeep +0 -0
  336. data/rails_test/rails-3.2.8/vendor/assets/stylesheets/.gitkeep +0 -0
  337. data/rails_test/rails-3.2.8/vendor/plugins/.gitkeep +0 -0
@@ -0,0 +1,27 @@
1
+ # This file is copied to spec/ when you run 'rails generate rspec:install'
2
+ ENV["RAILS_ENV"] ||= 'test'
3
+ require File.expand_path("../dummy/config/environment", __FILE__)
4
+ require "rspec/rails"
5
+ require "rspec/active_model/mocks"
6
+
7
+ RSpec.configure do |config|
8
+ # If you're not using ActiveRecord, or you'd prefer not to run each of your
9
+ # examples within a transaction, remove the following line or assign false
10
+ # instead of true.
11
+ config.use_transactional_fixtures = true
12
+
13
+ # RSpec Rails can automatically mix in different behaviours to your tests
14
+ # based on their file location, for example enabling you to call `get` and
15
+ # `post` in specs under `spec/controllers`.
16
+ #
17
+ # You can disable this behaviour by removing the line below, and instead
18
+ # explicitly tag your specs with their type, e.g.:
19
+ #
20
+ # RSpec.describe UsersController, :type => :controller do
21
+ # # ...
22
+ # end
23
+ #
24
+ # The different available types are documented in the features, such as in
25
+ # https://relishapp.com/rspec/rspec-rails/docs
26
+ config.infer_spec_type_from_file_location!
27
+ end
@@ -0,0 +1,90 @@
1
+ require "rails_helper"
2
+ require "rspec/its"
3
+ require "byebug"
4
+
5
+ # This file was generated by the `rails generate rspec:install` command. Conventionally, all
6
+ # specs live under a `spec` directory, which RSpec adds to the `$LOAD_PATH`.
7
+ # The generated `.rspec` file contains `--require spec_helper` which will cause this
8
+ # file to always be loaded, without a need to explicitly require it in any files.
9
+ #
10
+ # Given that it is always loaded, you are encouraged to keep this file as
11
+ # light-weight as possible. Requiring heavyweight dependencies from this file
12
+ # will add to the boot time of your test suite on EVERY test run, even for an
13
+ # individual file that may not need all of that loaded. Instead, make a
14
+ # separate helper file that requires this one and then use it only in the specs
15
+ # that actually need it.
16
+ #
17
+ # The `.rspec` file also contains a few flags that are not defaults but that
18
+ # users commonly want.
19
+ #
20
+ # See http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration
21
+
22
+ # Requires supporting ruby files with custom matchers and macros, etc, in
23
+ # spec/support/ and its subdirectories. Files matching `spec/**/*_spec.rb` are
24
+ # run as spec files by default. This means that files in spec/support that end
25
+ # in _spec.rb will both be required and run as specs, causing the specs to be
26
+ # run twice. It is recommended that you do not name files matching this glob to
27
+ # end with _spec.rb. You can configure this pattern with with the --pattern
28
+ # option on the command line or in ~/.rspec, .rspec or `.rspec-local`.
29
+ Dir["spec/support/**/*.rb"].each { |f| require File.expand_path(f) }
30
+
31
+ RSpec.configure do |config|
32
+ # config.include(Capybara::Webkit::RspecMatchers, :type => :feature)
33
+
34
+ # These two settings work together to allow you to limit a spec run
35
+ # to individual examples or groups you care about by tagging them with
36
+ # `:focus` metadata. When nothing is tagged with `:focus`, all examples
37
+ # get run.
38
+ config.filter_run :focus
39
+ config.run_all_when_everything_filtered = true
40
+
41
+ # Many RSpec users commonly either run the entire suite or an individual
42
+ # file, and it's useful to allow more verbose output when running an
43
+ # individual spec file.
44
+ if config.files_to_run.one?
45
+ # Use the documentation formatter for detailed output,
46
+ # unless a formatter has already been configured
47
+ # (e.g. via a command-line flag).
48
+ config.default_formatter = 'doc'
49
+ end
50
+
51
+ # Print the 10 slowest examples and example groups at the
52
+ # end of the spec run, to help surface which specs are running
53
+ # particularly slow.
54
+ # config.profile_examples = 10
55
+
56
+ # Run specs in random order to surface order dependencies. If you find an
57
+ # order dependency and want to debug it, you can fix the order by providing
58
+ # the seed, which is printed after each run.
59
+ # --seed 1234
60
+ config.order = :random
61
+
62
+ # Seed global randomization in this process using the `--seed` CLI option.
63
+ # Setting this allows you to use `--seed` to deterministically reproduce
64
+ # test failures related to randomization by passing the same `--seed` value
65
+ # as the one that triggered the failure.
66
+ Kernel.srand config.seed
67
+
68
+ # rspec-expectations config goes here. You can use an alternate
69
+ # assertion/expectation library such as wrong or the stdlib/minitest
70
+ # assertions if you prefer.
71
+ config.expect_with :rspec do |expectations|
72
+ # Enable only the newer, non-monkey-patching expect syntax.
73
+ # For more details, see:
74
+ # - http://myronmars.to/n/dev-blog/2012/06/rspecs-new-expectation-syntax
75
+ expectations.syntax = [:should, :expect]
76
+ end
77
+
78
+ # rspec-mocks config goes here. You can use an alternate test double
79
+ # library (such as bogus or mocha) by changing the `mock_with` option here.
80
+ config.mock_with :rspec do |mocks|
81
+ # Enable only the newer, non-monkey-patching expect syntax.
82
+ # For more details, see:
83
+ # - http://teaisaweso.me/blog/2013/05/27/rspecs-new-message-expectation-syntax/
84
+ mocks.syntax = [:should, :expect]
85
+
86
+ # Prevents you from mocking or stubbing a method that does not exist on
87
+ # a real object. This is generally recommended.
88
+ # mocks.verify_partial_doubles = true
89
+ end
90
+ end
@@ -1,4 +1,4 @@
1
- require 'factory_girl'
1
+ require 'factory_girl_rails'
2
2
 
3
3
  FactoryGirl.define do
4
4
  factory :entity do
metadata CHANGED
@@ -1,500 +1,410 @@
1
- --- !ruby/object:Gem::Specification
1
+ --- !ruby/object:Gem::Specification
2
2
  name: paper_trail_manager
3
- version: !ruby/object:Gem::Version
4
- hash: 23
5
- prerelease:
6
- segments:
7
- - 0
8
- - 2
9
- - 0
10
- version: 0.2.0
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.3.0
11
5
  platform: ruby
12
- authors:
13
- - Igal Koshevoy
6
+ authors:
7
+ - mail@reidbeels.com
14
8
  autorequire:
15
9
  bindir: bin
16
10
  cert_chain: []
17
-
18
- date: 2012-08-13 00:00:00 Z
19
- dependencies:
20
- - !ruby/object:Gem::Dependency
21
- version_requirements: &id001 !ruby/object:Gem::Requirement
22
- none: false
23
- requirements:
11
+ date: 2015-03-22 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rails
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
24
17
  - - ">="
25
- - !ruby/object:Gem::Version
26
- hash: 3
27
- segments:
28
- - 0
29
- version: "0"
30
- name: rake
31
- prerelease: false
18
+ - !ruby/object:Gem::Version
19
+ version: '3.0'
20
+ - - "<"
21
+ - !ruby/object:Gem::Version
22
+ version: '5.0'
32
23
  type: :runtime
33
- requirement: *id001
34
- - !ruby/object:Gem::Dependency
35
- version_requirements: &id002 !ruby/object:Gem::Requirement
36
- none: false
37
- requirements:
38
- - - ~>
39
- - !ruby/object:Gem::Version
40
- hash: 7
41
- segments:
42
- - 3
43
- - 0
44
- version: "3.0"
45
- name: rails
46
24
  prerelease: false
47
- type: :runtime
48
- requirement: *id002
49
- - !ruby/object:Gem::Dependency
50
- version_requirements: &id003 !ruby/object:Gem::Requirement
51
- none: false
52
- requirements:
53
- - - ~>
54
- - !ruby/object:Gem::Version
55
- hash: 3
56
- segments:
57
- - 2
58
- - 0
59
- version: "2.0"
25
+ version_requirements: !ruby/object:Gem::Requirement
26
+ requirements:
27
+ - - ">="
28
+ - !ruby/object:Gem::Version
29
+ version: '3.0'
30
+ - - "<"
31
+ - !ruby/object:Gem::Version
32
+ version: '5.0'
33
+ - !ruby/object:Gem::Dependency
60
34
  name: paper_trail
61
- prerelease: false
35
+ requirement: !ruby/object:Gem::Requirement
36
+ requirements:
37
+ - - "~>"
38
+ - !ruby/object:Gem::Version
39
+ version: '3.0'
62
40
  type: :runtime
63
- requirement: *id003
64
- - !ruby/object:Gem::Dependency
65
- version_requirements: &id004 !ruby/object:Gem::Requirement
66
- none: false
67
- requirements:
68
- - - ~>
69
- - !ruby/object:Gem::Version
70
- hash: 1923831917
71
- segments:
72
- - 3
73
- - 0
74
- - pre
75
- - 2
76
- version: 3.0.pre2
77
- name: will_paginate
78
41
  prerelease: false
42
+ version_requirements: !ruby/object:Gem::Requirement
43
+ requirements:
44
+ - - "~>"
45
+ - !ruby/object:Gem::Version
46
+ version: '3.0'
47
+ - !ruby/object:Gem::Dependency
48
+ name: will_paginate
49
+ requirement: !ruby/object:Gem::Requirement
50
+ requirements:
51
+ - - "~>"
52
+ - !ruby/object:Gem::Version
53
+ version: '3.0'
79
54
  type: :runtime
80
- requirement: *id004
81
- - !ruby/object:Gem::Dependency
82
- version_requirements: &id005 !ruby/object:Gem::Requirement
83
- none: false
84
- requirements:
85
- - - ">="
86
- - !ruby/object:Gem::Version
87
- hash: 3
88
- segments:
89
- - 0
90
- version: "0"
91
- name: rdoc
92
55
  prerelease: false
56
+ version_requirements: !ruby/object:Gem::Requirement
57
+ requirements:
58
+ - - "~>"
59
+ - !ruby/object:Gem::Version
60
+ version: '3.0'
61
+ - !ruby/object:Gem::Dependency
62
+ name: rake
63
+ requirement: !ruby/object:Gem::Requirement
64
+ requirements:
65
+ - - "~>"
66
+ - !ruby/object:Gem::Version
67
+ version: '10.4'
93
68
  type: :development
94
- requirement: *id005
95
- - !ruby/object:Gem::Dependency
96
- version_requirements: &id006 !ruby/object:Gem::Requirement
97
- none: false
98
- requirements:
99
- - - ~>
100
- - !ruby/object:Gem::Version
101
- hash: 63
102
- segments:
103
- - 1
104
- - 8
105
- - 4
106
- version: 1.8.4
107
- name: jeweler
108
69
  prerelease: false
70
+ version_requirements: !ruby/object:Gem::Requirement
71
+ requirements:
72
+ - - "~>"
73
+ - !ruby/object:Gem::Version
74
+ version: '10.4'
75
+ - !ruby/object:Gem::Dependency
76
+ name: sqlite3
77
+ requirement: !ruby/object:Gem::Requirement
78
+ requirements:
79
+ - - "~>"
80
+ - !ruby/object:Gem::Version
81
+ version: '1.3'
82
+ type: :development
83
+ prerelease: false
84
+ version_requirements: !ruby/object:Gem::Requirement
85
+ requirements:
86
+ - - "~>"
87
+ - !ruby/object:Gem::Version
88
+ version: '1.3'
89
+ - !ruby/object:Gem::Dependency
90
+ name: factory_girl_rails
91
+ requirement: !ruby/object:Gem::Requirement
92
+ requirements:
93
+ - - "~>"
94
+ - !ruby/object:Gem::Version
95
+ version: '4.0'
109
96
  type: :development
110
- requirement: *id006
111
- - !ruby/object:Gem::Dependency
112
- version_requirements: &id007 !ruby/object:Gem::Requirement
113
- none: false
114
- requirements:
115
- - - ">="
116
- - !ruby/object:Gem::Version
117
- hash: 3
118
- segments:
119
- - 0
120
- version: "0"
121
- name: sqlite3-ruby
122
97
  prerelease: false
98
+ version_requirements: !ruby/object:Gem::Requirement
99
+ requirements:
100
+ - - "~>"
101
+ - !ruby/object:Gem::Version
102
+ version: '4.0'
103
+ - !ruby/object:Gem::Dependency
104
+ name: rspec-rails
105
+ requirement: !ruby/object:Gem::Requirement
106
+ requirements:
107
+ - - "~>"
108
+ - !ruby/object:Gem::Version
109
+ version: '3.0'
123
110
  type: :development
124
- requirement: *id007
125
- description: A user interface for `paper_trail` versioning data in Ruby on Rails 3 applications.
126
- email: igal@pragmaticraft.com
111
+ prerelease: false
112
+ version_requirements: !ruby/object:Gem::Requirement
113
+ requirements:
114
+ - - "~>"
115
+ - !ruby/object:Gem::Version
116
+ version: '3.0'
117
+ - !ruby/object:Gem::Dependency
118
+ name: rspec-activemodel-mocks
119
+ requirement: !ruby/object:Gem::Requirement
120
+ requirements:
121
+ - - "~>"
122
+ - !ruby/object:Gem::Version
123
+ version: '1.0'
124
+ type: :development
125
+ prerelease: false
126
+ version_requirements: !ruby/object:Gem::Requirement
127
+ requirements:
128
+ - - "~>"
129
+ - !ruby/object:Gem::Version
130
+ version: '1.0'
131
+ - !ruby/object:Gem::Dependency
132
+ name: rspec-its
133
+ requirement: !ruby/object:Gem::Requirement
134
+ requirements:
135
+ - - "~>"
136
+ - !ruby/object:Gem::Version
137
+ version: '1.0'
138
+ type: :development
139
+ prerelease: false
140
+ version_requirements: !ruby/object:Gem::Requirement
141
+ requirements:
142
+ - - "~>"
143
+ - !ruby/object:Gem::Version
144
+ version: '1.0'
145
+ - !ruby/object:Gem::Dependency
146
+ name: appraisal
147
+ requirement: !ruby/object:Gem::Requirement
148
+ requirements:
149
+ - - "~>"
150
+ - !ruby/object:Gem::Version
151
+ version: '1.0'
152
+ type: :development
153
+ prerelease: false
154
+ version_requirements: !ruby/object:Gem::Requirement
155
+ requirements:
156
+ - - "~>"
157
+ - !ruby/object:Gem::Version
158
+ version: '1.0'
159
+ - !ruby/object:Gem::Dependency
160
+ name: byebug
161
+ requirement: !ruby/object:Gem::Requirement
162
+ requirements:
163
+ - - ">="
164
+ - !ruby/object:Gem::Version
165
+ version: '0'
166
+ type: :development
167
+ prerelease: false
168
+ version_requirements: !ruby/object:Gem::Requirement
169
+ requirements:
170
+ - - ">="
171
+ - !ruby/object:Gem::Version
172
+ version: '0'
173
+ description: Browse, subscribe, view and revert changes to records when using Ruby
174
+ on Rails 3 and the `paper_trail` gem.
175
+ email:
127
176
  executables: []
128
-
129
177
  extensions: []
130
-
131
- extra_rdoc_files:
132
- - LICENSE.txt
133
- - README.md
134
- files:
135
- - .gitignore
136
- - .travis.yml
178
+ extra_rdoc_files: []
179
+ files:
180
+ - ".gitignore"
181
+ - ".travis.yml"
182
+ - Appraisals
137
183
  - CHANGES.md
138
184
  - Gemfile
139
- - Gemfile.lock
140
185
  - LICENSE.txt
141
186
  - README.md
142
187
  - Rakefile
143
- - VERSION
144
188
  - app/controllers/paper_trail_manager/changes_controller.rb
145
189
  - app/helpers/paper_trail_manager/changes_helper.rb
146
190
  - app/views/paper_trail_manager/changes/_version.html.erb
147
191
  - app/views/paper_trail_manager/changes/index.atom.builder
148
192
  - app/views/paper_trail_manager/changes/index.html.erb
149
193
  - app/views/paper_trail_manager/changes/show.html.erb
194
+ - gemfiles/rails_3.2.gemfile
195
+ - gemfiles/rails_4.0.gemfile
196
+ - gemfiles/rails_4.1.gemfile
197
+ - gemfiles/rails_4.2.gemfile
150
198
  - lib/paper_trail_manager.rb
151
199
  - paper_trail_manager.gemspec
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
466
- homepage: http://github.com/igal/paper_trail_manager
467
- licenses: []
468
-
200
+ - spec/controllers/entities_controller_spec.rb
201
+ - spec/controllers/platforms_controller_spec.rb
202
+ - spec/dummy/.gitignore
203
+ - spec/dummy/Gemfile
204
+ - spec/dummy/README.rdoc
205
+ - spec/dummy/Rakefile
206
+ - spec/dummy/app/assets/images/rails.png
207
+ - spec/dummy/app/assets/javascripts/application.js
208
+ - spec/dummy/app/assets/stylesheets/application.css
209
+ - spec/dummy/app/controllers/application_controller.rb
210
+ - spec/dummy/app/controllers/entities_controller.rb
211
+ - spec/dummy/app/controllers/platforms_controller.rb
212
+ - spec/dummy/app/helpers/application_helper.rb
213
+ - spec/dummy/app/helpers/entities_helper.rb
214
+ - spec/dummy/app/helpers/platforms_helper.rb
215
+ - spec/dummy/app/mailers/.gitkeep
216
+ - spec/dummy/app/models/.gitkeep
217
+ - spec/dummy/app/models/entity.rb
218
+ - spec/dummy/app/models/platform.rb
219
+ - spec/dummy/app/views/application/index.html.erb
220
+ - spec/dummy/app/views/entities/_form.html.erb
221
+ - spec/dummy/app/views/entities/edit.html.erb
222
+ - spec/dummy/app/views/entities/index.html.erb
223
+ - spec/dummy/app/views/entities/new.html.erb
224
+ - spec/dummy/app/views/entities/show.html.erb
225
+ - spec/dummy/app/views/layouts/application.html.erb
226
+ - spec/dummy/app/views/platforms/_form.html.erb
227
+ - spec/dummy/app/views/platforms/edit.html.erb
228
+ - spec/dummy/app/views/platforms/index.html.erb
229
+ - spec/dummy/app/views/platforms/new.html.erb
230
+ - spec/dummy/app/views/platforms/show.html.erb
231
+ - spec/dummy/config.ru
232
+ - spec/dummy/config/application.rb
233
+ - spec/dummy/config/boot.rb
234
+ - spec/dummy/config/database.yml
235
+ - spec/dummy/config/environment.rb
236
+ - spec/dummy/config/environments/development.rb
237
+ - spec/dummy/config/environments/production.rb
238
+ - spec/dummy/config/environments/test.rb
239
+ - spec/dummy/config/initializers/backtrace_silencers.rb
240
+ - spec/dummy/config/initializers/inflections.rb
241
+ - spec/dummy/config/initializers/mime_types.rb
242
+ - spec/dummy/config/initializers/secret_token.rb
243
+ - spec/dummy/config/initializers/session_store.rb
244
+ - spec/dummy/config/initializers/wrap_parameters.rb
245
+ - spec/dummy/config/locales/en.yml
246
+ - spec/dummy/config/routes.rb
247
+ - spec/dummy/db/migrate/20110228091428_create_entities.rb
248
+ - spec/dummy/db/migrate/20110228093241_create_platforms.rb
249
+ - spec/dummy/db/migrate/20110228094444_create_versions.rb
250
+ - spec/dummy/db/schema.rb
251
+ - spec/dummy/db/seeds.rb
252
+ - spec/dummy/doc/README_FOR_APP
253
+ - spec/dummy/lib/assets/.gitkeep
254
+ - spec/dummy/lib/tasks/.gitkeep
255
+ - spec/dummy/log/.gitkeep
256
+ - spec/dummy/public/404.html
257
+ - spec/dummy/public/422.html
258
+ - spec/dummy/public/500.html
259
+ - spec/dummy/public/favicon.ico
260
+ - spec/dummy/public/index.html
261
+ - spec/dummy/public/robots.txt
262
+ - spec/dummy/script/rails
263
+ - spec/dummy/test/fixtures/.gitkeep
264
+ - spec/dummy/test/functional/.gitkeep
265
+ - spec/dummy/test/integration/.gitkeep
266
+ - spec/dummy/test/performance/browsing_test.rb
267
+ - spec/dummy/test/test_helper.rb
268
+ - spec/dummy/test/unit/.gitkeep
269
+ - spec/dummy/vendor/assets/javascripts/.gitkeep
270
+ - spec/dummy/vendor/assets/stylesheets/.gitkeep
271
+ - spec/dummy/vendor/plugins/.gitkeep
272
+ - spec/helpers/entities_helper_spec.rb
273
+ - spec/helpers/platforms_helper_spec.rb
274
+ - spec/integration/navigation_spec.rb
275
+ - spec/integration/paper_trail_manager_spec.rb
276
+ - spec/models/entity_spec.rb
277
+ - spec/models/platform_spec.rb
278
+ - spec/rails_helper.rb
279
+ - spec/requests/entities_spec.rb
280
+ - spec/requests/platforms_spec.rb
281
+ - spec/routing/entities_routing_spec.rb
282
+ - spec/routing/platforms_routing_spec.rb
283
+ - spec/spec_helper.rb
284
+ - spec/support/factories.rb
285
+ - spec/views/entities/edit.html.erb_spec.rb
286
+ - spec/views/entities/index.html.erb_spec.rb
287
+ - spec/views/entities/new.html.erb_spec.rb
288
+ - spec/views/entities/show.html.erb_spec.rb
289
+ - spec/views/platforms/edit.html.erb_spec.rb
290
+ - spec/views/platforms/index.html.erb_spec.rb
291
+ - spec/views/platforms/new.html.erb_spec.rb
292
+ - spec/views/platforms/show.html.erb_spec.rb
293
+ homepage: https://github.com/fusion94/paper_trail_manager
294
+ licenses:
295
+ - MIT
296
+ metadata: {}
469
297
  post_install_message:
470
298
  rdoc_options: []
471
-
472
- require_paths:
299
+ require_paths:
473
300
  - lib
474
- required_ruby_version: !ruby/object:Gem::Requirement
475
- none: false
476
- requirements:
301
+ required_ruby_version: !ruby/object:Gem::Requirement
302
+ requirements:
477
303
  - - ">="
478
- - !ruby/object:Gem::Version
479
- hash: 3
480
- segments:
481
- - 0
482
- version: "0"
483
- required_rubygems_version: !ruby/object:Gem::Requirement
484
- none: false
485
- requirements:
304
+ - !ruby/object:Gem::Version
305
+ version: '0'
306
+ required_rubygems_version: !ruby/object:Gem::Requirement
307
+ requirements:
486
308
  - - ">="
487
- - !ruby/object:Gem::Version
488
- hash: 3
489
- segments:
490
- - 0
491
- version: "0"
309
+ - !ruby/object:Gem::Version
310
+ version: '0'
492
311
  requirements: []
493
-
494
312
  rubyforge_project:
495
- rubygems_version: 1.8.11
313
+ rubygems_version: 2.2.2
496
314
  signing_key:
497
- specification_version: 3
315
+ specification_version: 4
498
316
  summary: A user interface for `paper_trail` versioning data in Ruby on Rails 3 applications.
499
- test_files: []
500
-
317
+ test_files:
318
+ - spec/controllers/entities_controller_spec.rb
319
+ - spec/controllers/platforms_controller_spec.rb
320
+ - spec/dummy/.gitignore
321
+ - spec/dummy/Gemfile
322
+ - spec/dummy/README.rdoc
323
+ - spec/dummy/Rakefile
324
+ - spec/dummy/app/assets/images/rails.png
325
+ - spec/dummy/app/assets/javascripts/application.js
326
+ - spec/dummy/app/assets/stylesheets/application.css
327
+ - spec/dummy/app/controllers/application_controller.rb
328
+ - spec/dummy/app/controllers/entities_controller.rb
329
+ - spec/dummy/app/controllers/platforms_controller.rb
330
+ - spec/dummy/app/helpers/application_helper.rb
331
+ - spec/dummy/app/helpers/entities_helper.rb
332
+ - spec/dummy/app/helpers/platforms_helper.rb
333
+ - spec/dummy/app/mailers/.gitkeep
334
+ - spec/dummy/app/models/.gitkeep
335
+ - spec/dummy/app/models/entity.rb
336
+ - spec/dummy/app/models/platform.rb
337
+ - spec/dummy/app/views/application/index.html.erb
338
+ - spec/dummy/app/views/entities/_form.html.erb
339
+ - spec/dummy/app/views/entities/edit.html.erb
340
+ - spec/dummy/app/views/entities/index.html.erb
341
+ - spec/dummy/app/views/entities/new.html.erb
342
+ - spec/dummy/app/views/entities/show.html.erb
343
+ - spec/dummy/app/views/layouts/application.html.erb
344
+ - spec/dummy/app/views/platforms/_form.html.erb
345
+ - spec/dummy/app/views/platforms/edit.html.erb
346
+ - spec/dummy/app/views/platforms/index.html.erb
347
+ - spec/dummy/app/views/platforms/new.html.erb
348
+ - spec/dummy/app/views/platforms/show.html.erb
349
+ - spec/dummy/config.ru
350
+ - spec/dummy/config/application.rb
351
+ - spec/dummy/config/boot.rb
352
+ - spec/dummy/config/database.yml
353
+ - spec/dummy/config/environment.rb
354
+ - spec/dummy/config/environments/development.rb
355
+ - spec/dummy/config/environments/production.rb
356
+ - spec/dummy/config/environments/test.rb
357
+ - spec/dummy/config/initializers/backtrace_silencers.rb
358
+ - spec/dummy/config/initializers/inflections.rb
359
+ - spec/dummy/config/initializers/mime_types.rb
360
+ - spec/dummy/config/initializers/secret_token.rb
361
+ - spec/dummy/config/initializers/session_store.rb
362
+ - spec/dummy/config/initializers/wrap_parameters.rb
363
+ - spec/dummy/config/locales/en.yml
364
+ - spec/dummy/config/routes.rb
365
+ - spec/dummy/db/migrate/20110228091428_create_entities.rb
366
+ - spec/dummy/db/migrate/20110228093241_create_platforms.rb
367
+ - spec/dummy/db/migrate/20110228094444_create_versions.rb
368
+ - spec/dummy/db/schema.rb
369
+ - spec/dummy/db/seeds.rb
370
+ - spec/dummy/doc/README_FOR_APP
371
+ - spec/dummy/lib/assets/.gitkeep
372
+ - spec/dummy/lib/tasks/.gitkeep
373
+ - spec/dummy/log/.gitkeep
374
+ - spec/dummy/public/404.html
375
+ - spec/dummy/public/422.html
376
+ - spec/dummy/public/500.html
377
+ - spec/dummy/public/favicon.ico
378
+ - spec/dummy/public/index.html
379
+ - spec/dummy/public/robots.txt
380
+ - spec/dummy/script/rails
381
+ - spec/dummy/test/fixtures/.gitkeep
382
+ - spec/dummy/test/functional/.gitkeep
383
+ - spec/dummy/test/integration/.gitkeep
384
+ - spec/dummy/test/performance/browsing_test.rb
385
+ - spec/dummy/test/test_helper.rb
386
+ - spec/dummy/test/unit/.gitkeep
387
+ - spec/dummy/vendor/assets/javascripts/.gitkeep
388
+ - spec/dummy/vendor/assets/stylesheets/.gitkeep
389
+ - spec/dummy/vendor/plugins/.gitkeep
390
+ - spec/helpers/entities_helper_spec.rb
391
+ - spec/helpers/platforms_helper_spec.rb
392
+ - spec/integration/navigation_spec.rb
393
+ - spec/integration/paper_trail_manager_spec.rb
394
+ - spec/models/entity_spec.rb
395
+ - spec/models/platform_spec.rb
396
+ - spec/rails_helper.rb
397
+ - spec/requests/entities_spec.rb
398
+ - spec/requests/platforms_spec.rb
399
+ - spec/routing/entities_routing_spec.rb
400
+ - spec/routing/platforms_routing_spec.rb
401
+ - spec/spec_helper.rb
402
+ - spec/support/factories.rb
403
+ - spec/views/entities/edit.html.erb_spec.rb
404
+ - spec/views/entities/index.html.erb_spec.rb
405
+ - spec/views/entities/new.html.erb_spec.rb
406
+ - spec/views/entities/show.html.erb_spec.rb
407
+ - spec/views/platforms/edit.html.erb_spec.rb
408
+ - spec/views/platforms/index.html.erb_spec.rb
409
+ - spec/views/platforms/new.html.erb_spec.rb
410
+ - spec/views/platforms/show.html.erb_spec.rb