pictrails 0.5.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 (944) hide show
  1. data/.autotest +8 -0
  2. data/History.txt +80 -0
  3. data/MIT-LICENSE +21 -0
  4. data/Manifest.txt +943 -0
  5. data/README.txt +88 -0
  6. data/Rakefile +10 -0
  7. data/app/controllers/admin/base_controller.rb +12 -0
  8. data/app/controllers/admin/comments_controller.rb +49 -0
  9. data/app/controllers/admin/galleries_controller.rb +110 -0
  10. data/app/controllers/admin/pictures_controller.rb +85 -0
  11. data/app/controllers/admin/sessions_controller.rb +26 -0
  12. data/app/controllers/admin/settings_controller.rb +44 -0
  13. data/app/controllers/admin/users_controller.rb +40 -0
  14. data/app/controllers/application.rb +54 -0
  15. data/app/controllers/galleries_controller.rb +61 -0
  16. data/app/controllers/pictures_controller.rb +57 -0
  17. data/app/controllers/tags_controller.rb +12 -0
  18. data/app/helpers/admin/base_helper.rb +36 -0
  19. data/app/helpers/admin/comments_helper.rb +2 -0
  20. data/app/helpers/admin/galleries_helper.rb +2 -0
  21. data/app/helpers/admin/pictures_helper.rb +2 -0
  22. data/app/helpers/admin/sessions_helper.rb +2 -0
  23. data/app/helpers/admin/users_helper.rb +2 -0
  24. data/app/helpers/application_helper.rb +87 -0
  25. data/app/helpers/galleries_helper.rb +2 -0
  26. data/app/helpers/pictures_helper.rb +12 -0
  27. data/app/models/comment.rb +6 -0
  28. data/app/models/gallery.rb +173 -0
  29. data/app/models/import.rb +25 -0
  30. data/app/models/picture.rb +104 -0
  31. data/app/models/setting.rb +102 -0
  32. data/app/models/tag.rb +30 -0
  33. data/app/models/thumbnail.rb +8 -0
  34. data/app/models/user.rb +52 -0
  35. data/app/sweepers/gallery_sweeper.rb +25 -0
  36. data/app/sweepers/page_cache.rb +66 -0
  37. data/app/sweepers/picture_sweeper.rb +26 -0
  38. data/app/sweepers/setting_sweeper.rb +11 -0
  39. data/app/views/admin/comments/edit.html.erb +35 -0
  40. data/app/views/admin/comments/index.html.erb +38 -0
  41. data/app/views/admin/comments/show.html.erb +16 -0
  42. data/app/views/admin/galleries/_follow_import.html.erb +17 -0
  43. data/app/views/admin/galleries/edit.html.erb +90 -0
  44. data/app/views/admin/galleries/follow_import.html.erb +7 -0
  45. data/app/views/admin/galleries/follow_import.js.rjs +6 -0
  46. data/app/views/admin/galleries/index.html.erb +43 -0
  47. data/app/views/admin/galleries/new.html.erb +44 -0
  48. data/app/views/admin/galleries/new_by_mass_upload.html.erb +28 -0
  49. data/app/views/admin/galleries/show.html.erb +54 -0
  50. data/app/views/admin/pictures/_picture.html.erb +12 -0
  51. data/app/views/admin/pictures/edit.html.erb +59 -0
  52. data/app/views/admin/pictures/index.html.erb +17 -0
  53. data/app/views/admin/pictures/new.html.erb +56 -0
  54. data/app/views/admin/pictures/show.html.erb +55 -0
  55. data/app/views/admin/sessions/new.html.erb +28 -0
  56. data/app/views/admin/settings/_follow_setting_update.html.erb +16 -0
  57. data/app/views/admin/settings/follow_setting_update.html.erb +7 -0
  58. data/app/views/admin/settings/follow_setting_update.js.rjs +6 -0
  59. data/app/views/admin/settings/index.html.erb +65 -0
  60. data/app/views/admin/users/new.html.erb +32 -0
  61. data/app/views/comments/_comment.html.erb +6 -0
  62. data/app/views/galleries/_gallery.html.erb +6 -0
  63. data/app/views/galleries/_list_pictures.html.erb +22 -0
  64. data/app/views/galleries/_sidebar_gallery.html.erb +13 -0
  65. data/app/views/galleries/_top_show.html.erb +10 -0
  66. data/app/views/galleries/index.html.erb +11 -0
  67. data/app/views/galleries/show.atom.builder +22 -0
  68. data/app/views/galleries/show.html.erb +28 -0
  69. data/app/views/layouts/administration.html.erb +48 -0
  70. data/app/views/layouts/application.html.erb +38 -0
  71. data/app/views/pictures/_picture.html.erb +13 -0
  72. data/app/views/pictures/index.html.erb +11 -0
  73. data/app/views/pictures/show.html.erb +51 -0
  74. data/app/views/tags/_sidebar_tag.html.erb +20 -0
  75. data/app/views/tags/show.html.erb +14 -0
  76. data/config/boot.rb +109 -0
  77. data/config/database.yml.example +25 -0
  78. data/config/environment.rb +63 -0
  79. data/config/environments/development.rb +19 -0
  80. data/config/environments/production.rb +18 -0
  81. data/config/environments/stories.rb +19 -0
  82. data/config/environments/test.rb +22 -0
  83. data/config/initializers/inflections.rb +10 -0
  84. data/config/initializers/mime_types.rb +5 -0
  85. data/config/initializers/new_rails_defaults.rb +15 -0
  86. data/config/routes.rb +66 -0
  87. data/db/migrate/001_create_galleries.rb +20 -0
  88. data/db/migrate/002_create_pictures.rb +28 -0
  89. data/db/migrate/003_create_thumbnails_table.rb +17 -0
  90. data/db/migrate/004_create_users.rb +20 -0
  91. data/db/migrate/005_create_settings.rb +12 -0
  92. data/db/migrate/006_add_permalink_to_galleries.rb +15 -0
  93. data/db/migrate/007_add_permalink_to_picture.rb +15 -0
  94. data/db/migrate/008_create_imports.rb +15 -0
  95. data/db/migrate/009_delete_timestamp_and_add_number.rb +13 -0
  96. data/db/migrate/010_add_parent_id_for_gallery.rb +9 -0
  97. data/db/migrate/20080618220812_acts_as_taggable_migration.rb +26 -0
  98. data/db/migrate/20080824170446_add_picture_id_in_import.rb +11 -0
  99. data/db/migrate/20080910173454_create_comments.rb +19 -0
  100. data/db/schema.rb +110 -0
  101. data/lib/authenticated_system.rb +116 -0
  102. data/lib/authenticated_test_helper.rb +10 -0
  103. data/lib/config_manager.rb +96 -0
  104. data/lib/pictrails/caching_methods.rb +15 -0
  105. data/lib/pictrails/import_system.rb +37 -0
  106. data/lib/pictrails/mass_upload.rb +29 -0
  107. data/lib/pictrails/version.rb +9 -0
  108. data/lib/tasks/cache.rake +6 -0
  109. data/lib/tasks/rspec.rake +132 -0
  110. data/lib/tasks/story.rake +12 -0
  111. data/log/keep +0 -0
  112. data/public/.htaccess +40 -0
  113. data/public/404.html +30 -0
  114. data/public/422.html +30 -0
  115. data/public/500.html +30 -0
  116. data/public/dispatch.cgi +10 -0
  117. data/public/dispatch.fcgi +24 -0
  118. data/public/dispatch.rb +10 -0
  119. data/public/favicon.ico +0 -0
  120. data/public/images/README +2 -0
  121. data/public/images/accept.png +0 -0
  122. data/public/images/accept50.png +0 -0
  123. data/public/images/admin/bc-bg.gif +0 -0
  124. data/public/images/admin/bgdivider.gif +0 -0
  125. data/public/images/admin/bgdivider.png +0 -0
  126. data/public/images/admin/bgoff.png +0 -0
  127. data/public/images/admin/bgoff2.png +0 -0
  128. data/public/images/admin/bgon.png +0 -0
  129. data/public/images/admin/bgover.png +0 -0
  130. data/public/images/admin/bgselected.png +0 -0
  131. data/public/images/admin/cancel.png +0 -0
  132. data/public/images/admin/checked.png +0 -0
  133. data/public/images/admin/delete.png +0 -0
  134. data/public/images/admin/edit.png +0 -0
  135. data/public/images/admin/error.png +0 -0
  136. data/public/images/admin/foot.jpg +0 -0
  137. data/public/images/admin/help.png +0 -0
  138. data/public/images/admin/loginformbg.png +0 -0
  139. data/public/images/admin/remove.png +0 -0
  140. data/public/images/admin/show.png +0 -0
  141. data/public/images/admin/table-header-first.png +0 -0
  142. data/public/images/admin/table-header-last.png +0 -0
  143. data/public/images/admin/table-header.png +0 -0
  144. data/public/images/admin/top.gif +0 -0
  145. data/public/images/bg_white.png +0 -0
  146. data/public/images/email_open.png +0 -0
  147. data/public/images/email_open50.png +0 -0
  148. data/public/images/page_edit50.png +0 -0
  149. data/public/images/user.png +0 -0
  150. data/public/images/user50.png +0 -0
  151. data/public/images/world_link.png +0 -0
  152. data/public/images/world_link50.png +0 -0
  153. data/public/javascripts/application.js +2 -0
  154. data/public/javascripts/controls.js +963 -0
  155. data/public/javascripts/dragdrop.js +972 -0
  156. data/public/javascripts/effects.js +1120 -0
  157. data/public/javascripts/follow_import.js +7 -0
  158. data/public/javascripts/follow_setting_update.js +7 -0
  159. data/public/javascripts/prototype.js +4225 -0
  160. data/public/no_picture.png +0 -0
  161. data/public/robots.txt +5 -0
  162. data/public/stylesheets/administration.css +998 -0
  163. data/public/stylesheets/pictrails.css +260 -0
  164. data/script/about +3 -0
  165. data/script/autospec +3 -0
  166. data/script/console +3 -0
  167. data/script/dbconsole +3 -0
  168. data/script/destroy +3 -0
  169. data/script/generate +3 -0
  170. data/script/performance/benchmarker +3 -0
  171. data/script/performance/profiler +3 -0
  172. data/script/performance/request +3 -0
  173. data/script/plugin +3 -0
  174. data/script/process/inspector +3 -0
  175. data/script/process/reaper +3 -0
  176. data/script/process/spawner +3 -0
  177. data/script/runner +3 -0
  178. data/script/server +3 -0
  179. data/script/spec +4 -0
  180. data/script/spec_server +116 -0
  181. data/spec/controllers/admin/comments_controller_spec.rb +117 -0
  182. data/spec/controllers/admin/galleries_controller_spec.rb +247 -0
  183. data/spec/controllers/admin/pictures_controller_spec.rb +114 -0
  184. data/spec/controllers/admin/sessions_controller_spec.rb +36 -0
  185. data/spec/controllers/admin/settings_controller_spec.rb +54 -0
  186. data/spec/controllers/admin/users_controller_spec.rb +48 -0
  187. data/spec/controllers/galleries_controller_spec.rb +138 -0
  188. data/spec/controllers/pictures_controller_spec.rb +78 -0
  189. data/spec/fixtures/files/foo-2.PNG +0 -0
  190. data/spec/fixtures/files/foo.png +0 -0
  191. data/spec/fixtures/files/rails-2.png +0 -0
  192. data/spec/fixtures/files/rails-3.png +0 -0
  193. data/spec/fixtures/files/rails.png +0 -0
  194. data/spec/fixtures/galleries.yml +38 -0
  195. data/spec/fixtures/imports.yml +19 -0
  196. data/spec/fixtures/pictures.yml +108 -0
  197. data/spec/fixtures/settings.yml +8 -0
  198. data/spec/fixtures/taggings.yml +17 -0
  199. data/spec/fixtures/tags.yml +6 -0
  200. data/spec/fixtures/thumbnails.yml +30 -0
  201. data/spec/fixtures/users.yml +15 -0
  202. data/spec/helpers/admin/admin_base_helper_spec.rb +15 -0
  203. data/spec/helpers/admin/comments_helper_spec.rb +11 -0
  204. data/spec/helpers/admin/pictures_helper_spec.rb +5 -0
  205. data/spec/helpers/application_helper_spec.rb +37 -0
  206. data/spec/lib/import_spec.rb +115 -0
  207. data/spec/lib/mass_upload_spec.rb +35 -0
  208. data/spec/models/comment_spec.rb +24 -0
  209. data/spec/models/gallery_spec.rb +256 -0
  210. data/spec/models/import_spec.rb +11 -0
  211. data/spec/models/picture_spec.rb +139 -0
  212. data/spec/models/setting_spec.rb +74 -0
  213. data/spec/models/user_spec.rb +52 -0
  214. data/spec/rcov.opts +2 -0
  215. data/spec/spec.opts +4 -0
  216. data/spec/spec_helper.rb +39 -0
  217. data/stories/add_gallery_story +29 -0
  218. data/stories/all.rb +18 -0
  219. data/stories/helper.rb +16 -0
  220. data/stories/integration_test_file_upload_deep.rb +60 -0
  221. data/stories/signup_story +37 -0
  222. data/stories/steps/admin_steps.rb +6 -0
  223. data/stories/steps/gallery_steps.rb +38 -0
  224. data/stories/steps/general_steps.rb +71 -0
  225. data/stories/steps/signup_steps.rb +25 -0
  226. data/stories/view_gallery_story +37 -0
  227. data/test/fixtures/comments.yml +15 -0
  228. data/test/functional/comment_controller_test.rb +8 -0
  229. data/test/functional/comments_controller_test.rb +8 -0
  230. data/test/unit/comment_test.rb +8 -0
  231. data/vendor/plugins/acts_as_taggable_on_steroids/CHANGELOG +167 -0
  232. data/vendor/plugins/acts_as_taggable_on_steroids/MIT-LICENSE +20 -0
  233. data/vendor/plugins/acts_as_taggable_on_steroids/README +148 -0
  234. data/vendor/plugins/acts_as_taggable_on_steroids/Rakefile +22 -0
  235. data/vendor/plugins/acts_as_taggable_on_steroids/generators/acts_as_taggable_migration/acts_as_taggable_migration_generator.rb +11 -0
  236. data/vendor/plugins/acts_as_taggable_on_steroids/generators/acts_as_taggable_migration/templates/migration.rb +26 -0
  237. data/vendor/plugins/acts_as_taggable_on_steroids/init.rb +1 -0
  238. data/vendor/plugins/acts_as_taggable_on_steroids/lib/acts_as_taggable.rb +214 -0
  239. data/vendor/plugins/acts_as_taggable_on_steroids/lib/tag.rb +26 -0
  240. data/vendor/plugins/acts_as_taggable_on_steroids/lib/tag_counts_extension.rb +3 -0
  241. data/vendor/plugins/acts_as_taggable_on_steroids/lib/tag_list.rb +91 -0
  242. data/vendor/plugins/acts_as_taggable_on_steroids/lib/tagging.rb +12 -0
  243. data/vendor/plugins/acts_as_taggable_on_steroids/lib/tags_helper.rb +13 -0
  244. data/vendor/plugins/acts_as_taggable_on_steroids/test/abstract_unit.rb +97 -0
  245. data/vendor/plugins/acts_as_taggable_on_steroids/test/acts_as_taggable_test.rb +347 -0
  246. data/vendor/plugins/acts_as_taggable_on_steroids/test/database.yml +10 -0
  247. data/vendor/plugins/acts_as_taggable_on_steroids/test/fixtures/magazine.rb +3 -0
  248. data/vendor/plugins/acts_as_taggable_on_steroids/test/fixtures/magazines.yml +7 -0
  249. data/vendor/plugins/acts_as_taggable_on_steroids/test/fixtures/photo.rb +8 -0
  250. data/vendor/plugins/acts_as_taggable_on_steroids/test/fixtures/photos.yml +24 -0
  251. data/vendor/plugins/acts_as_taggable_on_steroids/test/fixtures/post.rb +7 -0
  252. data/vendor/plugins/acts_as_taggable_on_steroids/test/fixtures/posts.yml +34 -0
  253. data/vendor/plugins/acts_as_taggable_on_steroids/test/fixtures/special_post.rb +2 -0
  254. data/vendor/plugins/acts_as_taggable_on_steroids/test/fixtures/subscription.rb +4 -0
  255. data/vendor/plugins/acts_as_taggable_on_steroids/test/fixtures/subscriptions.yml +3 -0
  256. data/vendor/plugins/acts_as_taggable_on_steroids/test/fixtures/taggings.yml +149 -0
  257. data/vendor/plugins/acts_as_taggable_on_steroids/test/fixtures/tags.yml +19 -0
  258. data/vendor/plugins/acts_as_taggable_on_steroids/test/fixtures/user.rb +7 -0
  259. data/vendor/plugins/acts_as_taggable_on_steroids/test/fixtures/users.yml +7 -0
  260. data/vendor/plugins/acts_as_taggable_on_steroids/test/schema.rb +37 -0
  261. data/vendor/plugins/acts_as_taggable_on_steroids/test/tag_list_test.rb +106 -0
  262. data/vendor/plugins/acts_as_taggable_on_steroids/test/tag_test.rb +34 -0
  263. data/vendor/plugins/acts_as_taggable_on_steroids/test/tagging_test.rb +13 -0
  264. data/vendor/plugins/acts_as_taggable_on_steroids/test/tags_helper_test.rb +28 -0
  265. data/vendor/plugins/acts_as_tree/README +26 -0
  266. data/vendor/plugins/acts_as_tree/Rakefile +22 -0
  267. data/vendor/plugins/acts_as_tree/init.rb +1 -0
  268. data/vendor/plugins/acts_as_tree/lib/active_record/acts/tree.rb +96 -0
  269. data/vendor/plugins/atom_feed_helper/CHANGELOG +5 -0
  270. data/vendor/plugins/atom_feed_helper/MIT-LICENSE +20 -0
  271. data/vendor/plugins/atom_feed_helper/README +72 -0
  272. data/vendor/plugins/atom_feed_helper/Rakefile +22 -0
  273. data/vendor/plugins/atom_feed_helper/init.rb +2 -0
  274. data/vendor/plugins/atom_feed_helper/lib/atom_feed_helper.rb +111 -0
  275. data/vendor/plugins/atom_feed_helper/test/atom_feed_helper_test.rb +8 -0
  276. data/vendor/plugins/attachment_fu/CHANGELOG +35 -0
  277. data/vendor/plugins/attachment_fu/README +186 -0
  278. data/vendor/plugins/attachment_fu/Rakefile +22 -0
  279. data/vendor/plugins/attachment_fu/amazon_s3.yml.tpl +14 -0
  280. data/vendor/plugins/attachment_fu/init.rb +16 -0
  281. data/vendor/plugins/attachment_fu/install.rb +5 -0
  282. data/vendor/plugins/attachment_fu/lib/geometry.rb +93 -0
  283. data/vendor/plugins/attachment_fu/lib/technoweenie/attachment_fu.rb +473 -0
  284. data/vendor/plugins/attachment_fu/lib/technoweenie/attachment_fu/backends/db_file_backend.rb +39 -0
  285. data/vendor/plugins/attachment_fu/lib/technoweenie/attachment_fu/backends/file_system_backend.rb +101 -0
  286. data/vendor/plugins/attachment_fu/lib/technoweenie/attachment_fu/backends/s3_backend.rb +303 -0
  287. data/vendor/plugins/attachment_fu/lib/technoweenie/attachment_fu/processors/core_image_processor.rb +59 -0
  288. data/vendor/plugins/attachment_fu/lib/technoweenie/attachment_fu/processors/gd2_processor.rb +54 -0
  289. data/vendor/plugins/attachment_fu/lib/technoweenie/attachment_fu/processors/image_science_processor.rb +61 -0
  290. data/vendor/plugins/attachment_fu/lib/technoweenie/attachment_fu/processors/mini_magick_processor.rb +59 -0
  291. data/vendor/plugins/attachment_fu/lib/technoweenie/attachment_fu/processors/rmagick_processor.rb +54 -0
  292. data/vendor/plugins/attachment_fu/test/backends/db_file_test.rb +16 -0
  293. data/vendor/plugins/attachment_fu/test/backends/file_system_test.rb +80 -0
  294. data/vendor/plugins/attachment_fu/test/backends/remote/s3_test.rb +107 -0
  295. data/vendor/plugins/attachment_fu/test/base_attachment_tests.rb +77 -0
  296. data/vendor/plugins/attachment_fu/test/basic_test.rb +70 -0
  297. data/vendor/plugins/attachment_fu/test/database.yml +18 -0
  298. data/vendor/plugins/attachment_fu/test/extra_attachment_test.rb +67 -0
  299. data/vendor/plugins/attachment_fu/test/fixtures/attachment.rb +148 -0
  300. data/vendor/plugins/attachment_fu/test/fixtures/files/fake/rails.png +0 -0
  301. data/vendor/plugins/attachment_fu/test/fixtures/files/foo.txt +1 -0
  302. data/vendor/plugins/attachment_fu/test/fixtures/files/rails.png +0 -0
  303. data/vendor/plugins/attachment_fu/test/geometry_test.rb +101 -0
  304. data/vendor/plugins/attachment_fu/test/processors/core_image_test.rb +37 -0
  305. data/vendor/plugins/attachment_fu/test/processors/gd2_test.rb +31 -0
  306. data/vendor/plugins/attachment_fu/test/processors/image_science_test.rb +31 -0
  307. data/vendor/plugins/attachment_fu/test/processors/mini_magick_test.rb +31 -0
  308. data/vendor/plugins/attachment_fu/test/processors/rmagick_test.rb +255 -0
  309. data/vendor/plugins/attachment_fu/test/schema.rb +108 -0
  310. data/vendor/plugins/attachment_fu/test/test_helper.rb +150 -0
  311. data/vendor/plugins/attachment_fu/test/validation_test.rb +55 -0
  312. data/vendor/plugins/attachment_fu/vendor/red_artisan/core_image/filters/color.rb +27 -0
  313. data/vendor/plugins/attachment_fu/vendor/red_artisan/core_image/filters/effects.rb +31 -0
  314. data/vendor/plugins/attachment_fu/vendor/red_artisan/core_image/filters/perspective.rb +25 -0
  315. data/vendor/plugins/attachment_fu/vendor/red_artisan/core_image/filters/quality.rb +25 -0
  316. data/vendor/plugins/attachment_fu/vendor/red_artisan/core_image/filters/scale.rb +47 -0
  317. data/vendor/plugins/attachment_fu/vendor/red_artisan/core_image/filters/watermark.rb +32 -0
  318. data/vendor/plugins/attachment_fu/vendor/red_artisan/core_image/processor.rb +123 -0
  319. data/vendor/plugins/mimetype-fu/MIT-LICENSE +20 -0
  320. data/vendor/plugins/mimetype-fu/README +16 -0
  321. data/vendor/plugins/mimetype-fu/Rakefile +22 -0
  322. data/vendor/plugins/mimetype-fu/init.rb +2 -0
  323. data/vendor/plugins/mimetype-fu/install.rb +1 -0
  324. data/vendor/plugins/mimetype-fu/lib/extensions_const.rb +1 -0
  325. data/vendor/plugins/mimetype-fu/lib/mime_types.yml +776 -0
  326. data/vendor/plugins/mimetype-fu/lib/mimetype_fu.rb +35 -0
  327. data/vendor/plugins/mimetype-fu/spec/fixtures/file.jpg +0 -0
  328. data/vendor/plugins/mimetype-fu/spec/fixtures/file.rb +0 -0
  329. data/vendor/plugins/mimetype-fu/spec/fixtures/file.unknown +0 -0
  330. data/vendor/plugins/mimetype-fu/spec/mime_type_spec.rb +57 -0
  331. data/vendor/plugins/mimetype-fu/spec/spec_helper.rb +4 -0
  332. data/vendor/plugins/mimetype-fu/tasks/mimetype_fu_tasks.rake +4 -0
  333. data/vendor/plugins/mimetype-fu/test/mimetype_fu_test.rb +8 -0
  334. data/vendor/plugins/mimetype-fu/uninstall.rb +1 -0
  335. data/vendor/plugins/rspec-rails/History.txt +57 -0
  336. data/vendor/plugins/rspec-rails/Manifest.txt +158 -0
  337. data/vendor/plugins/rspec-rails/README.txt +81 -0
  338. data/vendor/plugins/rspec-rails/Rakefile +39 -0
  339. data/vendor/plugins/rspec-rails/UPGRADE +7 -0
  340. data/vendor/plugins/rspec-rails/generators/rspec/CHANGES +1 -0
  341. data/vendor/plugins/rspec-rails/generators/rspec/rspec_generator.rb +40 -0
  342. data/vendor/plugins/rspec-rails/generators/rspec/templates/all_stories.rb +4 -0
  343. data/vendor/plugins/rspec-rails/generators/rspec/templates/previous_failures.txt +0 -0
  344. data/vendor/plugins/rspec-rails/generators/rspec/templates/rcov.opts +2 -0
  345. data/vendor/plugins/rspec-rails/generators/rspec/templates/rspec.rake +132 -0
  346. data/vendor/plugins/rspec-rails/generators/rspec/templates/script/autospec +3 -0
  347. data/vendor/plugins/rspec-rails/generators/rspec/templates/script/spec +4 -0
  348. data/vendor/plugins/rspec-rails/generators/rspec/templates/script/spec_server +116 -0
  349. data/vendor/plugins/rspec-rails/generators/rspec/templates/spec.opts +4 -0
  350. data/vendor/plugins/rspec-rails/generators/rspec/templates/spec_helper.rb +47 -0
  351. data/vendor/plugins/rspec-rails/generators/rspec/templates/stories_helper.rb +3 -0
  352. data/vendor/plugins/rspec-rails/generators/rspec_controller/USAGE +33 -0
  353. data/vendor/plugins/rspec-rails/generators/rspec_controller/rspec_controller_generator.rb +49 -0
  354. data/vendor/plugins/rspec-rails/generators/rspec_controller/templates/controller_spec.rb +25 -0
  355. data/vendor/plugins/rspec-rails/generators/rspec_controller/templates/helper_spec.rb +11 -0
  356. data/vendor/plugins/rspec-rails/generators/rspec_controller/templates/view_spec.rb +12 -0
  357. data/vendor/plugins/rspec-rails/generators/rspec_default_values.rb +19 -0
  358. data/vendor/plugins/rspec-rails/generators/rspec_model/USAGE +18 -0
  359. data/vendor/plugins/rspec-rails/generators/rspec_model/rspec_model_generator.rb +35 -0
  360. data/vendor/plugins/rspec-rails/generators/rspec_model/templates/model_spec.rb +15 -0
  361. data/vendor/plugins/rspec-rails/generators/rspec_scaffold/rspec_scaffold_generator.rb +154 -0
  362. data/vendor/plugins/rspec-rails/generators/rspec_scaffold/templates/controller_spec.rb +173 -0
  363. data/vendor/plugins/rspec-rails/generators/rspec_scaffold/templates/edit_erb_spec.rb +26 -0
  364. data/vendor/plugins/rspec-rails/generators/rspec_scaffold/templates/helper_spec.rb +11 -0
  365. data/vendor/plugins/rspec-rails/generators/rspec_scaffold/templates/index_erb_spec.rb +27 -0
  366. data/vendor/plugins/rspec-rails/generators/rspec_scaffold/templates/new_erb_spec.rb +26 -0
  367. data/vendor/plugins/rspec-rails/generators/rspec_scaffold/templates/routing_spec.rb +59 -0
  368. data/vendor/plugins/rspec-rails/generators/rspec_scaffold/templates/show_erb_spec.rb +23 -0
  369. data/vendor/plugins/rspec-rails/init.rb +9 -0
  370. data/vendor/plugins/rspec-rails/lib/autotest/discover.rb +1 -0
  371. data/vendor/plugins/rspec-rails/lib/autotest/rails_rspec.rb +76 -0
  372. data/vendor/plugins/rspec-rails/lib/spec/rails.rb +15 -0
  373. data/vendor/plugins/rspec-rails/lib/spec/rails/example.rb +47 -0
  374. data/vendor/plugins/rspec-rails/lib/spec/rails/example/assigns_hash_proxy.rb +43 -0
  375. data/vendor/plugins/rspec-rails/lib/spec/rails/example/controller_example_group.rb +256 -0
  376. data/vendor/plugins/rspec-rails/lib/spec/rails/example/cookies_proxy.rb +25 -0
  377. data/vendor/plugins/rspec-rails/lib/spec/rails/example/functional_example_group.rb +87 -0
  378. data/vendor/plugins/rspec-rails/lib/spec/rails/example/helper_example_group.rb +166 -0
  379. data/vendor/plugins/rspec-rails/lib/spec/rails/example/model_example_group.rb +14 -0
  380. data/vendor/plugins/rspec-rails/lib/spec/rails/example/rails_example_group.rb +33 -0
  381. data/vendor/plugins/rspec-rails/lib/spec/rails/example/render_observer.rb +93 -0
  382. data/vendor/plugins/rspec-rails/lib/spec/rails/example/view_example_group.rb +183 -0
  383. data/vendor/plugins/rspec-rails/lib/spec/rails/extensions.rb +12 -0
  384. data/vendor/plugins/rspec-rails/lib/spec/rails/extensions/action_controller/base.rb +14 -0
  385. data/vendor/plugins/rspec-rails/lib/spec/rails/extensions/action_controller/rescue.rb +21 -0
  386. data/vendor/plugins/rspec-rails/lib/spec/rails/extensions/action_controller/test_response.rb +11 -0
  387. data/vendor/plugins/rspec-rails/lib/spec/rails/extensions/action_view/base.rb +31 -0
  388. data/vendor/plugins/rspec-rails/lib/spec/rails/extensions/active_record/base.rb +30 -0
  389. data/vendor/plugins/rspec-rails/lib/spec/rails/extensions/object.rb +5 -0
  390. data/vendor/plugins/rspec-rails/lib/spec/rails/extensions/spec/example/configuration.rb +71 -0
  391. data/vendor/plugins/rspec-rails/lib/spec/rails/extensions/spec/matchers/have.rb +21 -0
  392. data/vendor/plugins/rspec-rails/lib/spec/rails/interop/testcase.rb +14 -0
  393. data/vendor/plugins/rspec-rails/lib/spec/rails/matchers.rb +31 -0
  394. data/vendor/plugins/rspec-rails/lib/spec/rails/matchers/assert_select.rb +131 -0
  395. data/vendor/plugins/rspec-rails/lib/spec/rails/matchers/change.rb +11 -0
  396. data/vendor/plugins/rspec-rails/lib/spec/rails/matchers/have_text.rb +57 -0
  397. data/vendor/plugins/rspec-rails/lib/spec/rails/matchers/include_text.rb +54 -0
  398. data/vendor/plugins/rspec-rails/lib/spec/rails/matchers/redirect_to.rb +113 -0
  399. data/vendor/plugins/rspec-rails/lib/spec/rails/matchers/render_template.rb +90 -0
  400. data/vendor/plugins/rspec-rails/lib/spec/rails/mocks.rb +132 -0
  401. data/vendor/plugins/rspec-rails/lib/spec/rails/story_adapter.rb +79 -0
  402. data/vendor/plugins/rspec-rails/lib/spec/rails/version.rb +15 -0
  403. data/vendor/plugins/rspec-rails/output_buffer_fix.diff +34 -0
  404. data/vendor/plugins/rspec-rails/rspec-rails.gemspec +35 -0
  405. data/vendor/plugins/rspec-rails/spec/rails/autotest/mappings_spec.rb +36 -0
  406. data/vendor/plugins/rspec-rails/spec/rails/example/assigns_hash_proxy_spec.rb +65 -0
  407. data/vendor/plugins/rspec-rails/spec/rails/example/configuration_spec.rb +83 -0
  408. data/vendor/plugins/rspec-rails/spec/rails/example/controller_isolation_spec.rb +62 -0
  409. data/vendor/plugins/rspec-rails/spec/rails/example/controller_spec_spec.rb +272 -0
  410. data/vendor/plugins/rspec-rails/spec/rails/example/cookies_proxy_spec.rb +74 -0
  411. data/vendor/plugins/rspec-rails/spec/rails/example/example_group_factory_spec.rb +112 -0
  412. data/vendor/plugins/rspec-rails/spec/rails/example/helper_spec_spec.rb +161 -0
  413. data/vendor/plugins/rspec-rails/spec/rails/example/model_spec_spec.rb +18 -0
  414. data/vendor/plugins/rspec-rails/spec/rails/example/shared_behaviour_spec.rb +16 -0
  415. data/vendor/plugins/rspec-rails/spec/rails/example/test_unit_assertion_accessibility_spec.rb +33 -0
  416. data/vendor/plugins/rspec-rails/spec/rails/example/view_spec_spec.rb +280 -0
  417. data/vendor/plugins/rspec-rails/spec/rails/extensions/action_controller_rescue_action_spec.rb +54 -0
  418. data/vendor/plugins/rspec-rails/spec/rails/extensions/action_view_base_spec.rb +48 -0
  419. data/vendor/plugins/rspec-rails/spec/rails/extensions/active_record_spec.rb +14 -0
  420. data/vendor/plugins/rspec-rails/spec/rails/interop/testcase_spec.rb +66 -0
  421. data/vendor/plugins/rspec-rails/spec/rails/matchers/assert_select_spec.rb +814 -0
  422. data/vendor/plugins/rspec-rails/spec/rails/matchers/description_generation_spec.rb +37 -0
  423. data/vendor/plugins/rspec-rails/spec/rails/matchers/errors_on_spec.rb +13 -0
  424. data/vendor/plugins/rspec-rails/spec/rails/matchers/have_text_spec.rb +62 -0
  425. data/vendor/plugins/rspec-rails/spec/rails/matchers/include_text_spec.rb +64 -0
  426. data/vendor/plugins/rspec-rails/spec/rails/matchers/redirect_to_spec.rb +209 -0
  427. data/vendor/plugins/rspec-rails/spec/rails/matchers/render_template_spec.rb +176 -0
  428. data/vendor/plugins/rspec-rails/spec/rails/matchers/should_change_spec.rb +15 -0
  429. data/vendor/plugins/rspec-rails/spec/rails/mocks/ar_classes.rb +10 -0
  430. data/vendor/plugins/rspec-rails/spec/rails/mocks/mock_model_spec.rb +106 -0
  431. data/vendor/plugins/rspec-rails/spec/rails/mocks/stub_model_spec.rb +80 -0
  432. data/vendor/plugins/rspec-rails/spec/rails/sample_modified_fixture.rb +8 -0
  433. data/vendor/plugins/rspec-rails/spec/rails/sample_spec.rb +8 -0
  434. data/vendor/plugins/rspec-rails/spec/rails/spec_server_spec.rb +96 -0
  435. data/vendor/plugins/rspec-rails/spec/rails/spec_spec.rb +11 -0
  436. data/vendor/plugins/rspec-rails/spec/rails_suite.rb +7 -0
  437. data/vendor/plugins/rspec-rails/spec/spec_helper.rb +57 -0
  438. data/vendor/plugins/rspec-rails/spec_resources/controllers/action_view_base_spec_controller.rb +2 -0
  439. data/vendor/plugins/rspec-rails/spec_resources/controllers/controller_spec_controller.rb +94 -0
  440. data/vendor/plugins/rspec-rails/spec_resources/controllers/redirect_spec_controller.rb +59 -0
  441. data/vendor/plugins/rspec-rails/spec_resources/controllers/render_spec_controller.rb +30 -0
  442. data/vendor/plugins/rspec-rails/spec_resources/controllers/rjs_spec_controller.rb +58 -0
  443. data/vendor/plugins/rspec-rails/spec_resources/helpers/explicit_helper.rb +38 -0
  444. data/vendor/plugins/rspec-rails/spec_resources/helpers/more_explicit_helper.rb +5 -0
  445. data/vendor/plugins/rspec-rails/spec_resources/helpers/plugin_application_helper.rb +6 -0
  446. data/vendor/plugins/rspec-rails/spec_resources/helpers/view_spec_helper.rb +13 -0
  447. data/vendor/plugins/rspec-rails/spec_resources/views/controller_spec/_partial.rhtml +0 -0
  448. data/vendor/plugins/rspec-rails/spec_resources/views/controller_spec/action_setting_flash_after_session_reset.rhtml +1 -0
  449. data/vendor/plugins/rspec-rails/spec_resources/views/controller_spec/action_setting_flash_before_session_reset.rhtml +1 -0
  450. data/vendor/plugins/rspec-rails/spec_resources/views/controller_spec/action_setting_the_assigns_hash.rhtml +0 -0
  451. data/vendor/plugins/rspec-rails/spec_resources/views/controller_spec/action_with_errors_in_template.rhtml +1 -0
  452. data/vendor/plugins/rspec-rails/spec_resources/views/controller_spec/action_with_template.rhtml +1 -0
  453. data/vendor/plugins/rspec-rails/spec_resources/views/layouts/application.rhtml +0 -0
  454. data/vendor/plugins/rspec-rails/spec_resources/views/layouts/simple.rhtml +0 -0
  455. data/vendor/plugins/rspec-rails/spec_resources/views/objects/_object.html.erb +1 -0
  456. data/vendor/plugins/rspec-rails/spec_resources/views/render_spec/_a_partial.rhtml +0 -0
  457. data/vendor/plugins/rspec-rails/spec_resources/views/render_spec/action_with_alternate_layout.rhtml +0 -0
  458. data/vendor/plugins/rspec-rails/spec_resources/views/render_spec/some_action.js.rjs +1 -0
  459. data/vendor/plugins/rspec-rails/spec_resources/views/render_spec/some_action.rhtml +0 -0
  460. data/vendor/plugins/rspec-rails/spec_resources/views/render_spec/some_action.rjs +1 -0
  461. data/vendor/plugins/rspec-rails/spec_resources/views/rjs_spec/_replacement_partial.rhtml +1 -0
  462. data/vendor/plugins/rspec-rails/spec_resources/views/rjs_spec/hide_div.rjs +1 -0
  463. data/vendor/plugins/rspec-rails/spec_resources/views/rjs_spec/hide_page_element.rjs +1 -0
  464. data/vendor/plugins/rspec-rails/spec_resources/views/rjs_spec/insert_html.rjs +1 -0
  465. data/vendor/plugins/rspec-rails/spec_resources/views/rjs_spec/replace.rjs +1 -0
  466. data/vendor/plugins/rspec-rails/spec_resources/views/rjs_spec/replace_html.rjs +1 -0
  467. data/vendor/plugins/rspec-rails/spec_resources/views/rjs_spec/replace_html_with_partial.rjs +1 -0
  468. data/vendor/plugins/rspec-rails/spec_resources/views/rjs_spec/visual_effect.rjs +1 -0
  469. data/vendor/plugins/rspec-rails/spec_resources/views/rjs_spec/visual_toggle_effect.rjs +1 -0
  470. data/vendor/plugins/rspec-rails/spec_resources/views/tag_spec/no_tags.rhtml +1 -0
  471. data/vendor/plugins/rspec-rails/spec_resources/views/tag_spec/single_div_with_no_attributes.rhtml +1 -0
  472. data/vendor/plugins/rspec-rails/spec_resources/views/tag_spec/single_div_with_one_attribute.rhtml +1 -0
  473. data/vendor/plugins/rspec-rails/spec_resources/views/view_spec/_partial.rhtml +2 -0
  474. data/vendor/plugins/rspec-rails/spec_resources/views/view_spec/_partial_used_twice.rhtml +0 -0
  475. data/vendor/plugins/rspec-rails/spec_resources/views/view_spec/_partial_with_local_variable.rhtml +1 -0
  476. data/vendor/plugins/rspec-rails/spec_resources/views/view_spec/_partial_with_sub_partial.rhtml +1 -0
  477. data/vendor/plugins/rspec-rails/spec_resources/views/view_spec/_spacer.rhtml +1 -0
  478. data/vendor/plugins/rspec-rails/spec_resources/views/view_spec/accessor.rhtml +5 -0
  479. data/vendor/plugins/rspec-rails/spec_resources/views/view_spec/block_helper.rhtml +3 -0
  480. data/vendor/plugins/rspec-rails/spec_resources/views/view_spec/entry_form.rhtml +2 -0
  481. data/vendor/plugins/rspec-rails/spec_resources/views/view_spec/explicit_helper.rhtml +2 -0
  482. data/vendor/plugins/rspec-rails/spec_resources/views/view_spec/foo/show.rhtml +1 -0
  483. data/vendor/plugins/rspec-rails/spec_resources/views/view_spec/implicit_helper.rhtml +2 -0
  484. data/vendor/plugins/rspec-rails/spec_resources/views/view_spec/multiple_helpers.rhtml +3 -0
  485. data/vendor/plugins/rspec-rails/spec_resources/views/view_spec/should_not_receive.rhtml +3 -0
  486. data/vendor/plugins/rspec-rails/spec_resources/views/view_spec/template_with_partial.rhtml +5 -0
  487. data/vendor/plugins/rspec-rails/spec_resources/views/view_spec/template_with_partial_using_collection.rhtml +3 -0
  488. data/vendor/plugins/rspec-rails/spec_resources/views/view_spec/template_with_partial_with_array.rhtml +1 -0
  489. data/vendor/plugins/rspec-rails/stories/all.rb +10 -0
  490. data/vendor/plugins/rspec-rails/stories/configuration/stories.rb +5 -0
  491. data/vendor/plugins/rspec-rails/stories/helper.rb +6 -0
  492. data/vendor/plugins/rspec-rails/stories/steps/people.rb +8 -0
  493. data/vendor/plugins/rspec-rails/stories/transactions_should_rollback +15 -0
  494. data/vendor/plugins/rspec-rails/stories/transactions_should_rollback.rb +25 -0
  495. data/vendor/plugins/rspec/.autotest +3 -0
  496. data/vendor/plugins/rspec/History.txt +1132 -0
  497. data/vendor/plugins/rspec/Manifest.txt +403 -0
  498. data/vendor/plugins/rspec/README.txt +63 -0
  499. data/vendor/plugins/rspec/Rakefile +89 -0
  500. data/vendor/plugins/rspec/TODO.txt +1 -0
  501. data/vendor/plugins/rspec/bin/autospec +4 -0
  502. data/vendor/plugins/rspec/bin/spec +4 -0
  503. data/vendor/plugins/rspec/examples/pure/autogenerated_docstrings_example.rb +19 -0
  504. data/vendor/plugins/rspec/examples/pure/before_and_after_example.rb +40 -0
  505. data/vendor/plugins/rspec/examples/pure/behave_as_example.rb +45 -0
  506. data/vendor/plugins/rspec/examples/pure/custom_expectation_matchers.rb +54 -0
  507. data/vendor/plugins/rspec/examples/pure/custom_formatter.rb +12 -0
  508. data/vendor/plugins/rspec/examples/pure/dynamic_spec.rb +9 -0
  509. data/vendor/plugins/rspec/examples/pure/file_accessor.rb +19 -0
  510. data/vendor/plugins/rspec/examples/pure/file_accessor_spec.rb +38 -0
  511. data/vendor/plugins/rspec/examples/pure/greeter_spec.rb +31 -0
  512. data/vendor/plugins/rspec/examples/pure/helper_method_example.rb +14 -0
  513. data/vendor/plugins/rspec/examples/pure/io_processor.rb +8 -0
  514. data/vendor/plugins/rspec/examples/pure/io_processor_spec.rb +21 -0
  515. data/vendor/plugins/rspec/examples/pure/legacy_spec.rb +11 -0
  516. data/vendor/plugins/rspec/examples/pure/mocking_example.rb +27 -0
  517. data/vendor/plugins/rspec/examples/pure/multi_threaded_behaviour_runner.rb +28 -0
  518. data/vendor/plugins/rspec/examples/pure/nested_classes_example.rb +36 -0
  519. data/vendor/plugins/rspec/examples/pure/partial_mock_example.rb +29 -0
  520. data/vendor/plugins/rspec/examples/pure/pending_example.rb +20 -0
  521. data/vendor/plugins/rspec/examples/pure/predicate_example.rb +27 -0
  522. data/vendor/plugins/rspec/examples/pure/priority.txt +1 -0
  523. data/vendor/plugins/rspec/examples/pure/shared_example_group_example.rb +81 -0
  524. data/vendor/plugins/rspec/examples/pure/shared_stack_examples.rb +38 -0
  525. data/vendor/plugins/rspec/examples/pure/spec_helper.rb +3 -0
  526. data/vendor/plugins/rspec/examples/pure/stack.rb +36 -0
  527. data/vendor/plugins/rspec/examples/pure/stack_spec.rb +63 -0
  528. data/vendor/plugins/rspec/examples/pure/stack_spec_with_nested_example_groups.rb +67 -0
  529. data/vendor/plugins/rspec/examples/pure/stubbing_example.rb +69 -0
  530. data/vendor/plugins/rspec/examples/pure/yielding_example.rb +33 -0
  531. data/vendor/plugins/rspec/examples/stories/adder.rb +13 -0
  532. data/vendor/plugins/rspec/examples/stories/addition +34 -0
  533. data/vendor/plugins/rspec/examples/stories/addition.rb +9 -0
  534. data/vendor/plugins/rspec/examples/stories/calculator.rb +65 -0
  535. data/vendor/plugins/rspec/examples/stories/game-of-life/.loadpath +5 -0
  536. data/vendor/plugins/rspec/examples/stories/game-of-life/README.txt +21 -0
  537. data/vendor/plugins/rspec/examples/stories/game-of-life/behaviour/everything.rb +6 -0
  538. data/vendor/plugins/rspec/examples/stories/game-of-life/behaviour/examples/examples.rb +3 -0
  539. data/vendor/plugins/rspec/examples/stories/game-of-life/behaviour/examples/game_behaviour.rb +35 -0
  540. data/vendor/plugins/rspec/examples/stories/game-of-life/behaviour/examples/grid_behaviour.rb +66 -0
  541. data/vendor/plugins/rspec/examples/stories/game-of-life/behaviour/stories/CellsWithLessThanTwoNeighboursDie.story +21 -0
  542. data/vendor/plugins/rspec/examples/stories/game-of-life/behaviour/stories/CellsWithMoreThanThreeNeighboursDie.story +21 -0
  543. data/vendor/plugins/rspec/examples/stories/game-of-life/behaviour/stories/EmptySpacesWithThreeNeighboursCreateACell.story +42 -0
  544. data/vendor/plugins/rspec/examples/stories/game-of-life/behaviour/stories/ICanCreateACell.story +42 -0
  545. data/vendor/plugins/rspec/examples/stories/game-of-life/behaviour/stories/ICanKillACell.story +17 -0
  546. data/vendor/plugins/rspec/examples/stories/game-of-life/behaviour/stories/TheGridWraps.story +53 -0
  547. data/vendor/plugins/rspec/examples/stories/game-of-life/behaviour/stories/create_a_cell.rb +52 -0
  548. data/vendor/plugins/rspec/examples/stories/game-of-life/behaviour/stories/helper.rb +6 -0
  549. data/vendor/plugins/rspec/examples/stories/game-of-life/behaviour/stories/kill_a_cell.rb +26 -0
  550. data/vendor/plugins/rspec/examples/stories/game-of-life/behaviour/stories/steps.rb +5 -0
  551. data/vendor/plugins/rspec/examples/stories/game-of-life/behaviour/stories/stories.rb +3 -0
  552. data/vendor/plugins/rspec/examples/stories/game-of-life/behaviour/stories/stories.txt +22 -0
  553. data/vendor/plugins/rspec/examples/stories/game-of-life/life.rb +3 -0
  554. data/vendor/plugins/rspec/examples/stories/game-of-life/life/game.rb +23 -0
  555. data/vendor/plugins/rspec/examples/stories/game-of-life/life/grid.rb +43 -0
  556. data/vendor/plugins/rspec/examples/stories/helper.rb +9 -0
  557. data/vendor/plugins/rspec/examples/stories/steps/addition_steps.rb +18 -0
  558. data/vendor/plugins/rspec/failing_examples/README.txt +7 -0
  559. data/vendor/plugins/rspec/failing_examples/diffing_spec.rb +36 -0
  560. data/vendor/plugins/rspec/failing_examples/failing_autogenerated_docstrings_example.rb +19 -0
  561. data/vendor/plugins/rspec/failing_examples/failure_in_setup.rb +10 -0
  562. data/vendor/plugins/rspec/failing_examples/failure_in_teardown.rb +10 -0
  563. data/vendor/plugins/rspec/failing_examples/mocking_example.rb +40 -0
  564. data/vendor/plugins/rspec/failing_examples/mocking_with_flexmock.rb +26 -0
  565. data/vendor/plugins/rspec/failing_examples/mocking_with_mocha.rb +25 -0
  566. data/vendor/plugins/rspec/failing_examples/mocking_with_rr.rb +27 -0
  567. data/vendor/plugins/rspec/failing_examples/partial_mock_example.rb +20 -0
  568. data/vendor/plugins/rspec/failing_examples/predicate_example.rb +29 -0
  569. data/vendor/plugins/rspec/failing_examples/raising_example.rb +47 -0
  570. data/vendor/plugins/rspec/failing_examples/spec_helper.rb +3 -0
  571. data/vendor/plugins/rspec/failing_examples/syntax_error_example.rb +7 -0
  572. data/vendor/plugins/rspec/failing_examples/team_spec.rb +44 -0
  573. data/vendor/plugins/rspec/failing_examples/timeout_behaviour.rb +7 -0
  574. data/vendor/plugins/rspec/init.rb +9 -0
  575. data/vendor/plugins/rspec/lib/autotest/discover.rb +3 -0
  576. data/vendor/plugins/rspec/lib/autotest/rspec.rb +46 -0
  577. data/vendor/plugins/rspec/lib/spec.rb +28 -0
  578. data/vendor/plugins/rspec/lib/spec/adapters.rb +1 -0
  579. data/vendor/plugins/rspec/lib/spec/adapters/ruby_engine.rb +26 -0
  580. data/vendor/plugins/rspec/lib/spec/adapters/ruby_engine/mri.rb +8 -0
  581. data/vendor/plugins/rspec/lib/spec/adapters/ruby_engine/rubinius.rb +8 -0
  582. data/vendor/plugins/rspec/lib/spec/example.rb +12 -0
  583. data/vendor/plugins/rspec/lib/spec/example/configuration.rb +158 -0
  584. data/vendor/plugins/rspec/lib/spec/example/errors.rb +15 -0
  585. data/vendor/plugins/rspec/lib/spec/example/example_group.rb +17 -0
  586. data/vendor/plugins/rspec/lib/spec/example/example_group_factory.rb +64 -0
  587. data/vendor/plugins/rspec/lib/spec/example/example_group_methods.rb +440 -0
  588. data/vendor/plugins/rspec/lib/spec/example/example_matcher.rb +44 -0
  589. data/vendor/plugins/rspec/lib/spec/example/example_methods.rb +107 -0
  590. data/vendor/plugins/rspec/lib/spec/example/module_inclusion_warnings.rb +38 -0
  591. data/vendor/plugins/rspec/lib/spec/example/module_reopening_fix.rb +21 -0
  592. data/vendor/plugins/rspec/lib/spec/example/pending.rb +18 -0
  593. data/vendor/plugins/rspec/lib/spec/example/shared_example_group.rb +58 -0
  594. data/vendor/plugins/rspec/lib/spec/expectations.rb +56 -0
  595. data/vendor/plugins/rspec/lib/spec/expectations/differs/default.rb +66 -0
  596. data/vendor/plugins/rspec/lib/spec/expectations/errors.rb +12 -0
  597. data/vendor/plugins/rspec/lib/spec/expectations/extensions.rb +2 -0
  598. data/vendor/plugins/rspec/lib/spec/expectations/extensions/object.rb +63 -0
  599. data/vendor/plugins/rspec/lib/spec/expectations/extensions/string_and_symbol.rb +17 -0
  600. data/vendor/plugins/rspec/lib/spec/expectations/handler.rb +52 -0
  601. data/vendor/plugins/rspec/lib/spec/extensions.rb +4 -0
  602. data/vendor/plugins/rspec/lib/spec/extensions/class.rb +24 -0
  603. data/vendor/plugins/rspec/lib/spec/extensions/main.rb +87 -0
  604. data/vendor/plugins/rspec/lib/spec/extensions/metaclass.rb +7 -0
  605. data/vendor/plugins/rspec/lib/spec/extensions/object.rb +6 -0
  606. data/vendor/plugins/rspec/lib/spec/interop/test.rb +12 -0
  607. data/vendor/plugins/rspec/lib/spec/interop/test/unit/autorunner.rb +6 -0
  608. data/vendor/plugins/rspec/lib/spec/interop/test/unit/testcase.rb +61 -0
  609. data/vendor/plugins/rspec/lib/spec/interop/test/unit/testresult.rb +6 -0
  610. data/vendor/plugins/rspec/lib/spec/interop/test/unit/testsuite_adapter.rb +34 -0
  611. data/vendor/plugins/rspec/lib/spec/interop/test/unit/ui/console/testrunner.rb +61 -0
  612. data/vendor/plugins/rspec/lib/spec/matchers.rb +162 -0
  613. data/vendor/plugins/rspec/lib/spec/matchers/be.rb +221 -0
  614. data/vendor/plugins/rspec/lib/spec/matchers/be_close.rb +37 -0
  615. data/vendor/plugins/rspec/lib/spec/matchers/change.rb +148 -0
  616. data/vendor/plugins/rspec/lib/spec/matchers/eql.rb +43 -0
  617. data/vendor/plugins/rspec/lib/spec/matchers/equal.rb +43 -0
  618. data/vendor/plugins/rspec/lib/spec/matchers/exist.rb +17 -0
  619. data/vendor/plugins/rspec/lib/spec/matchers/has.rb +34 -0
  620. data/vendor/plugins/rspec/lib/spec/matchers/have.rb +150 -0
  621. data/vendor/plugins/rspec/lib/spec/matchers/include.rb +70 -0
  622. data/vendor/plugins/rspec/lib/spec/matchers/match.rb +41 -0
  623. data/vendor/plugins/rspec/lib/spec/matchers/operator_matcher.rb +79 -0
  624. data/vendor/plugins/rspec/lib/spec/matchers/raise_error.rb +132 -0
  625. data/vendor/plugins/rspec/lib/spec/matchers/respond_to.rb +45 -0
  626. data/vendor/plugins/rspec/lib/spec/matchers/satisfy.rb +47 -0
  627. data/vendor/plugins/rspec/lib/spec/matchers/simple_matcher.rb +132 -0
  628. data/vendor/plugins/rspec/lib/spec/matchers/throw_symbol.rb +74 -0
  629. data/vendor/plugins/rspec/lib/spec/mocks.rb +211 -0
  630. data/vendor/plugins/rspec/lib/spec/mocks/argument_constraints.rb +185 -0
  631. data/vendor/plugins/rspec/lib/spec/mocks/argument_expectation.rb +71 -0
  632. data/vendor/plugins/rspec/lib/spec/mocks/error_generator.rb +84 -0
  633. data/vendor/plugins/rspec/lib/spec/mocks/errors.rb +10 -0
  634. data/vendor/plugins/rspec/lib/spec/mocks/extensions.rb +1 -0
  635. data/vendor/plugins/rspec/lib/spec/mocks/extensions/object.rb +3 -0
  636. data/vendor/plugins/rspec/lib/spec/mocks/framework.rb +15 -0
  637. data/vendor/plugins/rspec/lib/spec/mocks/message_expectation.rb +316 -0
  638. data/vendor/plugins/rspec/lib/spec/mocks/methods.rb +51 -0
  639. data/vendor/plugins/rspec/lib/spec/mocks/mock.rb +56 -0
  640. data/vendor/plugins/rspec/lib/spec/mocks/order_group.rb +29 -0
  641. data/vendor/plugins/rspec/lib/spec/mocks/proxy.rb +225 -0
  642. data/vendor/plugins/rspec/lib/spec/mocks/space.rb +28 -0
  643. data/vendor/plugins/rspec/lib/spec/mocks/spec_methods.rb +46 -0
  644. data/vendor/plugins/rspec/lib/spec/rake/spectask.rb +227 -0
  645. data/vendor/plugins/rspec/lib/spec/rake/verify_rcov.rb +52 -0
  646. data/vendor/plugins/rspec/lib/spec/runner.rb +214 -0
  647. data/vendor/plugins/rspec/lib/spec/runner/backtrace_tweaker.rb +56 -0
  648. data/vendor/plugins/rspec/lib/spec/runner/class_and_arguments_parser.rb +16 -0
  649. data/vendor/plugins/rspec/lib/spec/runner/command_line.rb +17 -0
  650. data/vendor/plugins/rspec/lib/spec/runner/drb_command_line.rb +20 -0
  651. data/vendor/plugins/rspec/lib/spec/runner/example_group_runner.rb +59 -0
  652. data/vendor/plugins/rspec/lib/spec/runner/formatter/base_formatter.rb +79 -0
  653. data/vendor/plugins/rspec/lib/spec/runner/formatter/base_text_formatter.rb +126 -0
  654. data/vendor/plugins/rspec/lib/spec/runner/formatter/failing_example_groups_formatter.rb +27 -0
  655. data/vendor/plugins/rspec/lib/spec/runner/formatter/failing_examples_formatter.rb +20 -0
  656. data/vendor/plugins/rspec/lib/spec/runner/formatter/html_formatter.rb +337 -0
  657. data/vendor/plugins/rspec/lib/spec/runner/formatter/nested_text_formatter.rb +65 -0
  658. data/vendor/plugins/rspec/lib/spec/runner/formatter/profile_formatter.rb +51 -0
  659. data/vendor/plugins/rspec/lib/spec/runner/formatter/progress_bar_formatter.rb +34 -0
  660. data/vendor/plugins/rspec/lib/spec/runner/formatter/snippet_extractor.rb +52 -0
  661. data/vendor/plugins/rspec/lib/spec/runner/formatter/specdoc_formatter.rb +39 -0
  662. data/vendor/plugins/rspec/lib/spec/runner/formatter/story/html_formatter.rb +174 -0
  663. data/vendor/plugins/rspec/lib/spec/runner/formatter/story/plain_text_formatter.rb +194 -0
  664. data/vendor/plugins/rspec/lib/spec/runner/formatter/story/progress_bar_formatter.rb +42 -0
  665. data/vendor/plugins/rspec/lib/spec/runner/formatter/text_mate_formatter.rb +16 -0
  666. data/vendor/plugins/rspec/lib/spec/runner/heckle_runner.rb +72 -0
  667. data/vendor/plugins/rspec/lib/spec/runner/heckle_runner_unsupported.rb +10 -0
  668. data/vendor/plugins/rspec/lib/spec/runner/option_parser.rb +204 -0
  669. data/vendor/plugins/rspec/lib/spec/runner/options.rb +318 -0
  670. data/vendor/plugins/rspec/lib/spec/runner/reporter.rb +167 -0
  671. data/vendor/plugins/rspec/lib/spec/runner/spec_parser.rb +71 -0
  672. data/vendor/plugins/rspec/lib/spec/story.rb +10 -0
  673. data/vendor/plugins/rspec/lib/spec/story/extensions.rb +3 -0
  674. data/vendor/plugins/rspec/lib/spec/story/extensions/main.rb +86 -0
  675. data/vendor/plugins/rspec/lib/spec/story/extensions/regexp.rb +9 -0
  676. data/vendor/plugins/rspec/lib/spec/story/extensions/string.rb +9 -0
  677. data/vendor/plugins/rspec/lib/spec/story/given_scenario.rb +14 -0
  678. data/vendor/plugins/rspec/lib/spec/story/runner.rb +59 -0
  679. data/vendor/plugins/rspec/lib/spec/story/runner/plain_text_story_runner.rb +48 -0
  680. data/vendor/plugins/rspec/lib/spec/story/runner/scenario_collector.rb +18 -0
  681. data/vendor/plugins/rspec/lib/spec/story/runner/scenario_runner.rb +54 -0
  682. data/vendor/plugins/rspec/lib/spec/story/runner/story_mediator.rb +137 -0
  683. data/vendor/plugins/rspec/lib/spec/story/runner/story_parser.rb +247 -0
  684. data/vendor/plugins/rspec/lib/spec/story/runner/story_runner.rb +70 -0
  685. data/vendor/plugins/rspec/lib/spec/story/scenario.rb +14 -0
  686. data/vendor/plugins/rspec/lib/spec/story/step.rb +70 -0
  687. data/vendor/plugins/rspec/lib/spec/story/step_group.rb +89 -0
  688. data/vendor/plugins/rspec/lib/spec/story/step_mother.rb +38 -0
  689. data/vendor/plugins/rspec/lib/spec/story/story.rb +39 -0
  690. data/vendor/plugins/rspec/lib/spec/story/world.rb +128 -0
  691. data/vendor/plugins/rspec/lib/spec/version.rb +13 -0
  692. data/vendor/plugins/rspec/plugins/mock_frameworks/flexmock.rb +23 -0
  693. data/vendor/plugins/rspec/plugins/mock_frameworks/mocha.rb +19 -0
  694. data/vendor/plugins/rspec/plugins/mock_frameworks/rr.rb +21 -0
  695. data/vendor/plugins/rspec/plugins/mock_frameworks/rspec.rb +20 -0
  696. data/vendor/plugins/rspec/rake_tasks/examples.rake +7 -0
  697. data/vendor/plugins/rspec/rake_tasks/examples_with_rcov.rake +9 -0
  698. data/vendor/plugins/rspec/rake_tasks/failing_examples_with_html.rake +9 -0
  699. data/vendor/plugins/rspec/rake_tasks/verify_rcov.rake +7 -0
  700. data/vendor/plugins/rspec/rspec.gemspec +33 -0
  701. data/vendor/plugins/rspec/spec/README.jruby +15 -0
  702. data/vendor/plugins/rspec/spec/autotest/discover_spec.rb +19 -0
  703. data/vendor/plugins/rspec/spec/autotest/rspec_spec.rb +146 -0
  704. data/vendor/plugins/rspec/spec/autotest_helper.rb +6 -0
  705. data/vendor/plugins/rspec/spec/autotest_matchers.rb +47 -0
  706. data/vendor/plugins/rspec/spec/rspec_suite.rb +7 -0
  707. data/vendor/plugins/rspec/spec/ruby_forker.rb +13 -0
  708. data/vendor/plugins/rspec/spec/spec.opts +6 -0
  709. data/vendor/plugins/rspec/spec/spec/adapters/ruby_engine_spec.rb +16 -0
  710. data/vendor/plugins/rspec/spec/spec/example/base_formatter_spec.rb +112 -0
  711. data/vendor/plugins/rspec/spec/spec/example/configuration_spec.rb +282 -0
  712. data/vendor/plugins/rspec/spec/spec/example/example_group/described_module_spec.rb +20 -0
  713. data/vendor/plugins/rspec/spec/spec/example/example_group/warning_messages_spec.rb +76 -0
  714. data/vendor/plugins/rspec/spec/spec/example/example_group_class_definition_spec.rb +48 -0
  715. data/vendor/plugins/rspec/spec/spec/example/example_group_factory_spec.rb +144 -0
  716. data/vendor/plugins/rspec/spec/spec/example/example_group_methods_spec.rb +574 -0
  717. data/vendor/plugins/rspec/spec/spec/example/example_group_spec.rb +724 -0
  718. data/vendor/plugins/rspec/spec/spec/example/example_matcher_spec.rb +96 -0
  719. data/vendor/plugins/rspec/spec/spec/example/example_methods_spec.rb +130 -0
  720. data/vendor/plugins/rspec/spec/spec/example/example_runner_spec.rb +194 -0
  721. data/vendor/plugins/rspec/spec/spec/example/nested_example_group_spec.rb +71 -0
  722. data/vendor/plugins/rspec/spec/spec/example/pending_module_spec.rb +69 -0
  723. data/vendor/plugins/rspec/spec/spec/example/predicate_matcher_spec.rb +21 -0
  724. data/vendor/plugins/rspec/spec/spec/example/shared_example_group_spec.rb +265 -0
  725. data/vendor/plugins/rspec/spec/spec/example/subclassing_example_group_spec.rb +25 -0
  726. data/vendor/plugins/rspec/spec/spec/expectations/differs/default_spec.rb +127 -0
  727. data/vendor/plugins/rspec/spec/spec/expectations/extensions/object_spec.rb +95 -0
  728. data/vendor/plugins/rspec/spec/spec/expectations/fail_with_spec.rb +71 -0
  729. data/vendor/plugins/rspec/spec/spec/extensions/main_spec.rb +71 -0
  730. data/vendor/plugins/rspec/spec/spec/interop/test/unit/resources/spec_that_fails.rb +10 -0
  731. data/vendor/plugins/rspec/spec/spec/interop/test/unit/resources/spec_that_passes.rb +10 -0
  732. data/vendor/plugins/rspec/spec/spec/interop/test/unit/resources/spec_with_errors.rb +10 -0
  733. data/vendor/plugins/rspec/spec/spec/interop/test/unit/resources/test_case_that_fails.rb +10 -0
  734. data/vendor/plugins/rspec/spec/spec/interop/test/unit/resources/test_case_that_passes.rb +10 -0
  735. data/vendor/plugins/rspec/spec/spec/interop/test/unit/resources/test_case_with_errors.rb +10 -0
  736. data/vendor/plugins/rspec/spec/spec/interop/test/unit/resources/testsuite_adapter_spec_with_test_unit.rb +38 -0
  737. data/vendor/plugins/rspec/spec/spec/interop/test/unit/spec_spec.rb +45 -0
  738. data/vendor/plugins/rspec/spec/spec/interop/test/unit/test_unit_spec_helper.rb +14 -0
  739. data/vendor/plugins/rspec/spec/spec/interop/test/unit/testcase_spec.rb +45 -0
  740. data/vendor/plugins/rspec/spec/spec/interop/test/unit/testsuite_adapter_spec.rb +9 -0
  741. data/vendor/plugins/rspec/spec/spec/matchers/be_close_spec.rb +39 -0
  742. data/vendor/plugins/rspec/spec/spec/matchers/be_spec.rb +248 -0
  743. data/vendor/plugins/rspec/spec/spec/matchers/change_spec.rb +329 -0
  744. data/vendor/plugins/rspec/spec/spec/matchers/description_generation_spec.rb +153 -0
  745. data/vendor/plugins/rspec/spec/spec/matchers/eql_spec.rb +28 -0
  746. data/vendor/plugins/rspec/spec/spec/matchers/equal_spec.rb +28 -0
  747. data/vendor/plugins/rspec/spec/spec/matchers/exist_spec.rb +57 -0
  748. data/vendor/plugins/rspec/spec/spec/matchers/handler_spec.rb +150 -0
  749. data/vendor/plugins/rspec/spec/spec/matchers/has_spec.rb +63 -0
  750. data/vendor/plugins/rspec/spec/spec/matchers/have_spec.rb +394 -0
  751. data/vendor/plugins/rspec/spec/spec/matchers/include_spec.rb +45 -0
  752. data/vendor/plugins/rspec/spec/spec/matchers/match_spec.rb +37 -0
  753. data/vendor/plugins/rspec/spec/spec/matchers/matcher_methods_spec.rb +78 -0
  754. data/vendor/plugins/rspec/spec/spec/matchers/mock_constraint_matchers_spec.rb +24 -0
  755. data/vendor/plugins/rspec/spec/spec/matchers/operator_matcher_spec.rb +191 -0
  756. data/vendor/plugins/rspec/spec/spec/matchers/raise_error_spec.rb +315 -0
  757. data/vendor/plugins/rspec/spec/spec/matchers/respond_to_spec.rb +54 -0
  758. data/vendor/plugins/rspec/spec/spec/matchers/satisfy_spec.rb +36 -0
  759. data/vendor/plugins/rspec/spec/spec/matchers/simple_matcher_spec.rb +93 -0
  760. data/vendor/plugins/rspec/spec/spec/matchers/throw_symbol_spec.rb +54 -0
  761. data/vendor/plugins/rspec/spec/spec/mocks/any_number_of_times_spec.rb +36 -0
  762. data/vendor/plugins/rspec/spec/spec/mocks/argument_expectation_spec.rb +23 -0
  763. data/vendor/plugins/rspec/spec/spec/mocks/at_least_spec.rb +97 -0
  764. data/vendor/plugins/rspec/spec/spec/mocks/at_most_spec.rb +93 -0
  765. data/vendor/plugins/rspec/spec/spec/mocks/bug_report_10260_spec.rb +8 -0
  766. data/vendor/plugins/rspec/spec/spec/mocks/bug_report_10263_spec.rb +24 -0
  767. data/vendor/plugins/rspec/spec/spec/mocks/bug_report_11545_spec.rb +33 -0
  768. data/vendor/plugins/rspec/spec/spec/mocks/bug_report_15719_spec.rb +30 -0
  769. data/vendor/plugins/rspec/spec/spec/mocks/bug_report_496.rb +17 -0
  770. data/vendor/plugins/rspec/spec/spec/mocks/bug_report_7611_spec.rb +19 -0
  771. data/vendor/plugins/rspec/spec/spec/mocks/bug_report_7805_spec.rb +22 -0
  772. data/vendor/plugins/rspec/spec/spec/mocks/bug_report_8165_spec.rb +31 -0
  773. data/vendor/plugins/rspec/spec/spec/mocks/bug_report_8302_spec.rb +26 -0
  774. data/vendor/plugins/rspec/spec/spec/mocks/failing_mock_argument_constraints_spec.rb +129 -0
  775. data/vendor/plugins/rspec/spec/spec/mocks/hash_including_matcher_spec.rb +53 -0
  776. data/vendor/plugins/rspec/spec/spec/mocks/mock_ordering_spec.rb +84 -0
  777. data/vendor/plugins/rspec/spec/spec/mocks/mock_space_spec.rb +54 -0
  778. data/vendor/plugins/rspec/spec/spec/mocks/mock_spec.rb +539 -0
  779. data/vendor/plugins/rspec/spec/spec/mocks/multiple_return_value_spec.rb +113 -0
  780. data/vendor/plugins/rspec/spec/spec/mocks/nil_expectation_warning_spec.rb +54 -0
  781. data/vendor/plugins/rspec/spec/spec/mocks/null_object_mock_spec.rb +54 -0
  782. data/vendor/plugins/rspec/spec/spec/mocks/once_counts_spec.rb +53 -0
  783. data/vendor/plugins/rspec/spec/spec/mocks/options_hash_spec.rb +35 -0
  784. data/vendor/plugins/rspec/spec/spec/mocks/partial_mock_spec.rb +144 -0
  785. data/vendor/plugins/rspec/spec/spec/mocks/partial_mock_using_mocks_directly_spec.rb +66 -0
  786. data/vendor/plugins/rspec/spec/spec/mocks/passing_mock_argument_constraints_spec.rb +174 -0
  787. data/vendor/plugins/rspec/spec/spec/mocks/precise_counts_spec.rb +52 -0
  788. data/vendor/plugins/rspec/spec/spec/mocks/record_messages_spec.rb +26 -0
  789. data/vendor/plugins/rspec/spec/spec/mocks/stub_spec.rb +188 -0
  790. data/vendor/plugins/rspec/spec/spec/mocks/twice_counts_spec.rb +67 -0
  791. data/vendor/plugins/rspec/spec/spec/package/bin_spec_spec.rb +14 -0
  792. data/vendor/plugins/rspec/spec/spec/runner/class_and_argument_parser_spec.rb +23 -0
  793. data/vendor/plugins/rspec/spec/spec/runner/command_line_spec.rb +140 -0
  794. data/vendor/plugins/rspec/spec/spec/runner/drb_command_line_spec.rb +99 -0
  795. data/vendor/plugins/rspec/spec/spec/runner/empty_file.txt +0 -0
  796. data/vendor/plugins/rspec/spec/spec/runner/examples.txt +2 -0
  797. data/vendor/plugins/rspec/spec/spec/runner/failed.txt +3 -0
  798. data/vendor/plugins/rspec/spec/spec/runner/formatter/failing_example_groups_formatter_spec.rb +45 -0
  799. data/vendor/plugins/rspec/spec/spec/runner/formatter/failing_examples_formatter_spec.rb +33 -0
  800. data/vendor/plugins/rspec/spec/spec/runner/formatter/html_formatted-1.8.4.html +365 -0
  801. data/vendor/plugins/rspec/spec/spec/runner/formatter/html_formatted-1.8.5-jruby.html +387 -0
  802. data/vendor/plugins/rspec/spec/spec/runner/formatter/html_formatted-1.8.5.html +371 -0
  803. data/vendor/plugins/rspec/spec/spec/runner/formatter/html_formatted-1.8.6-jruby.html +381 -0
  804. data/vendor/plugins/rspec/spec/spec/runner/formatter/html_formatted-1.8.6.html +370 -0
  805. data/vendor/plugins/rspec/spec/spec/runner/formatter/html_formatter_spec.rb +64 -0
  806. data/vendor/plugins/rspec/spec/spec/runner/formatter/nested_text_formatter_spec.rb +333 -0
  807. data/vendor/plugins/rspec/spec/spec/runner/formatter/profile_formatter_spec.rb +65 -0
  808. data/vendor/plugins/rspec/spec/spec/runner/formatter/progress_bar_formatter_spec.rb +155 -0
  809. data/vendor/plugins/rspec/spec/spec/runner/formatter/snippet_extractor_spec.rb +18 -0
  810. data/vendor/plugins/rspec/spec/spec/runner/formatter/spec_mate_formatter_spec.rb +104 -0
  811. data/vendor/plugins/rspec/spec/spec/runner/formatter/specdoc_formatter_spec.rb +158 -0
  812. data/vendor/plugins/rspec/spec/spec/runner/formatter/story/html_formatter_spec.rb +135 -0
  813. data/vendor/plugins/rspec/spec/spec/runner/formatter/story/plain_text_formatter_spec.rb +600 -0
  814. data/vendor/plugins/rspec/spec/spec/runner/formatter/story/progress_bar_formatter_spec.rb +82 -0
  815. data/vendor/plugins/rspec/spec/spec/runner/formatter/text_mate_formatted-1.8.4.html +365 -0
  816. data/vendor/plugins/rspec/spec/spec/runner/formatter/text_mate_formatted-1.8.6.html +370 -0
  817. data/vendor/plugins/rspec/spec/spec/runner/heckle_runner_spec.rb +78 -0
  818. data/vendor/plugins/rspec/spec/spec/runner/heckler_spec.rb +13 -0
  819. data/vendor/plugins/rspec/spec/spec/runner/noisy_backtrace_tweaker_spec.rb +45 -0
  820. data/vendor/plugins/rspec/spec/spec/runner/option_parser_spec.rb +409 -0
  821. data/vendor/plugins/rspec/spec/spec/runner/options_spec.rb +450 -0
  822. data/vendor/plugins/rspec/spec/spec/runner/output_one_time_fixture.rb +7 -0
  823. data/vendor/plugins/rspec/spec/spec/runner/output_one_time_fixture_runner.rb +8 -0
  824. data/vendor/plugins/rspec/spec/spec/runner/output_one_time_spec.rb +16 -0
  825. data/vendor/plugins/rspec/spec/spec/runner/quiet_backtrace_tweaker_spec.rb +62 -0
  826. data/vendor/plugins/rspec/spec/spec/runner/reporter_spec.rb +238 -0
  827. data/vendor/plugins/rspec/spec/spec/runner/resources/a_bar.rb +0 -0
  828. data/vendor/plugins/rspec/spec/spec/runner/resources/a_foo.rb +0 -0
  829. data/vendor/plugins/rspec/spec/spec/runner/resources/a_spec.rb +1 -0
  830. data/vendor/plugins/rspec/spec/spec/runner/spec.opts +2 -0
  831. data/vendor/plugins/rspec/spec/spec/runner/spec_drb.opts +1 -0
  832. data/vendor/plugins/rspec/spec/spec/runner/spec_parser/spec_parser_fixture.rb +70 -0
  833. data/vendor/plugins/rspec/spec/spec/runner/spec_parser_spec.rb +85 -0
  834. data/vendor/plugins/rspec/spec/spec/runner/spec_spaced.opts +2 -0
  835. data/vendor/plugins/rspec/spec/spec/runner_spec.rb +11 -0
  836. data/vendor/plugins/rspec/spec/spec/spec_classes.rb +133 -0
  837. data/vendor/plugins/rspec/spec/spec/story/builders.rb +46 -0
  838. data/vendor/plugins/rspec/spec/spec/story/extensions/main_spec.rb +161 -0
  839. data/vendor/plugins/rspec/spec/spec/story/extensions_spec.rb +14 -0
  840. data/vendor/plugins/rspec/spec/spec/story/given_scenario_spec.rb +27 -0
  841. data/vendor/plugins/rspec/spec/spec/story/runner/plain_text_story_runner_spec.rb +90 -0
  842. data/vendor/plugins/rspec/spec/spec/story/runner/scenario_collector_spec.rb +27 -0
  843. data/vendor/plugins/rspec/spec/spec/story/runner/scenario_runner_spec.rb +214 -0
  844. data/vendor/plugins/rspec/spec/spec/story/runner/story_mediator_spec.rb +143 -0
  845. data/vendor/plugins/rspec/spec/spec/story/runner/story_parser_spec.rb +401 -0
  846. data/vendor/plugins/rspec/spec/spec/story/runner/story_runner_spec.rb +294 -0
  847. data/vendor/plugins/rspec/spec/spec/story/runner_spec.rb +93 -0
  848. data/vendor/plugins/rspec/spec/spec/story/scenario_spec.rb +18 -0
  849. data/vendor/plugins/rspec/spec/spec/story/step_group_spec.rb +157 -0
  850. data/vendor/plugins/rspec/spec/spec/story/step_mother_spec.rb +84 -0
  851. data/vendor/plugins/rspec/spec/spec/story/step_spec.rb +272 -0
  852. data/vendor/plugins/rspec/spec/spec/story/story_helper.rb +2 -0
  853. data/vendor/plugins/rspec/spec/spec/story/story_spec.rb +84 -0
  854. data/vendor/plugins/rspec/spec/spec/story/world_spec.rb +423 -0
  855. data/vendor/plugins/rspec/spec/spec_helper.rb +56 -0
  856. data/vendor/plugins/rspec/stories/all.rb +5 -0
  857. data/vendor/plugins/rspec/stories/configuration/before_blocks.story +21 -0
  858. data/vendor/plugins/rspec/stories/configuration/stories.rb +7 -0
  859. data/vendor/plugins/rspec/stories/example_groups/autogenerated_docstrings +45 -0
  860. data/vendor/plugins/rspec/stories/example_groups/example_group_with_should_methods +17 -0
  861. data/vendor/plugins/rspec/stories/example_groups/nested_groups +17 -0
  862. data/vendor/plugins/rspec/stories/example_groups/output +25 -0
  863. data/vendor/plugins/rspec/stories/example_groups/stories.rb +7 -0
  864. data/vendor/plugins/rspec/stories/helper.rb +6 -0
  865. data/vendor/plugins/rspec/stories/interop/examples_and_tests_together +30 -0
  866. data/vendor/plugins/rspec/stories/interop/stories.rb +7 -0
  867. data/vendor/plugins/rspec/stories/interop/test_case_with_should_methods +17 -0
  868. data/vendor/plugins/rspec/stories/mock_framework_integration/stories.rb +7 -0
  869. data/vendor/plugins/rspec/stories/mock_framework_integration/use_flexmock.story +9 -0
  870. data/vendor/plugins/rspec/stories/pending_stories/README +3 -0
  871. data/vendor/plugins/rspec/stories/resources/helpers/cmdline.rb +9 -0
  872. data/vendor/plugins/rspec/stories/resources/helpers/story_helper.rb +16 -0
  873. data/vendor/plugins/rspec/stories/resources/matchers/smart_match.rb +37 -0
  874. data/vendor/plugins/rspec/stories/resources/spec/before_blocks_example.rb +32 -0
  875. data/vendor/plugins/rspec/stories/resources/spec/example_group_with_should_methods.rb +12 -0
  876. data/vendor/plugins/rspec/stories/resources/spec/simple_spec.rb +8 -0
  877. data/vendor/plugins/rspec/stories/resources/spec/spec_with_flexmock.rb +18 -0
  878. data/vendor/plugins/rspec/stories/resources/steps/running_rspec.rb +50 -0
  879. data/vendor/plugins/rspec/stories/resources/stories/failing_story.rb +15 -0
  880. data/vendor/plugins/rspec/stories/resources/test/spec_and_test_together.rb +57 -0
  881. data/vendor/plugins/rspec/stories/resources/test/test_case_with_should_methods.rb +30 -0
  882. data/vendor/plugins/rspec/stories/stories/multiline_steps.story +23 -0
  883. data/vendor/plugins/rspec/stories/stories/steps/multiline_steps.rb +13 -0
  884. data/vendor/plugins/rspec/stories/stories/stories.rb +6 -0
  885. data/vendor/plugins/rspec/story_server/prototype/javascripts/builder.js +136 -0
  886. data/vendor/plugins/rspec/story_server/prototype/javascripts/controls.js +972 -0
  887. data/vendor/plugins/rspec/story_server/prototype/javascripts/dragdrop.js +976 -0
  888. data/vendor/plugins/rspec/story_server/prototype/javascripts/effects.js +1117 -0
  889. data/vendor/plugins/rspec/story_server/prototype/javascripts/prototype.js +4140 -0
  890. data/vendor/plugins/rspec/story_server/prototype/javascripts/rspec.js +149 -0
  891. data/vendor/plugins/rspec/story_server/prototype/javascripts/scriptaculous.js +58 -0
  892. data/vendor/plugins/rspec/story_server/prototype/javascripts/slider.js +276 -0
  893. data/vendor/plugins/rspec/story_server/prototype/javascripts/sound.js +55 -0
  894. data/vendor/plugins/rspec/story_server/prototype/javascripts/unittest.js +568 -0
  895. data/vendor/plugins/rspec/story_server/prototype/lib/server.rb +24 -0
  896. data/vendor/plugins/rspec/story_server/prototype/stories.html +176 -0
  897. data/vendor/plugins/rspec/story_server/prototype/stylesheets/rspec.css +136 -0
  898. data/vendor/plugins/rspec/story_server/prototype/stylesheets/test.css +90 -0
  899. data/vendor/plugins/will_paginate/.manifest +49 -0
  900. data/vendor/plugins/will_paginate/CHANGELOG.rdoc +94 -0
  901. data/vendor/plugins/will_paginate/LICENSE +18 -0
  902. data/vendor/plugins/will_paginate/README.rdoc +106 -0
  903. data/vendor/plugins/will_paginate/Rakefile +62 -0
  904. data/vendor/plugins/will_paginate/examples/apple-circle.gif +0 -0
  905. data/vendor/plugins/will_paginate/examples/index.haml +69 -0
  906. data/vendor/plugins/will_paginate/examples/index.html +92 -0
  907. data/vendor/plugins/will_paginate/examples/pagination.css +90 -0
  908. data/vendor/plugins/will_paginate/examples/pagination.sass +91 -0
  909. data/vendor/plugins/will_paginate/init.rb +1 -0
  910. data/vendor/plugins/will_paginate/lib/will_paginate.rb +82 -0
  911. data/vendor/plugins/will_paginate/lib/will_paginate/array.rb +16 -0
  912. data/vendor/plugins/will_paginate/lib/will_paginate/collection.rb +146 -0
  913. data/vendor/plugins/will_paginate/lib/will_paginate/core_ext.rb +32 -0
  914. data/vendor/plugins/will_paginate/lib/will_paginate/finder.rb +253 -0
  915. data/vendor/plugins/will_paginate/lib/will_paginate/named_scope.rb +132 -0
  916. data/vendor/plugins/will_paginate/lib/will_paginate/named_scope_patch.rb +39 -0
  917. data/vendor/plugins/will_paginate/lib/will_paginate/version.rb +9 -0
  918. data/vendor/plugins/will_paginate/lib/will_paginate/view_helpers.rb +383 -0
  919. data/vendor/plugins/will_paginate/test/boot.rb +21 -0
  920. data/vendor/plugins/will_paginate/test/collection_test.rb +140 -0
  921. data/vendor/plugins/will_paginate/test/console +8 -0
  922. data/vendor/plugins/will_paginate/test/database.yml +22 -0
  923. data/vendor/plugins/will_paginate/test/finder_test.rb +443 -0
  924. data/vendor/plugins/will_paginate/test/fixtures/admin.rb +3 -0
  925. data/vendor/plugins/will_paginate/test/fixtures/developer.rb +13 -0
  926. data/vendor/plugins/will_paginate/test/fixtures/developers_projects.yml +13 -0
  927. data/vendor/plugins/will_paginate/test/fixtures/project.rb +15 -0
  928. data/vendor/plugins/will_paginate/test/fixtures/projects.yml +6 -0
  929. data/vendor/plugins/will_paginate/test/fixtures/replies.yml +29 -0
  930. data/vendor/plugins/will_paginate/test/fixtures/reply.rb +7 -0
  931. data/vendor/plugins/will_paginate/test/fixtures/schema.rb +38 -0
  932. data/vendor/plugins/will_paginate/test/fixtures/topic.rb +6 -0
  933. data/vendor/plugins/will_paginate/test/fixtures/topics.yml +30 -0
  934. data/vendor/plugins/will_paginate/test/fixtures/user.rb +2 -0
  935. data/vendor/plugins/will_paginate/test/fixtures/users.yml +35 -0
  936. data/vendor/plugins/will_paginate/test/helper.rb +37 -0
  937. data/vendor/plugins/will_paginate/test/lib/activerecord_test_case.rb +36 -0
  938. data/vendor/plugins/will_paginate/test/lib/activerecord_test_connector.rb +69 -0
  939. data/vendor/plugins/will_paginate/test/lib/load_fixtures.rb +11 -0
  940. data/vendor/plugins/will_paginate/test/lib/view_test_process.rb +165 -0
  941. data/vendor/plugins/will_paginate/test/tasks.rake +59 -0
  942. data/vendor/plugins/will_paginate/test/view_test.rb +363 -0
  943. data/vendor/plugins/will_paginate/will_paginate.gemspec +21 -0
  944. metadata +995 -0
@@ -0,0 +1,59 @@
1
+ class RedirectSpecController < ApplicationController
2
+
3
+ def action_with_no_redirect
4
+ render :text => "this is just here to keep this from causing a MissingTemplate error"
5
+ end
6
+
7
+ def action_with_redirect_to_somewhere
8
+ redirect_to :action => 'somewhere'
9
+ end
10
+
11
+ def action_with_redirect_to_other_somewhere
12
+ redirect_to :controller => 'render_spec', :action => 'text_action'
13
+ end
14
+
15
+ def action_with_redirect_to_somewhere_and_return
16
+ redirect_to :action => 'somewhere' and return
17
+ render :text => "this is after the return"
18
+ end
19
+
20
+ def somewhere
21
+ render :text => "this is just here to keep this from causing a MissingTemplate error"
22
+ end
23
+
24
+ def action_with_redirect_to_rspec_site
25
+ redirect_to "http://rspec.rubyforge.org"
26
+ end
27
+
28
+ def action_with_redirect_back
29
+ redirect_to :back
30
+ end
31
+
32
+ def action_with_redirect_in_respond_to
33
+ respond_to do |wants|
34
+ wants.html { redirect_to :action => 'somewhere' }
35
+ end
36
+ end
37
+
38
+ def action_with_redirect_which_creates_query_string
39
+ redirect_to :action => "somewhere", :id => 1111, :param1 => "value1", :param2 => "value2"
40
+ end
41
+
42
+ # note: sometimes this is the URL which rails will generate from the hash in
43
+ # action_with_redirect_which_creates_query_string
44
+ def action_with_redirect_with_query_string_order1
45
+ redirect_to "http://test.host/redirect_spec/somewhere/1111?param1=value1&param2=value2"
46
+ end
47
+
48
+ # note: sometimes this is the URL which rails will generate from the hash in
49
+ # action_with_redirect_which_creates_query_string
50
+ def action_with_redirect_with_query_string_order2
51
+ redirect_to "http://test.host/redirect_spec/somewhere/1111?param2=value2&param1=value1"
52
+ end
53
+
54
+ def action_with_redirect_to_unroutable_url_inside_app
55
+ redirect_to :controller => "nonexistant", :action => "none"
56
+ end
57
+
58
+ end
59
+
@@ -0,0 +1,30 @@
1
+ class RenderSpecController < ApplicationController
2
+ set_view_path File.join(File.dirname(__FILE__), "..", "views")
3
+
4
+ def some_action
5
+ respond_to do |format|
6
+ format.html
7
+ format.js
8
+ end
9
+ end
10
+
11
+ def action_which_renders_template_from_other_controller
12
+ render :template => 'controller_spec/action_with_template'
13
+ end
14
+
15
+ def text_action
16
+ render :text => "this is the text for this action"
17
+ end
18
+
19
+ def action_with_partial
20
+ render :partial => "a_partial"
21
+ end
22
+
23
+ def action_that_renders_nothing
24
+ render :nothing => true
25
+ end
26
+
27
+ def action_with_alternate_layout
28
+ render :layout => 'simple'
29
+ end
30
+ end
@@ -0,0 +1,58 @@
1
+ class RjsSpecController < ApplicationController
2
+ set_view_path File.join(File.dirname(__FILE__), "..", "views")
3
+
4
+ def replace_html
5
+ end
6
+
7
+ def insert_html
8
+ end
9
+
10
+ def replace
11
+ end
12
+
13
+ def hide_div
14
+ end
15
+
16
+ def hide_page_element
17
+ end
18
+
19
+ def replace_html_with_partial
20
+ end
21
+
22
+ def render_replace_html
23
+ render :update do |page|
24
+ page.replace_html 'mydiv', 'replacement text'
25
+ page.replace_html 'myotherdiv', 'other replacement text'
26
+ end
27
+ end
28
+
29
+ def render_replace_html_with_partial
30
+ render :update do |page|
31
+ page.replace_html 'mydiv', :partial => 'rjs_spec/replacement_partial'
32
+ end
33
+ end
34
+
35
+ def render_insert_html
36
+ render :update do |page|
37
+ page.insert_html 'mydiv', 'replacement text'
38
+ end
39
+ end
40
+
41
+ def render_replace
42
+ render :update do |page|
43
+ page.replace 'mydiv', 'replacement text'
44
+ end
45
+ end
46
+
47
+ def render_hide_div
48
+ render :update do |page|
49
+ page.hide 'mydiv'
50
+ end
51
+ end
52
+
53
+ def render_hide_page_element
54
+ render :update do |page|
55
+ page['mydiv'].hide
56
+ end
57
+ end
58
+ end
@@ -0,0 +1,38 @@
1
+ module ExplicitHelper
2
+ def method_in_explicit_helper
3
+ "<div>This is text from a method in the ExplicitHelper</div>"
4
+ end
5
+
6
+ # this is an example of a method spec'able with eval_erb in helper specs
7
+ def prepend(arg, &block)
8
+ begin # rails edge after 2.1.0 eliminated need for block.binding
9
+ concat(arg) + block.call
10
+ rescue
11
+ concat(arg, block.binding) + block.call
12
+ end
13
+ end
14
+
15
+ def named_url
16
+ rspec_on_rails_specs_url
17
+ end
18
+
19
+ def named_path
20
+ rspec_on_rails_specs_path
21
+ end
22
+
23
+ def params_foo
24
+ params[:foo]
25
+ end
26
+
27
+ def session_foo
28
+ session[:foo]
29
+ end
30
+
31
+ def request_thing
32
+ request.thing
33
+ end
34
+
35
+ def flash_thing
36
+ flash[:thing]
37
+ end
38
+ end
@@ -0,0 +1,5 @@
1
+ module MoreExplicitHelper
2
+ def method_in_more_explicit_helper
3
+ "<div>This is text from a method in the MoreExplicitHelper</div>"
4
+ end
5
+ end
@@ -0,0 +1,6 @@
1
+ # Methods added to this helper will be available to all templates in the application.
2
+ module ApplicationHelper
3
+ def method_in_plugin_application_helper
4
+ "<div>This is text from a method in the ApplicationHelper</div>"
5
+ end
6
+ end
@@ -0,0 +1,13 @@
1
+ module ViewSpecHelper
2
+ def method_in_helper
3
+ "<div>This is text from a method in the ViewSpecHelper</div>"
4
+ end
5
+
6
+ def method_in_template_with_partial
7
+ "<div>method_in_template_with_partial in ViewSpecHelper</div>"
8
+ end
9
+
10
+ def method_in_partial
11
+ "<div>method_in_partial in ViewSpecHelper</div>"
12
+ end
13
+ end
@@ -0,0 +1 @@
1
+ <div>This is action_with_template.rhtml</div>
@@ -0,0 +1 @@
1
+ # This is used for rails <= 1.2.3
@@ -0,0 +1 @@
1
+ This is the text in the replacement partial.
@@ -0,0 +1 @@
1
+ page.insert_html 'mydiv', 'replacement text'
@@ -0,0 +1 @@
1
+ page.replace 'mydiv', 'replacement text'
@@ -0,0 +1 @@
1
+ page.replace_html 'mydiv', 'replacement text'
@@ -0,0 +1 @@
1
+ page.replace_html 'mydiv', :partial => 'rjs_spec/replacement_partial'
@@ -0,0 +1 @@
1
+ page.visual_effect :fade, 'mydiv'
@@ -0,0 +1 @@
1
+ page.visual_effect :toggle_blind, 'mydiv'
@@ -0,0 +1,2 @@
1
+ <%= method_in_plugin_application_helper %>
2
+ <%= method_in_partial %>
@@ -0,0 +1 @@
1
+ <%= render :partial => 'partial', :object => partial %>
@@ -0,0 +1,5 @@
1
+ <div id="session"><%= session[:key] %></div>
2
+ <div id="params"><%= params[:key] %></div>
3
+ <div id="flash"><%= flash[:key] %></div>
4
+ <div id="controller"><%= params[:controller] %></div>
5
+ <div id="action"><%= params[:action] %></div>
@@ -0,0 +1,3 @@
1
+ <% if_allowed do %>
2
+ <div>block helper was rendered</div>
3
+ <% end %>
@@ -0,0 +1,2 @@
1
+ <%= method_in_plugin_application_helper %>
2
+ <%= method_in_explicit_helper %>
@@ -0,0 +1 @@
1
+ <%= method_in_plugin_application_helper %>
@@ -0,0 +1,2 @@
1
+ <%= method_in_plugin_application_helper %>
2
+ <%= method_in_helper %>
@@ -0,0 +1,3 @@
1
+ <%= method_in_plugin_application_helper %>
2
+ <%= method_in_explicit_helper %>
3
+ <%= method_in_more_explicit_helper %>
@@ -0,0 +1,3 @@
1
+ <% if @obj.render_partial? %>
2
+ <%= render :partial => 'some_partial' %>
3
+ <% end %>
@@ -0,0 +1,5 @@
1
+ <%= method_in_template_with_partial %>
2
+ <%= render :partial => 'partial' %>
3
+
4
+ <%= render :partial => 'partial_used_twice' %>
5
+ <%= render :partial => 'partial_used_twice' %>
@@ -0,0 +1,3 @@
1
+ <%= render :partial => 'partial',
2
+ :collection => ['Alice', 'Bob'],
3
+ :spacer_template => 'spacer' %>
@@ -0,0 +1,10 @@
1
+ require File.join(File.dirname(__FILE__), *%w[helper])
2
+ require File.join(File.dirname(__FILE__), *%w[steps people])
3
+
4
+ # Run transactions_should_rollback in Ruby
5
+ require File.join(File.dirname(__FILE__), *%w[transactions_should_rollback])
6
+
7
+ # Run transactions_should_rollback in Plain Text
8
+ with_steps_for :people do
9
+ run File.join(File.dirname(__FILE__), *%w[transactions_should_rollback]), :type => RailsStory
10
+ end
@@ -0,0 +1,5 @@
1
+ require File.join(File.dirname(__FILE__), *%w[.. helper])
2
+
3
+ with_steps_for :running_rspec do
4
+ run File.join(File.dirname(__FILE__), *%w[.. .. .. rspec stories configuration before_blocks.story]), :type => RailsStory
5
+ end
@@ -0,0 +1,6 @@
1
+ dir = File.dirname(__FILE__)
2
+ $LOAD_PATH.unshift File.expand_path("#{dir}/../lib")
3
+ require File.expand_path("#{dir}/../../../../spec/spec_helper")
4
+ require File.expand_path("#{dir}/../../rspec/stories/helper")
5
+
6
+ require 'spec/rails/story_adapter'
@@ -0,0 +1,8 @@
1
+ steps_for :people do
2
+ When "I add a Person" do
3
+ Person.create!(:name => "Foo")
4
+ end
5
+ Then "there should be one person" do
6
+ Person.count.should == 1
7
+ end
8
+ end
@@ -0,0 +1,15 @@
1
+ Story: transactions should rollback in plain text
2
+ As an RSpec/Rails Story author
3
+ I want transactions to roll back between scenarios in plain text
4
+ So that I can have confidence in the state of the database
5
+
6
+ Scenario: add one Person
7
+ When I add a Person
8
+
9
+ Scenario: add another person
10
+ GivenScenario: add one Person
11
+ Then there should be one person
12
+
13
+ Scenario: add yet another person
14
+ GivenScenario: add one Person
15
+ Then there should be one person
@@ -0,0 +1,25 @@
1
+ require File.join(File.dirname(__FILE__), *%w[helper])
2
+
3
+ Story "transactions should rollback", %{
4
+ As an RSpec/Rails Story author
5
+ I want transactions to roll back between scenarios
6
+ So that I can have confidence in the state of the database
7
+ }, :type => RailsStory do
8
+ Scenario "add one Person" do
9
+ When "I add a Person" do
10
+ Person.create!(:name => "Foo")
11
+ end
12
+ end
13
+
14
+ Scenario "add another person" do
15
+ GivenScenario "add one Person"
16
+ Then "there should be one person" do
17
+ Person.count.should == 1
18
+ end
19
+ end
20
+
21
+ Scenario "add yet another person" do
22
+ GivenScenario "add one Person"
23
+ Then "there should be one person"
24
+ end
25
+ end
@@ -0,0 +1,3 @@
1
+ Autotest.add_hook :initialize do |at|
2
+ at.add_exception("spec/interop/test/unit/resources")
3
+ end
@@ -0,0 +1,1132 @@
1
+ === Version 1.1.5
2
+
3
+ IMPORTANT: use the new 'autospec' command instead of 'autotest'. We changed
4
+ the way autotest discovers rspec so the autotest executable won't
5
+ automatically load rspec anymore. This allows rspec to live side by side other
6
+ spec frameworks without always co-opting autotest through autotest's discovery
7
+ mechanism.
8
+
9
+ ALSO IMPORTANT: $rspec_options is gone. If you were using this for anything
10
+ (like your own runners), use Spec::Runner.options instead.
11
+
12
+ ADDITIONALLY IMPORTANT: If you have any custom formatters, you'll need to
13
+ modify #example_pending to accept three arguments instead of just two. See the
14
+ rdoc for Spec::Runner::Formatter::BaseFormatter#example_pending for more
15
+ information.
16
+
17
+ * Consider MinGW as valid RUBY_PLATFORM for --colour option. (patch from Luis Lavena). Closes #406.
18
+ * Added additional characters to be escaped in step strings (patch from Jake Cahoon). Closes #417.
19
+ * Disable color codes on STDOUT when STDOUT.tty? is false (patch from Tim Pope). Closes #413.
20
+ * mock(:null_object=>true) plays nice with HTML (patch from Gerrit Kaiser). Closes #230.
21
+ * a step definition with no block is treated as pending
22
+ * make sure consolidate_failures only grabs _spec files. Closes #369
23
+ * Simplifying ExampleGroupMethods#registration_backtrace. (From Wilson Bilkovich - http://metaclass.org/2008/6/7/calling-in-the-dark)
24
+ * Use 127.0.0.1 instead of localhost for drb (thanks Ola Bini)
25
+ * html story formatter correctly colors story/scenario red if step fails (Patch from Joseph Wilk). Closes #300
26
+ * plain text story formatter correctly colors story/scenario red if step fails (Patch from Joseph Wilk). Closes #439
27
+ * quiet deprecation warning on inflector - patch from RSL. Closes #430
28
+ * added autospec executable
29
+ * added configurable messages to simple_matcher
30
+ * should and should_not return true on success
31
+ * use hoe for build/release
32
+ * bye, bye translator
33
+ * autotest/rspec uses ruby command instead of spec command (no need for spec command unless loading directories)
34
+ * Avoid 'invalid option -O' in autotest (patch from Jonathan del Strother). Closes #486.
35
+ * Fix: Unimplemented step with new line throws error (patch from Ben Mabey). Closes #494.
36
+ * Only use color codes on tty; override for autospec (patch from Tim Pope). Closes #413.
37
+ * Warn when setting mock expectations on nil (patch from Ben Mabey). Closes #521.
38
+ * Support argument constraints as values in the hash_including contstraint. Thanks to Pirkka Hartikainen for failing code examples and the fix. Buttons up #501.
39
+ * mock(:null_object=>true) plays nice with HTML (patch from Gerrit Kaiser)
40
+ * Consider MinGW as valid RUBY_PLATFORM for --colour option. (patch from Luis Lavena). Closes #406.
41
+ * Add 2nd arg to respond_to? to align w/ core Ruby rdoc: http://www.ruby-doc.org/core/classes/Object.html#M000604
42
+ * quiet backtrace tweaker filters individual lines out of multiline (ala Rails) error messages (Pat Maddox)
43
+ * added ability to stub multiple methods in one stub! call (Pat Maddox)
44
+ * story progress bar formatter and more colourful summaries from the plain text story formatter (Joseph Wilk)
45
+ * Avoid ruby invocation errors when autotesting (Jonathan del Strother)
46
+ * added mock('foo').as_null_object
47
+ * add file and line number to pending_example for formatters (Scott Taylor)
48
+ * return last stubbed value for mock expectation with no explicit return (Pat Maddox)
49
+ * Fixed bug when should_receive(:foo).any_number_of_times is called after similar stub (Pat Maddox)
50
+ * Warning messages now issued when expectations are set on nil (Ben Mabey)
51
+
52
+ === Version 1.1.4
53
+
54
+ Maintenance release.
55
+
56
+ Note: we've removed the metaclass method from Object. There were some
57
+ generated specs that used it, and they will now break. Just replace the
58
+ metaclass call with (class << self; self; end) and all will be well.
59
+
60
+ * added hash_including mock argument matcher. Closes #332 (patch from Rick DeNatale)
61
+ * pending steps print out yellow in stories (patch from Kyle Hargraves)
62
+ * Deprecation warnings for specs that assume auto-inclusion of modules. Closes #326 (patch from Scott Taylor)
63
+ * mock.should_not_receive(:anything) fails fast (once again)
64
+ * Patch from Antti Tarvainen to stop files from being loaded repeatedly when running heckle. Closes #333.
65
+ * Fixed bug in which session object in example was not the same instance used in the controller. Closes #331.
66
+ * Applied patch from Antti Tarvainen to fix bug where heckle runs rspec runs heckle runs rspec etc. Closes #280.
67
+ * Applied patch from Zach Dennis to merge :steps functionality to :steps_for. Closes #324.
68
+ * Applied patch from Ryan Davis to add eval of block passed to raise_error matcher. Closes #321.
69
+ * alias :context :describe in example_group_methods. Closes #312.
70
+ * Applied patch from Ben Mabey to make the Story runner exit with a non-0 exit code on failing stories. Closes #228.
71
+ * Applied patch from Coda Hale to get the :red hook called in autotest. Closes #279.
72
+ * Applied patch from Patrick Ritchie to support --drb in spec.opts. Closes #274, #293.
73
+ * Moved metaclass method from Object to an internal module which gets included where it is needed.
74
+ * Applied patch from Dayo Esho: and_yield clobbers return value from block. Closes #217.
75
+ * Applied patch from Bob Cotton: ExampleGroupFactory.default resets previously registered types. Closes #222.
76
+ * Applied patch from Mike Williams to support the lib directory in rails apps with the Textmate Alternate File command. Closes #276.
77
+ * ExampleGroupMethods#xspecify aliases #xit
78
+ * A SharedExampleGroup can be created within another ExampleGroup.
79
+ * Applied patch from Bob Cotton: Nested ExampleGroups do not have a spec_path. Closes #224.
80
+ * Add before_suite and after_suite callbacks to ExampleGroupMethods and Options. Closes #210.
81
+ * The after(:suite) callback lambda is passed a boolean representing whether the suite passed or failed
82
+ * Added NestedTextFormatter. Closes #366.
83
+ * decoupled mock framework from global extensions used by rspec - supports use of flexmock or mocha w/ rails
84
+ * Applied patch from Roman Chernyatchik to allow the user to pass in the ruby version into spectask. Closes #325, #370
85
+
86
+ === Version 1.1.3
87
+
88
+ Maintenance release.
89
+ Notice to autotest users: you must also upgrade to ZenTest-3.9.0.
90
+
91
+ * Tightened up exceptions list in autotest/rails_spec. Closes #264.
92
+ * Applied patch from Ryan Davis for ZenTest-3.9.0 compatibility
93
+ * Applied patch from Kero to add step_upcoming to story listeners. Closes #253.
94
+ * Fixed bug where the wrong named error was not always caught by "should raise_error"
95
+ * Applied patch from Luis Lavena: No coloured output on Windows due missing RUBYOPT. Closes #244.
96
+ * Applied patch from Craig Demyanovich to add support for "should_not render_template" to rspec_on_rails. Closes #241.
97
+ * Added --pattern (-p for short) option to control what files get loaded. Defaults to '**/*_spec.rb'
98
+ * Exit with non-0 exit code if examples *or tests* (in test/unit interop mode) fail. Closes #203.
99
+ * Moved at_exit hook to a method in Spec::Runner which only runs if specs get loaded. Closes #242.
100
+ * Applied patch from kakutani ensuring that base_view_path gets cleared after each view example. Closes #235.
101
+ * More tweaks to regexp step names
102
+ * Fixed focused specs in nested ExampleGroups. Closes #225.
103
+
104
+ === Version 1.1.2
105
+
106
+ Minor bug fixes/enhancements.
107
+ Notice to autotest users: you must also upgrade to ZenTest-3.8.0.
108
+
109
+ * RSpec's Autotest subclasses compatible with ZenTest-3.8.0 (thanks to Ryan Davis for making it easier on Autotest subs).
110
+ * Applied patch from idl to add spec/lib to rake stats. Closes #226.
111
+ * calling setup_fixtures and teardown_fixtures for Rails >= r8570. Closes #219.
112
+ * Applied patch from Josh Knowles using ActiveSupport's Inflector (when available) to make 'should have' read a bit better. Closes #197.
113
+ * Fixed regression in 1.1 that caused failing examples to fail to generate their own names. Closes #209.
114
+ * Applied doc patch from Jens Krämer for capturing content_for
115
+ * Applied patch from Alexander Lang to clean up story steps after each story. Closes #198.
116
+ * Applied patch from Josh Knowles to support 'string_or_response.should have_text(...)'. Closes #193.
117
+ * Applied patch from Ian Dees to quiet the Story Runner backtrace. Closes #183.
118
+ * Complete support for defining steps with regexp 'names'.
119
+
120
+ === Version 1.1.1
121
+
122
+ Bug fix release.
123
+
124
+ * Fix regression in 1.1.0 that caused transactions to not get rolled back between examples.
125
+ * Applied patch from Bob Cotton to reintroduce ExampleGroup.description_options. Closes LH[#186]
126
+
127
+ === Version 1.1.0
128
+
129
+ The "tell me a story and go nest yourself" release.
130
+
131
+ * Applied patch from Mike Vincent to handle generators rails > 2.0.1. Closes LH[#181]
132
+ * Formatter.pending signature changed so it gets passed an ExampleGroup instance instead of the name ( LH[#180])
133
+ * Fixed LH[#180] Spec::Rails::Example::ModelExampleGroup and friends show up in rspec/rails output
134
+ * Spec::Rails no longer loads ActiveRecord extensions if it's disabled in config/boot.rb
135
+ * Applied LH[#178] small annoyances running specs with warnings enabled (Patch from Mikko Lehtonen)
136
+ * Tighter integration with Rails fixtures. Take advantage of fixture caching to get performance improvements (Thanks to Pat Maddox, Nick Kallen, Jonathan Barnes, and Curtis)
137
+
138
+ === Version 1.1.0-RC1
139
+
140
+ Textmate Bundle users - this release adds a new RSpec bundle that highlights describe, it, before and after and
141
+ provides navigation to descriptions and examples (rather than classes and methods). When you first install this,
142
+ it is going to try to hijack all of your .rb files. All you need to do is open a .rb file that does not end with
143
+ 'spec.rb' and change the bundle selection from RSpec to Ruby. TextMate will do the right thing from then on.
144
+
145
+ Shortcuts for tab-activated snippets all follow the TextMate convention of 2 or 3 letters of the first word, followed by the first letter of each subsequent word. So "should have_at_least" would be triggered by shhal.
146
+
147
+ We reduced the scope for running spec directories, files, a single file or individual spec in TextMate to source.ruby.rspec. This allowed us to restore the standard Ruby shortcuts:
148
+
149
+ CMD-R runs all the specs in one file
150
+ CMD-SHIFT-R runs an individual spec
151
+ CMD-OPT-R runs any files or directories selected in the TextMate drawer
152
+
153
+ rspec_on_rails users - don't forget to run script/generate rspec
154
+
155
+ * Added shared_examples_for method, which you can (should) use instead of describe Foo, :shared => true
156
+ * Applied LH[#168] Fix describe Object, "description contains a # in it" (Patch from Martin Emde)
157
+ * Applied LH[#15] Reverse loading of ActionView::Base helper modules (Patch from Mark Van Holstyn)
158
+ * Applied LH[#149] Update contribute page to point towards lighthouse (Patch from Josh Knowles)
159
+ * Applied LH[#142] verify_rcov fails with latest rcov (Patch from Kyle Hargraves)
160
+ * Applied LH[#10] Allow stubs to yield and return values (Patch from Pat Maddox)
161
+ * Fixed LH[#139] version.rb in trunk missing svn last changed number
162
+ * Applied LH[#14] Adding support for by_at_least/by_at_most in Change matcher (Patch from Saimon Moore)
163
+ * Applied LH[#12] Fix for TM when switching to alternate file (Patch from Trevor Squires)
164
+ * Applied LH[#133] ExampleMatcher should match against before(:all) (Patch from Bob Cotton)
165
+ * Applied LH[#134] Only load spec inside spec_helper.rb (Patch from Mark Van Holstyn)
166
+ * RSpec now bails immediately if there are examples with identical names.
167
+ * Applied LH[#132] Plain Text stories should support Given and Given: (Patch from Jarkko Laine)
168
+ * Applied patch from Pat Maddox: Story Mediator - the glue that binds the plain text story parser with the rest of the system
169
+ * Applied LH[#16] Have SimpleMatchers expose their description for specdocs (Patch from Bryan Helmkamp)
170
+ * Stories now support --colour
171
+ * Changed the DSL modules to Example (i.e. Spec::Example instead of Spec::DSL)
172
+ * Applied [#15608] Story problem if parenthesis used in Given, When, Then or And (Patch from Sinclair Bain)
173
+ * Applied [#15659] GivenScenario fails when it is a RailsStory (Patch from Nathan Sutton)
174
+ * Fixed [#15639] rcov exclusion configuration. (Spec::Rails projects can configure rcov with spec/rcov.opts)
175
+ * The rdoc formatter (--format rdoc) is gone. It was buggy and noone was using it.
176
+ * Changed Spec::DSL::Behaviour to Spec::DSL::ExampleGroup
177
+ * Changed Spec::DSL::SharedBehaviour to Spec::DSL::SharedExampleGroup
178
+ * Applied [#14023] Small optimization for heavily proxied objects. (Patch from Ian Leitch)
179
+ * Applied [#13943] ProfileFormatter (Top 10 slowest examples) (Patch from Ian Leitch)
180
+ * Fixed [#15232] heckle is not working correctly in trunk (as of r2801)
181
+ * Applied [#14399] Show pending reasons in HTML report (Patch from Bryan Helmkamp)
182
+ * Discovered fixed: [#10263] mock "leak" when setting an expectation in a block passed to mock#should_receive
183
+ * Fixed [#14671] Spec::DSL::ExampleRunner gives "NO NAME because of --dry-run" for every example for 'rake spec:doc'
184
+ * Fixed [#14543] rspec_scaffold broken with Rails 2.0
185
+ * Removed Patch [#10577] Rails with Oracle breaks 0.9.2 - was no longer necessary since we moved describe to the Main object (instead of Object)
186
+ * Fixed [#14527] specs run twice on rails 1.2.4 and rspec/rspec_on_rails trunk
187
+ * Applied [#14043] Change output ordering to show pending before errors (Patch from Mike Mangino)
188
+ * Applied [#14095] Don't have ./script/generate rspec create previous_failures.txt (Patch from Bryan Helmkamp)
189
+ * Applied [#14254] Improved error handling for Object#should and Object#should_not (Patch from Antti Tarvainen)
190
+ * Applied [#14186] Remove dead code from message_expecation.rb (Patch from Antti Tarvainen)
191
+ * Applied [#14183] Tiny improvement on mock_spec.rb (Patch from Antti Tarvainen)
192
+ * Applied [#14208] Fix to Mock#method_missing raising NameErrors instead of MockExpectationErrors (Patch from Antti Tarvainen)
193
+ * Applied [#14255] Fixed examples in mock_spec.rb and shared_behaviour_spec.rb (Patch from Antti Tarvainen)
194
+ * Applied [#14362] partially mocking objects that define == can blow up (Patch from Pat Maddox)
195
+ * test_ methods with an arity of 0 defined in a describe block or Example object will be run as an Example, providing a seamless transition from Test::Unit
196
+ * Removed BehaviourRunner
197
+ * Fixed [#13969] Spec Failures on Trunk w/ Autotest
198
+ * Applied [#14156] False positives with should_not (Patch from Antti Tarvainen)
199
+ * Applied [#14170] route_for and params_from internal specs fixed (Patch from Antti Tarvainen)
200
+ * Fixed [#14166] Cannot build trunk
201
+ * Applied [#14142] Fix for bug #11602: Nested #have_tag specifications fails on the wrong line number (Patch from Antti Tarvainen)
202
+ * Removed warn_if_no_files argument and feature
203
+ * Steps (Given/When/Then) with no blocks are treated as pending
204
+ * Applied [#13913] Scenario should treat no code block as pending (Patch from Evan Light)
205
+ * Fixed [#13370] Weird mock expectation error (Patch from Mike Mangino)
206
+ * Applied [#13952] Fix for performance regression introduced in r2096 (Patch from Ian Leitch)
207
+ * Applied [#13881] Dynamically include Helpers that are included on ActionView::Base (Patch from Brandon Keepers)
208
+ * Applied [#13833] ActionView::Helpers::JavaScriptMacrosHelper removed after 1.2.3 (Patch from Yurii Rashkovskii)
209
+ * Applied [#13814] RSpec on Rails w/ fixture-scenarios (Patch from Shintaro Kakutani)
210
+ * Add ability to define Example subclass instead of using describe
211
+ * Applied Patch from James Edward Gray II to improve syntax highlighting in TextMate
212
+ * Fixed [#13579] NoMethodError not raised for missing helper methods
213
+ * Fixed [#13713] form helper method 'select' can not be called when calling custom helper methods from specs
214
+ * Example subclasses Test::Unit::TestCase
215
+ * Added stub_everything method to create a stub that will return itself for any message it doesn't understand
216
+ * Added stories directory with stories/all.rb and stories/helper.rb when you script/generate rspec
217
+ * Applied [#13554] Add "And" so you can say Given... And... When... Then... And...
218
+ * Applied [#11254] RSpec syntax coloring and function pop-up integration in TextMate (Patch from Wincent Colaiuta)
219
+ * Applied [#13143] ActionView::Helpers::RecordIdentificationHelper should be included if present (Patch from Jay Levitt)
220
+ * Applied [#13567] patch to allow stubs to yield consecutive values (Patch from Rupert Voelcker)
221
+ * Applied [#13559] reverse version of route_for (Patch from Rupert Voelcker)
222
+ * Added [#13532] /lib specs should get base EvalContext
223
+ * Applied [#13451] Add a null_object option to mock_model (Patch from James Deville)
224
+ * Applied [#11919] Making non-implemented specs easy in textmate (Patch from Scott Taylor)
225
+ * Applied [#13274] ThrowSymbol recognized a NameError triggered by Kernel#method_missing as a thrown Symbol
226
+ * Applied [#12722] the alternate file command does not work in rails views due to scope (Patch from Carl Porth)
227
+ * Behaviour is now a Module that is used by Example class methods and SharedBehaviour
228
+ * Added ExampleDefinition
229
+ * Added story runner framework based on rbehave [#12628]
230
+ * Applied [#13336] Helper directory incorrect for rake stats in statsetup task (Patch from Curtis Miller)
231
+ * Applied [#13339] Add the ability for spec_parser to parse describes with :behaviour_type set (Patch from Will Leinweber and Dav Yaginuma)
232
+ * Fixed [#13271] incorrect behaviour with expect_render and stub_render
233
+ * Applied [#13129] Fix failing specs in spec_distributed (Patch from Bob Cotton)
234
+ * Applied [#13118] Rinda support for Spec::Distributed (Patch from Bob Cotton)
235
+ * Removed BehaviourEval
236
+ * Removed Behaviour#inherit
237
+ * Moved implementation of install_dependencies to example_rails_app
238
+ * Renamed RSPEC_DEPS to VENDOR_DEPS
239
+ * Added Example#not_implemented?
240
+ * You can now stub!(:msg).with(specific args)
241
+ * describe("A", Hash, "with one element") will generate description "A Hash with one element" (Tip from Ola Bini)
242
+ * Applied [#13016] [DOC] Point out that view specs render, well, a view (Patch from Jay Levitt)
243
+ * Applied [#13078] Develop rspec with autotest (Patch from Scott Taylor)
244
+ * Fixed [#13065] Named routes throw a NoMethodError in Helper specs (Patches from James Deville and Mike Mangino)
245
+ * Added (back) the verbose attribute in Spec::Rake::SpecTask
246
+ * Changed documentation to point at the new http svn URL, which is more accessible.
247
+
248
+ === Version 1.0.8
249
+
250
+ Another bugfix release - this time to resolve the version mismatch
251
+
252
+ === Version 1.0.7
253
+
254
+ Quick bugfix release to ensure that you don't have to have the rspec gem installed
255
+ in order to use autotest with rspec_on_rails.
256
+
257
+ * Fixed [#13015] autotest gives failure in 'spec_command' after upgrade 1.0.5 to 1.0.6
258
+
259
+ === Version 1.0.6
260
+
261
+ The "holy cow, batman, it's been a long time since we released and there are a ton of bug
262
+ fixes, patches and even new features" release.
263
+
264
+ Warning: Spec::Rails users: In fixing 11508, we've removed the raise_controller_errors method. As long as you
265
+ follow the upgrade instructions and run 'script/generate rspec' you'll be fine, but if you skip this
266
+ step you need to manually go into spec_helper.rb and remove the call to that method (if present - it
267
+ might not be if you haven't upgraded in a while).
268
+
269
+ Warning: Implementors of custom formatters. Formatters will now be sent an Example object instead of just a
270
+ String for #example_started, #example_passed and #example_failed. In certain scenarios
271
+ (Spec::Ui with Spec::Distributed), the formatter must ask the Example for its sequence number instead of
272
+ keeping track of a sequence number internal to the formatter. Most of you shouldn't need to upgrade
273
+ your formatters though - the Example#to_s method returns the example name/description, so you should be
274
+ able to use the passed Example instance as if it were a String.
275
+
276
+ * Applied [#12986] Autotest Specs + Refactoring (Patch from Scott Tayler)
277
+ * Added a #close method to formatters, which allows them to gracefully close streams.
278
+ * Applied [#12935] Remove requirement that mocha must be installed as a gem when used as mocking framework. (Patch from Ryan Kinderman).
279
+ * Fixed [#12893] RSpec's Autotest should work with rspec's trunk
280
+ * Fixed [#12865] Partial mock error when object has an @options instance var
281
+ * Applied [#12701] Allow checking of content captured with content_for in view specs (Patch from Jens Kr�mer)
282
+ * Applied [#12817] Cannot include same shared behaviour when required with absolute paths (Patch from Ian Leitch)
283
+ * Applied [#12719] rspec_on_rails should not include pagination helper (Patch from Matthijs Langenberg)
284
+ * Fixed [#12714] helper spec not finding rails core helpers
285
+ * Applied [#12611] should_not redirect_to implementation (Patch from Yurii Rashkovskii)
286
+ * Applied [#12682] Not correctly aliasing original 'stub!' and 'should_receive' methods for ApplicationController (Patch from Matthijs Langenberg)
287
+ * Disabled controller.should_receive(:render) and controller.stub!(:render). Use expect_render or stub_render instead.
288
+ * Applied [#12484] Allow a Behaviour's Description to flow through to the Formatter (Patch from Bob Cotton)
289
+ * Fixed [#12448] The spec:plugins rake task from rspec_on_rails should ignore specs from the rspec_on_rails plugin
290
+ * Applied [#12300] rr integration (patch from Kyle Hargraves)
291
+ * Implemented [#12284] mock_with :rr (integration with RR mock framework: http://rubyforge.org/projects/pivotalrb/)
292
+ * Applied [#12237] (tiny) added full path to mate in switch_command (Patch from Carl Porth)
293
+ * Formatters will now be sent an Example object instead of just a String for certain methods
294
+ * All Spec::Rake::SpecTask attributes can now be procs, which allows for lazy evaluation.
295
+ * Changed the Spec::Ui interfaces slightly. See examples.
296
+ * Applied [#12174] mishandling of paths with spaces in spec_mate switch_command (Patch from Carl Porth)
297
+ * Implemented [#8315] File "Go to..." functionality
298
+ * Applied [#11917] Cleaner Spec::Ui error for failed Selenium connection (Patch from Ian Dees)
299
+ * Applied [#11888] rspec_on_rails spews out warnings when assert_select is used with an XML response (Patch from Ian Leitch)
300
+ * Applied [#12010] Nicer failure message formatting (Patch from Wincent Colaiuta)
301
+ * Applied [#12156] smooth open mate patch (Patch from Ienaga Eiji)
302
+ * Applied [#10577] Rails with Oracle breaks 0.9.2. (Patch from Sinclair Bain)
303
+ * Fixed [#12079] auto-generated example name incomplete: should have 1 error on ....]
304
+ * Applied [#12066] Docfix for mocks/mocks.page (Patch from Kyle Hargraves)
305
+ * Fixed [#11891] script/generate rspec_controller fails to create appropriate views (from templates) on edge rails
306
+ * Applied [#11921] Adds the correct controller_name from derived_controller_name() to the ViewExampleGroupController (Patch from Eloy Duran)
307
+ * Fixed [#11903] config.include with behaviour_type 'hash' does not work
308
+ * Examples without blocks and pending is now reported with a P instead of a *
309
+ * Pending blocks that now pass are rendered blue
310
+ * New behaviour for after: If an after block raises an error, the other ones will still run instead of bailing at the first.
311
+ * Made it possible to run spec from RSpec.tmbundle with --drb against a Rails spec_server.
312
+ * Applied [#11868] Add ability for pending to optionally hold a failing block and to fail when it passes (Patch from Bob Cotton)
313
+ * Fixed [#11843] watir_behaviour missing from spec_ui gem
314
+ * Added 'switch between source and spec file' command in Spec::Mate (based on code from Ruy Asan)
315
+ * Applied [#11509] Documentation - RSpec requires hpricot
316
+ * Applied [#11807] Daemonize spec_server and rake tasks to manage them. (patch from Kyosuke MOROHASHI)
317
+ * Added pending(message) method
318
+ * Fixed [#11777] should render_template doesn't check paths correctly
319
+ * Fixed [#11749] Use of 'rescue => e' does not catch all exceptions
320
+ * Fixed [#11793] should raise_error('with a message') does not work correctly
321
+ * Fixed [#11774] Mocks should respond to :kind_of? in the same way they respond to :is_a?
322
+ * Fixed [#11508] Exceptions are not raised for Controller Specs (removed experimental raise_controller_errors)
323
+ * Applied [#11615] Partial mock methods give ambiguous failures when given a method name as a String (Patch from Jay Phillips)
324
+ * Fixed [#11545] Rspec doesn't handle should_receive on ActiveRecord associations (Patch from Ian White)
325
+ * Fixed [#11514] configuration.use_transactional_fixtures is ALWAYS true, regardless of assignment
326
+ * Improved generated RESTful controller examples to cover both successful and unsuccessful POST and PUT
327
+ * Changed TextMate snippets for controllers to pass controller class names to #describe rather than controller_name.
328
+ * Changed TextMate snippets for mocks to use no_args() and any_args() instead of the deprecated Symbols.
329
+ * Applied [#11500] Documentation: no rails integration specs in 1.0
330
+ * Renamed SpecMate's shortcuts for running all examples and focused examples to avoid conflicts (CMD-d and CMD-i)
331
+ * Added a TextMate snippet for custom matchers, lifted from Geoffrey Grosenbach's RSpec peepcode show.
332
+ * The translator translates mock constraints to the new matchers that were introduced in 1.0.4
333
+ * Documented environment variables for Spec::Rake::SpecTask. Renamed SPECOPTS and RCOVOPTS to SPEC_OPTS and RCOV_OPTS.
334
+ * Fixed [#10534] Windows: undefined method 'controller_name'
335
+
336
+ === Version 1.0.5
337
+ Bug fixes. Autotest plugin tweaks.
338
+
339
+ * Fixed [#11378] fix to 10814 broke drb (re-opened #10814)
340
+ * Fixed [#11223] Unable to access flash from rails helper specs
341
+ * Fixed [#11337] autotest runs specs redundantly
342
+ * Fixed [#11258] windows: autotest won't run
343
+ * Applied [#11253] Tweaks to autotest file mappings (Patch from Wincent Colaiuta)
344
+ * Applied [#11252] Should be able to re-load file containing shared behaviours without raising an exception (Patch from Wincent Colaiuta)
345
+ * Fixed [#11247] standalone autotest doesn't work because of unneeded autotest.rb
346
+ * Applied [#11221] Autotest support does not work w/o Rails Gem installed (Patch from Josh Knowles)
347
+
348
+ === Version 1.0.4
349
+ The getting ready for JRuby release.
350
+
351
+ * Fixed [#11181] behaviour_type scoping of config.before(:each) is not working
352
+ * added mock argument constraint matchers (anything(), boolean(), an_instance_of(Type)) which work with rspec or mocha
353
+ * added mock argument constraint matchers (any_args(), no_args()) which only work with rspec
354
+ * deprecated rspec's symbol mock argument constraint matchers (:any_args, :no_args, :anything, :boolean, :numeric, :string)
355
+ * Added tarball of rspec_on_rails to the release build to support folks working behind a firewall that blocks svn access.
356
+ * Fixed [#11137] rspec incorrectly handles flash after resetting the session
357
+ * Fixed [#11143] Views code for ActionController::Base#render broke between 1.0.0 and 1.0.3 on Rails Edge r6731
358
+ * Added raise_controller_errors for controller examples in Spec::Rails
359
+
360
+ === Version 1.0.3
361
+ Bug fixes.
362
+
363
+ * Fixed [#11104] Website uses old specify notation
364
+ * Applied [#11101] StringHelpers.starts_with?(prefix) assumes a string parameter for _prefix_
365
+ * Removed 'rescue nil' which was hiding errors in controller examples.
366
+ * Fixed [#11075] controller specs fail when using mocha without integrated_views
367
+ * Fixed problem with redirect_to failing incorrectly against edge rails.
368
+ * Fixed [#11082] RspecResourceGenerator should be RspecScaffoldGenerator
369
+ * Fixed [#10959] Focused Examples do not work for Behaviour defined with constant with modules
370
+
371
+ === Version 1.0.2
372
+ This is just to align the version numbers in rspec and rspec_on_rails.
373
+
374
+ === Version 1.0.1
375
+ This is a maintenance release with mostly cleaning up, and one minor enhancement -
376
+ Modules are automatically included when described directly.
377
+
378
+ * Renamed Spec::Rails' rspec_resource generator to rspec_scaffold.
379
+ * Removed Spec::Rails' be_feed matcher since it's based on assert_select_feed which is not part of Rails (despite that docs for assert_select_encoded says it is).
380
+ * describe(SomeModule) will include that module in the examples. Like for Spec::Rails helpers, but now also in core.
381
+ * Header in HTML report will be yellow instead of red if there is one failed example
382
+ * Applied [#10951] Odd instance variable name in rspec_model template (patch from Kyle Hargraves)
383
+ * Improved integration with autotest (Patches from Ryan Davis and David Goodland)
384
+ * Some small fixes to make all specs run on JRuby.
385
+
386
+ === Version 1.0.0
387
+ The stake in the ground release. This represents a commitment to the API as it is. No significant
388
+ backwards compatibility changes in the API are expected after this release.
389
+
390
+ * Fixed [#10923] have_text matcher does not support should_not
391
+ * Fixed [#10673] should > and should >= broken
392
+ * Applied [#10921] Allow verify_rcov to accept greater than threshold coverage %'s via configuration
393
+ * Applied [#10920] Added support for not implemented examples (Patch from Chad Humphries and Ken Barker)
394
+ * Patch to allow not implemented examples. This works by not providing a block to the example. (Patch from Chad Humphries, Ken Barker)
395
+ * Yanked support for Rails 1.1.6 in Spec::Rails
396
+ * RSpec.tmbundle uses CMD-SHIFT-R to run focused examples now.
397
+ * Spec::Rails now bundles a spec:rcov task by default (suggestion from Kurt Schrader)
398
+ * Fixed [#10814] Runner loads shared code, test cases require them again
399
+ * Fixed [#10753] Global before and after
400
+ * Fixed [#10774] Allow before and after to be specified in config II
401
+ * Refactored Spec::Ui examples to use new global before and after blocks.
402
+ * Added instructions about how to get Selenium working with Spec::Ui (spec_ui/examples/selenium/README.txt)
403
+ * Fixed [#10805] selenium.rb missing from gem?
404
+ * Added rdocs explaining how to deal with errors in Rails' controller actions
405
+ * Applied [#10770] Finer grained includes.
406
+ * Fixed [#10747] Helper methods defined in shared specs are not visible when shared spec is used
407
+ * Fixed [#10748] Shared descriptions in separate files causes 'already exists' error
408
+ * Applied [#10698] Running with --drb executes specs twice (patch from Ruy Asan)
409
+ * Fixed [#10871] 0.9.4 - Focussed spec runner fails to run specs in descriptions with type and string when there is no leading space in the string
410
+
411
+ === Version 0.9.4
412
+ This release introduces massive improvements to Spec::Ui - the user interface functional testing
413
+ extension to RSpec. There are also some minor bug fixes to the RSpec core.
414
+
415
+ * Massive improvements to Spec::Ui. Complete support for all Watir's ie.xxx(how, what) methods. Inline screenshots and HTML.
416
+ * Reactivated --timeout, which had mysteriously been deactivated in a recent release.
417
+ * Fixed [#10669] Kernel#describe override does not cover Kernel#context
418
+ * Applied [#10636] Added spec for OptionParser in Runner (Patch from Scott Taylor)
419
+ * Added [#10516] should_include should be able to accept multiple items
420
+ * Applied [#10631] redirect_to matcher doesn't respect request.host (Patch from Tim Lucas)
421
+ * Each formatter now flushes their own IO. This is to avoid buffering of output.
422
+ * Fixed [#10670] IVarProxy#delete raises exception when instance variable does not exist
423
+
424
+ === Version 0.9.3
425
+ This is a bugfix release.
426
+
427
+ * Fixed [#10594] Failing Custom Matcher show NAME NOT GENERATED description
428
+ * describe(SomeType, "#message") will not add a space: "SomeType#message" (likewise for '.')
429
+ * describe(SomeType, "message") will have a decription with a space: "SomeType message"
430
+ * Applied [#10566] prepend_before and prepend_after callbacks
431
+ * Applied [#10567] Call setup and teardown using before and after callbacks
432
+
433
+ === Version 0.9.2
434
+ This is a quick maintenance release.
435
+
436
+ * Added some website love
437
+ * Fixed [#10542] reverse predicate matcher syntax
438
+ * Added a spec:translate Rake task to make 0.9 translation easier with Spec:Rails
439
+ * Better translation of should_redirect_to
440
+ * Fixed --colour support for Windows. This is a regression that was introduced in 0.9.1
441
+ * Applied [#10460] Make SpecRunner easier to instantiate without using commandline args
442
+
443
+ === Version 0.9.1
444
+
445
+ This release introduces #describe and #it (aliased as #context and #specify for
446
+ backwards compatibility). This allows you to express specs like this:
447
+
448
+ describe SomeClass do # Creates a Behaviour
449
+ it "should do something" do # Creates an Example
450
+ end
451
+ end
452
+
453
+ The command line features four new options that give you more control over what specs
454
+ are being run and in what order. This can be used to verify that your specs are
455
+ independent (by running in opposite order with --reverse). It can also be used to cut
456
+ down feedback time by running the most recently modified specs first (--loadby mtime --reverse).
457
+
458
+ Further, --example replaces the old --spec option, and it can now take a file name of
459
+ spec names as an alternative to just a spec name. The --format failing_examples:file.txt
460
+ option allows you to output an --example compatible file, which makes it possible to only
461
+ rerun the specs that failed in the last run. Spec::Rails uses all of these four options
462
+ by default to optimise your RSpec experience.
463
+
464
+ There is now a simple configuration model. For Spec::Rails, you do something like this:
465
+
466
+ Spec::Runner.configure do |config|
467
+ config.use_transactional_fixtures = true
468
+ config.use_instantiated_fixtures = false
469
+ config.fixture_path = RAILS_ROOT + '/spec/fixtures'
470
+ end
471
+
472
+ You can now use mocha or flexmock with RSpec if you prefer either to
473
+ RSpec's own mock framework. Just put this:
474
+
475
+ Spec::Runner.configure do |config|
476
+ config.mock_with :mocha
477
+ end
478
+
479
+ or this:
480
+
481
+ Spec::Runner.configure do |config|
482
+ config.mock_with :flexmock
483
+ end
484
+
485
+ in a file that is loaded before your specs. You can also
486
+ configure included modules and predicate_matchers:
487
+
488
+ Spec::Runner.configure do |config|
489
+ config.include SomeModule
490
+ config.predicate_matchers[:does_something?] = :do_something
491
+ end
492
+
493
+ See Spec::DSL::Behaviour for more on predicate_matchers
494
+
495
+ * Sugar FREE!
496
+ * Added [10434 ] Please Make -s synonymous with -e for autotest compat. This is temporary until autotest uses -e instead of -s.
497
+ * Fixed [#10133] custom predicate matchers
498
+ * Applied [#10473] Add should exist (new matcher) - Patch from Bret Pettichord
499
+ * Added another formatter: failing_behaviours. Writes the names of the failing behaviours for use with --example.
500
+ * Applied [#10315] Patch to fix pre_commit bug 10313 - pre_commit_rails: doesn't always build correctly (Patch from Antii Tarvainen)
501
+ * Applied [#10245] Patch to HTML escape the behavior name when using HTML Formatter (Patch from Josh Knowles)
502
+ * Applied [#10410] redirect_to does not behave consistently with regards to query string parameter ordering (Patch from Nicholas Evans)
503
+ * Applied [#9605] Patch for ER 9472, shared behaviour (Patch by Bob Cotton)
504
+ * The '--format rdoc' option no longer causes a dry-run by default. --dry-run must be used explicitly.
505
+ * It's possible to specify the output file in the --format option (See explanation in --help)
506
+ * Several --format options may be specified to output several formats in one run.
507
+ * The --out option is gone. Use --format html:path/to/my.html instead (or similar).
508
+ * Spec::Runner::Formatter::BaseTextFormatter#initialize only takes one argument - an IO. dry_run and color are setters.
509
+ * Made Spec::Ui *much* easier to install. It will be released separately. Check out trunk/spec_ui/examples
510
+ * HTML reports now include a syntax highlighted snippet of the source code where the spec failed (needs the syntax gem)
511
+ * Added [#10262] Better Helper testing of Erb evaluation block helpers
512
+ * Added [#9735] support flexmock (thanks to Jim Weirich for his modifications to flexmock to support this)
513
+ * Spec::Rails controller specs will no longer let mock exception ripple through to the response.
514
+ * Fixed [#9260] IvarProxy does not act like a hash.
515
+ * Applied [#9458] The rspec_scaffold generator does not take into account class nesting (Patch from Steve Tendon)
516
+ * Applied [#9132] Rakefile spec:doc can fail without preparing database (Patch from Steve Ross)
517
+ * Applied [#9678] Custom runner command line switch, and multi-threaded runner (Patch from Bob Cotton)
518
+ * Applied [#9926] Rakefile - RSPEC_DEPS constant as an Array of Hashes instead of an Array of Arrays (Patch from Scott Taylor)
519
+ * Applied [#9925] Changed ".rhtml" to "template" in REST spec generator (Patch from Scott Taylor)
520
+ * Applied [#9852] Patch for RSpec's Website using Webgen 0.4.2 (Patch from Scott Taylor)
521
+ * Fixed [#6523] Run rspec on rails without a db
522
+ * Fixed [#9295] rake spec should run anything in the spec directory (not just rspec's standard dirs)
523
+ * Added [#9786] infer controller and helper names from the described type
524
+ * Fixed [#7795] form_tag renders action='/view_spec' in view specs
525
+ * Fixed [#9767] rspec_on_rails should not define rescue_action on controllers
526
+ * Fixed [#9421] --line doesn't work with behaviours that use class names
527
+ * Fixed [#9760] rspec generators incompatible with changes to edge rails
528
+ * Added [#9786] infer controller and helper names from the described type
529
+ * Applied a simplified version of [#9282] Change to allow running specs from textmate with rspec installed as a rails plugin (and no rspec gem installed)
530
+ * Applied [#9700] Make Spec::DSL::Example#name public / Add a --timeout switch. A great way to prevent specs from getting slow.
531
+ * In Rails, script/generate rspec will generate a spec.opts file that optimises faster/more efficient running of specs.
532
+ * Added [#9522] support using rspec's expectations with test/unit
533
+ * Moved rspec_on_rails up to the project root, simplifying the download url
534
+ * Fixed [#8103] RSpec not installing spec script correctly.
535
+ * The --spec option is replaced by the --example option.
536
+ * The --loadby option no longer supports a file argument. Use --example file_name instead.
537
+ * The --example option can now take a file name as an argument. The file should contain example names.
538
+ * Internal classes are named Behaviour/Example (rather than Context/Specification).
539
+ * You can now use mocha by saying config.mock_with :mocha in a spec_helper
540
+ * before_context_eval is replaced by before_eval.
541
+ * Applied [#9509] allow spaced options in spec.opts
542
+ * Applied [#9510] Added File for Ruby 1.8.6
543
+ * Applied [#9511] Clarification to README file in spec/
544
+ * Moved all of the Spec::Rails specs down to the plugins directory - now you can run the specs after you install.
545
+ * Updated RSpec.tmbundle to the 0.9 syntax and replaced context/specify with describe/it.
546
+ * Applied [#9232] ActionController::Base#render is sometimes protected (patch from Dan Manges)
547
+ * Added --reverse option, allowing contexts/specs to be run in reverse order.
548
+ * Added --loadby option, allowing better control over load order for spec files. mtime and file.txt supported.
549
+ * Implemented [#8696] --order option (see --reverse and --loadby)
550
+ * Added describe/it as aliases for context/specify - suggestion from Dan North.
551
+ * Applied [#7637] [PATCH] add skip-migration option to rspec_scaffold generator
552
+ * Added [#9167] string.should have_tag
553
+ * Changed script/rails_spec_server to script/spec_server and added script/spec (w/ path to vendor/plugins/rspec)
554
+ * Fixed [#8897] Error when mixing controller spec with/without integrated views and using template system other than rhtml
555
+ * Updated sample app specs to 0.9 syntax
556
+ * Updated generated specs to 0.9 syntax
557
+ * Applied [#8994] trunk: generated names for be_ specs (Multiple patches from Yurii Rashkovskii)
558
+ * Applied [#9983]: Allow before and after to be called in BehaviourEval. This is useful for shared examples.
559
+
560
+ === Version 0.8.2
561
+
562
+ Replaced assert_select fork with an assert_select wrapper for have_tag. This means that "should have_rjs" no longer supports :hide or :effect, but you can still use should_have_rjs for those.
563
+
564
+ === Version 0.8.1
565
+
566
+ Quick "in house" bug-fix
567
+
568
+ === Version 0.8.0
569
+
570
+ This release introduces a new approach to handling expectations using Expression Matchers.
571
+
572
+ See Upgrade[http://rspec.rubyforge.org/upgrade.html], Spec::Expectations, Spec::Matchers and RELEASE-PLAN for more info.
573
+
574
+ This release also improves the spec command line by adding DRb support and making it possible to
575
+ store command line options in a file. This means a more flexible RSpec experience with Rails,
576
+ Rake and editor plugins like TextMate.
577
+
578
+ It also sports myriad new features, bug fixes, patches and general goodness:
579
+
580
+ * Fixed [#8928] rspec_on_rails 0.8.0-RC1 controller tests make double call to setup_with_fixtures
581
+ * Fixed [#8925] Documentation bug in 0.8.0RC1 rspec website
582
+ * Applied [#8132] [PATCH] RSpec breaks "rake db:sessions:create" in a rails project that has the rspec_on_rails plugin (Patch from Erik Kastner)
583
+ * Fixed [#8789] --line and --spec not working when the context has parenhesis in the name
584
+ * Added [#8783] auto generate spec names from last expectation
585
+ * --heckle now fails if the heckled class or module is not found.
586
+ * Fixed [#8771] Spec::Mocks::BaseExpectation#with converts hash params to array of arrays with #collect
587
+ * Fixed [#8750] should[_not]_include backwards compatibility between 0.8.0-RC1 and 0.7.5.1 broken
588
+ * Fixed [#8646] Context Runner does not report on Non standard exceptions and return a 0 return code
589
+ * RSpec on Rails' spec_helper.rb will only force RAILS_ENV to test if it was not specified on the command line.
590
+ * Fixed [#5485] proc#should_raise and proc#should_not_raise output
591
+ * Added [#8484] should_receive with blocks
592
+ * Applied [#8218] heckle_runner.rb doesn't work with heckle >= 1.2.0 (Patch from Michal Kwiatkowski)
593
+ * Fixed [#8240] Cryptic error message when no controller_name
594
+ * Applied [#7461] [PATCH] Contexts don't call Module::included when they include a module
595
+ * Removed unintended block of test/unit assertions in rspec_on_rails - they should all, in theory, now be accessible
596
+ * Added mock_model method to RSpec on Rails, which stubs common methods. Based on http://metaclass.org/2006/12/22/making-a-mockery-of-activerecord
597
+ * Fixed [#8165] Partial Mock Errors when respond_to? is true but the method is not in the object
598
+ * Fixed [#7611] Partial Mocks override Subclass methods
599
+ * Fixed [#8302] Strange side effect when mocking a class method
600
+ * Applied [#8316] to_param should return a stringified key in resource generator's controller spec (Patch from Chris Anderson)
601
+ * Applied [#8216] shortcut for creating object stub
602
+ * Applied [#8008] Correct generated specs for view when calling resource generator (Patch from Jonathan Tron)
603
+ * Fixed [#7754] Command-R fails to run spec in TextMate (added instruction from Luke Redpath to the website)
604
+ * Fixed [#7826] RSpect.tmbundle web page out of date.
605
+ * RSpec on Rails specs are now running against RoR 1.2.1 and 1.2.2
606
+ * rspec_scaffold now generates specs for views
607
+ * In a Rails app, RSpec core is only loaded when RAILS_ENV==test (init.rb)
608
+ * Added support for target.should arbitrary_expectation_handler and target.should_not arbitrary_expectation_handler
609
+ * Fixed [#7533] Spec suite fails and the process exits with a code 0
610
+ * Fixed [#7565] Subsequent stub! calls for method fail to override the first call to method
611
+ * Applied [#7524] Incorrect Documentation for 'pattern' in Rake task (patch from Stephen Duncan)
612
+ * Fixed [#7409] default fixtures do not appear to run.
613
+ * Fixed [#7507] "render..and return" doesn't return
614
+ * Fixed [#7509] rcov/rspec incorrectly includes boot.rb (Patch from Courtenay)
615
+ * Fixed [#7506] unnecessary complex output on failure of response.should be_redirect
616
+ * Applied [#6098] Make scaffold_resource generator. Based on code from Pat Maddox.
617
+ * The drbspec command is gone. Use spec --drb instead.
618
+ * The drb option is gone from the Rake task. Pass --drb to spec_opts instead.
619
+ * New -X/--drb option for running specs against a server like spec/rails' script/rails_spec_server
620
+ * New -O/--options and -G/--generate flags for file-based options (handy for spec/rails)
621
+ * Applied [#7339] Turn off caching in HTML reports
622
+ * Applied [#7419] "c option for colorizing output does not work with rails_spec" (Patch from Shintaro Kakutani)
623
+ * Applied [#7406] [PATCH] 0.7.5 rspec_on_rails loads fixtures into development database (Patch from Wilson Bilkovich)
624
+ * Applied [#7387] Allow stubs to return consecutive values (Patch from Pat Maddox)
625
+ * Applied [#7393] Fix for rake task (Patch from Pat Maddox)
626
+ * Reinstated support for response.should_render (in addition to controller.should_render)
627
+
628
+ === Version 0.7.5.1
629
+
630
+ Bug fix release to allow downloads of rspec gem using rubygems 0.9.1.
631
+
632
+ === Version 0.7.5
633
+ This release adds support for Heckle - Seattle'rb's code mutation tool.
634
+ There are also several bug fixes to the RSpec core and the RSpec on Rails plugin.
635
+
636
+ * Removed svn:externals on rails versions and plugins
637
+ * Applied [#7345] Adding context_setup and context_teardown, with specs and 100% rcov
638
+ * Applied [#7320] [PATCH] Allow XHR requests in controller specs to render RJS templates
639
+ * Applied [#7319] Migration code uses drop_column when it should use remove_column (patch from Pat Maddox)
640
+ * Added support for Heckle
641
+ * Applied [#7282] dump results even if spec is interrupted (patch from Kouhei Sutou)
642
+ * Applied [#7277] model.should_have(n).errors_on(:attribute) (patch from Wilson Bilkovich)
643
+ * Applied [#7270] RSpec render_partial colliding with simply_helpful (patch from David Goodlad)
644
+ * Added [#7250] stubs should support throwing
645
+ * Added [#7249] stubs should support yielding
646
+ * Fixed [#6760] fatal error when accessing nested finders in rspec
647
+ * Fixed [#7179] script/generate rspec_scaffold generates incorrect helper name
648
+ * Added preliminary support for assert_select (response.should_have)
649
+ * Fixed [#6971] and_yield does not work when the arity is -1
650
+ * Fixed [#6898] Can we separate rspec from the plugins?
651
+ * Added [#7025] should_change should accept a block
652
+ * Applied [#6989] partials with locals (patch from Micah Martin)
653
+ * Applied [#7023] Typo in team.page
654
+
655
+ === Version 0.7.4
656
+
657
+ This release features a complete redesign of the reports generated with --format html.
658
+ As usual there are many bug fixes - mostly related to spec/rails.
659
+
660
+ * Applied [#7010] Fixes :spacer_template does not work w/ view spec (patch from Shintaro Kakutani)
661
+ * Applied [#6798] ensure two ':' in the first backtrace line for Emacs's 'next-error' command (patch from Kouhei Sutou)
662
+ * Added Much nicer reports to generated website
663
+ * Much nicer reports with --format --html (patch from Luke Redpath)
664
+ * Applied [#6959] Calls to render and redirect in controllers should return true
665
+ * Fixed [#6981] helper method is not available in partial template.
666
+ * Added [#6978] mock should tell you the expected and actual args when receiving the right message with the wrong args
667
+ * Added the possibility to tweak the output of the HtmlFormatter (by overriding extra_failure_content).
668
+ * Fixed [#6936] View specs don't include ApplicationHelper by default
669
+ * Fixed [#6903] Rendering a partial in a view makes the view spec blow up
670
+ * Added callback library from Brian Takita
671
+ * Added [#6925] support controller.should_render :action_name
672
+ * Fixed [#6884] intermittent errors related to method binding
673
+ * Fixed [#6870] rspec on edge rails spec:controller fixture loading fails
674
+ * Using obj.inspect for all messages
675
+ * Improved performance by getting rid of instance_exec (instance_eval is good enough because we never need to pass it args)
676
+
677
+ === Version 0.7.3
678
+
679
+ Almost normal bug fix/new feature release.
680
+
681
+ A couple of things you need to change in your rails specs:
682
+ # spec_helper.rb is a little different (see http://rspec.rubyforge.org/upgrade.html)
683
+ # use controller.should_render before OR after the action (controller.should_have_rendered is deprecated)
684
+
685
+ * Applied [#6577] messy mock backtrace when frozen to edge rails (patch from Jay Levitt)
686
+ * Fixed [#6674] rspec_on_rails fails on @session deprecation warning
687
+ * Fixed [#6780] routing() was failing...fix included - works for 1.1.6 and edge (1.2)
688
+ * Fixed [#6835] bad message with arbitrary predicate
689
+ * Added [#6731] Partial templates rendered
690
+ * Fixed [#6713] helper methods not rendered in view tests?
691
+ * Fixed [#6707] cannot run controller / helper tests via rails_spec or spec only works with rake
692
+ * Applied [#6417] lambda {...}.should_change(receiver, :message) (patch from Wilson Bilkovich)
693
+ * Eliminated dependency on ZenTest
694
+ * Fixed [#6650] Reserved characters in the TextMate bundle break svn on Win32
695
+ * Fixed [#6643] script/generate rspec_controller: invalid symbol generation for 'controller_name' for *modularized* controllers
696
+ * The script/rails_spec command has been moved to bin/drbspec in RSpec core (installed by the gem)
697
+
698
+ === Version 0.7.2
699
+
700
+ This release introduces a brand new RSpec bundle for TextMate, plus some small bugfixes.
701
+
702
+ * Packaged RSpec.tmbundle.tgz as part of the distro
703
+ * Fixed [#6593] Add moving progress bar to HtmlFormatter using Javascript
704
+ * Applied [#6265] should_raise should accept an Exception object
705
+ * Fixed [#6616] Can't run Rails specs with RSpec.tmbundle
706
+ * Fixed [#6411] Can't run Rails specs with ruby
707
+ * Added [#6589] New -l --line option. This is useful for IDE/editor runners/extensions.
708
+ * Fixed [#6615] controller.should_render_rjs should support :partial => 'path/to/template'
709
+
710
+ === Version 0.7.1
711
+
712
+ Bug fixes and a couple o' new features.
713
+
714
+ * Fixed [#6575] Parse error in aliasing the partial mock original method (patch by Brian Takita)
715
+ * Fixed [#6277] debris left by stubbing (trunk) [submitted by dastels] (fixed by fix to [#6575])
716
+ * Fixed [#6575] Parse error in aliasing the partial mock original method
717
+ * Fixed [#6555] should_have_tag does not match documentation
718
+ * Fixed [#6567] SyntaxError should not stop entire run
719
+ * Fixed [#6558] integrated views look for template even when redirected
720
+ * Fixed [#6547] response.should be_redirect broken in 0.7.0
721
+ * Applied [#6471] Easy way to spec routes
722
+ * Applied [#6587] Rspec on Rails displays "Spec::Rails::ContextFactory" as context name
723
+ * Applied [#6514] Document has trivial typos.
724
+ * Added [#6560] controller.session should be available before the action
725
+ * Added support for should_have_rjs :visual_effect
726
+ * Different printing and colours for unmet expectations (red) and other exceptions (magenta)
727
+ * Simplified method_missing on mock_methods to make it less invasive on partial mocks.
728
+
729
+ === Version 0.7.0
730
+
731
+ This is the "Grow up and eat your own dog food release". RSpec is now used on itself and
732
+ we're no longer using Test::Unit to test it. Although, we are still extending Test::Unit
733
+ for the rails plugin (indirectly - through ZenTest)
734
+
735
+ IMPORTANT NOTE: THIS RELEASE IS NOT 100% BACKWARDS COMPATIBLE TO 0.6.x
736
+
737
+ There are a few changes that will require that you change your existing specs.
738
+
739
+ RSpec now handles equality exactly like ruby does:
740
+
741
+ # actual.should_equal(expected) will pass if actual.equal?(expected) returns true
742
+ # actual.should eql(expected) will pass if actual.eql?(expected) returns true
743
+ # actual.should == expected will pass if actual == expected) returns true
744
+
745
+ At the high level, eql? implies equivalence, while equal? implies object identity. For more
746
+ information on how ruby deals w/ equality, you should do this:
747
+
748
+ ri equal?
749
+
750
+ or look at this:
751
+
752
+ http://www.ruby-doc.org/core/classes/Object.html#M001057
753
+
754
+ Also, we left in should_be as a synonym for should_equal, so the only specs that should break are the
755
+ ones using should_equal (which used to use <code>==</code> instead of <code>.equal?</code>).
756
+
757
+ Lastly, should_be used to handle true and false differently from any other values. We've removed
758
+ this special handling, so now actual.should_be true will fail for any value other than true (it
759
+ used to pass for any non-nil, non-false value), and actual.should_be false will fail for any
760
+ value other than false (it used to pass for nil or false).
761
+
762
+ Here's what you'll need to do to update your specs:
763
+ # search for "should_equal" and replace with "should_eql"
764
+ # run specs
765
+
766
+ If any specs still fail, they are probably related to should be_true or should_be_false using
767
+ non-boolean values. Those you'll just have to inspect manually and adjust appropriately (sorry!).
768
+
769
+ --------------------------------------------------
770
+ Specifying multiple return values in mocks now works like this:
771
+
772
+ mock.should_receive(:message).and_return(1,2,3)
773
+
774
+ It used to work like this:
775
+
776
+ mock.should_receive(:message).and_return([1,2,3])
777
+
778
+ but we decided that was counter intuitive and otherwise lame.
779
+
780
+ Here's what you'll need to do to update your specs:
781
+ # search for "and_return(["
782
+ # get rid of the "[" and "]"
783
+
784
+ --------------------------------------------------
785
+ RSpec on Rails now supports the following (thanks to ZenTest upon which it is built):
786
+
787
+ # Separate specs for models, views, controllers and helpers
788
+ # Controller specs are completely decoupled from the views by default (though you can tell them to couple themselves if you prefer)
789
+ # View specs are completely decoupled from app-specific controllers
790
+
791
+ See http://rspec.rubyforge.org/documentation/rails/index.html for more information
792
+ --------------------------------------------------
793
+ As usual, there are also other new features and bug fixes:
794
+
795
+ * Added lots of documentation on mocks/stubs and the rails plugin.
796
+ * Added support for assigns[key] syntax for controller specs (to align w/ pre-existing syntax for view specs)
797
+ * Added support for controller.should_redirect_to
798
+ * RSpec on Rails automatically checks whether it's compatible with the installed RSpec
799
+ * Applied [#6393] rspec_on_rails uses deprecated '@response' instead of the accessor
800
+ * RSpec now has 100% spec coverage(!)
801
+ * Added support for stubbing and partial mocking
802
+ * Progress (....F..F.) is now coloured. Tweaked patch from KAKUTANI Shintaro.
803
+ * Backtrace now excludes the rcov runner (/usr/local/bin/rcov)
804
+ * Fixed [#5539] predicates do not work w/ rails
805
+ * Added [#6091] support for Regexp matching messages sent to should_raise
806
+ * Added [#6333] support for Regexp matching in mock arguments
807
+ * Applied [#6283] refactoring of diff support to allow selectable formats and custom differs
808
+ * Fixed [#5564] "ruby spec_file.rb" doesn't work the same way as "spec spec_file.rb"
809
+ * Fixed [#6056] Multiple output of failing-spec notice
810
+ * Fixed [#6233] Colours in specdoc
811
+ * Applied [#6207] Allows --diff option to diff target and expected's #inspect output (Patch by Lachie Cox)
812
+ * Fixed [#6203] Failure messages are misleading - consider using inspect.
813
+ * Added [#6334] subject.should_have_xyz will try to call subject.has_xyz? - use this for hash.should_have_key(key)
814
+ * Fixed [#6017] Rake task should ignore empty or non-existent spec-dirs
815
+
816
+ === Version 0.6.4
817
+
818
+ In addition to a number of bug fixes and patches, this release begins to formalize the support for
819
+ RSpec on Rails.
820
+
821
+ * Added Christopher Petrilli's TextMate bundle to vendor/textmate/RSpec.tmbundle
822
+ * Fixed [#5909], once again supporting multi_word_predicates
823
+ * Applied [#5873] - response.should_have_rjs (initial patch from Jake Howerton, based on ARTS by Kevin Clark)
824
+ * Added generation of view specs for rspec_on_rails
825
+ * Applied [#5815] active_record_subclass.should_have(3).records
826
+ * Added support in "rake stats" for view specs (in spec/views)
827
+ * Applied [#5801] QuickRef.pdf should say RSpec, not rSpec
828
+ * Applied [#5728] rails_spec_runner fails on Windows (Patch from Lindsay Evans).
829
+ * Applied [#5708] RSpec Rails plugin rspec_controller generator makes specs that do not parse.
830
+ * Cleaned up RSpec on Rails so it doesn't pollute as much during bootstrapping.
831
+ * Added support for response.should_have_tag and response.should_not_have_tag (works just like assert_tag in rails)
832
+ * Added new -c, --colour, --color option for colourful (red/green) output. Inspired from Pat Eyler's Redgreen gem.
833
+ * Added examples for Watir and Selenium under the gem's vendor directory.
834
+ * Renamed rails_spec_runner to rails_spec_server (as referred to in the docs)
835
+ * Added support for trying a plural for arbitrary predicates. E.g. Album.should_exist(:name => "Hey Jude") will call Album.exists?(:name => "Hey Jude")
836
+ * Added support for should_have to work with methods taking args returning a collection. E.g. @dave.should_have(3).albums_i_have_that_this_guy_doesnt(@aslak)
837
+ * Added [#5570] should_not_receive(:msg).with(:specific, "args")
838
+ * Applied [#5065] to support using define_method rather than method_missing to capture expected messages on mocks. Thanks to Eero Saynatkari for the tip that made it work.
839
+ * Restructured directories and Modules in order to separate rspec into three distinct Modules: Spec::Expectations, Spec::Runner and Spec::Mocks. This will allow us to more easily integrate other mock frameworks and/or allow test/unit users to take advantage of the expectation API.
840
+ * Applied [#5620] support any boolean method and arbitrary comparisons (5.should_be < 6) (Patch from Mike Williams)
841
+
842
+ === Version 0.6.3
843
+
844
+ This release fixes some minor bugs related to RSpec on Rails
845
+ Note that if you upgrade a rails app with this version of the rspec_on_rails plugin
846
+ you should remove your lib/tasks/rspec.rake if it exists.
847
+
848
+ * Backtraces from drb (and other standard ruby libraries) are now stripped from backtraces.
849
+ * Applied [#5557] Put rspec.rake into the task directory of the RSpec on Rails plugin (Patch from Daniel Siemssen)
850
+ * Applied [#5556] rails_spec_server loads environment.rb twice (Patch from Daniel Siemssen)
851
+
852
+ === Version 0.6.2
853
+ This release fixes a couple of regressions with the rake task that were introduced in the previous version (0.6.1)
854
+
855
+ * Fixed [#5518] ruby -w: warnings in 0.6.1
856
+ * Applied [#5525] fix rake task path to spec tool for gem-installed rspec (patch from Riley Lynch)
857
+ * Fixed a teensey regression with the rake task - introduced in 0.6.1. The spec command is now quoted so it works on windows.
858
+
859
+ === Version 0.6.1
860
+ This is the "fix the most annoying bugs release" of RSpec. There are 9 bugfixes this time.
861
+ Things that may break backwards compatibility:
862
+ 1) Spec::Rake::SpecTask no longer has the options attribute. Use ruby_opts, spec_opts and rcov_opts instead.
863
+
864
+ * Fixed [#4891] RCOV task failing on windows
865
+ * Fixed [#4896] Shouldn't modify user's $LOAD_PATH (Tip from Gavin Sinclair)
866
+ * Fixed [#5369] ruby -w: warnings in RSpec 0.5.16 (Tip from Suraj Kurapati)
867
+ * Applied [#5141] ExampleMatcher doesn't escape strings before matching (Patch from Nikolai Weibull).
868
+ * Fixed [#5224] Move 'require diff-lcs' from test_helper.rb to diff_test.rb (Tip from Chris Roos)
869
+ * Applied [#5449] Rake stats for specs (Patch from Nick Sieger)
870
+ * Applied [#5468, #5058] Fix spec runner to correctly run controller specs (Patch from Daniel Siemssen)
871
+ * Applied fixes to rails_spec_server to improve its ability to run several times. (Patch from Daniel Siemssen)
872
+ * Changed RCov::VerifyTask to fail if the coverage is above the threshold. This is to ensure it gets bumped when coverage improves.
873
+
874
+ === Version 0.6.0
875
+ This release makes an official commitment to underscore_syntax (with no more support for dot.syntax)
876
+
877
+ * Fixed bug (5292) that caused mock argument matching to fail
878
+ * Converted ALL tests to use underscore syntax
879
+ * Fixed all remaining problems with underscores revealed by converting all the tests to underscores
880
+ * Enhanced sugar to support combinations of methods (i.e. once.and_return)
881
+ * Simplified helper structure taking advantage of dot/underscore combos (i.e. should.be.an_instance_of, which can be expressed as should be_an_instance_of)
882
+ * Added support for at_most in mocks
883
+ * Added support for should_not_receive(:msg) (will be removing should_receive(:msg).never some time soon)
884
+ * Added support for should_have_exactly(5).items_in_collection
885
+
886
+ === Version 0.5.16
887
+ This release improves Rails support and test2spec translation.
888
+
889
+ * Fixed underscore problems that occurred when RSpec was used in Rails
890
+ * Simplified the Rails support by packaging it as a plugin instead of a generator gem.
891
+ * Fixed [#5063] 'rspec_on_rails' require line in spec_helper.rb
892
+ * Added pre_commit rake task to reduce risk of regressions. Useful for RSpec developers and patchers.
893
+ * Added failure_message to RSpec Rake task
894
+ * test2spec now defines converted helper methods outside of the setup block (bug #5057).
895
+
896
+ === Version 0.5.15
897
+ This release removes a prematurely added feature that shouldn't have been added.
898
+
899
+ * Removed support for differences that was added in 0.5.14. The functionality is not aligned with RSpec's vision.
900
+
901
+ === Version 0.5.14
902
+ This release introduces better ways to extend specs, improves some of the core API and
903
+ a experimental support for faster rails specs.
904
+
905
+ * Added proc methods for specifying differences (increments and decrements). See difference_test.rb
906
+ * Methods can now be defined alongside specs. This obsoletes the need for defining methods in setup. (Patch #5002 from Brian Takita)
907
+ * Sugar (underscores) now works correctly with should be_a_kind_of and should be_an_instance_of
908
+ * Added support for include and inherit in contexts. (Patch #4971 from Brian Takita)
909
+ * Added rails_spec and rails_spec_server for faster specs on rails (still buggy - help needed)
910
+ * Fixed bug that caused should_render to break if given a :symbol (in Rails)
911
+ * Added support for comparing exception message in should_raise and should_not_raise
912
+
913
+ === Version 0.5.13
914
+ This release fixes some subtle bugs in the mock API.
915
+
916
+ * Use fully-qualified class name of Exceptions in failure message. Easier to debug that way.
917
+ * Fixed a bug that caused mocks to yield a one-element array (rather than the element) when one yield arg specified.
918
+ * Mocks not raise AmbiguousReturnError if an explicit return is used at the same time as an expectation block.
919
+ * Blocks passed to yielding mocks can now raise without causing mock verification to fail.
920
+
921
+ === Version 0.5.12
922
+ This release adds diff support for failure messages, a HTML formatter plus some other
923
+ minor enhancements.
924
+
925
+ * Added HTML formatter.
926
+ * Added fail_on_error option to spectask.
927
+ * Added support for diffing, using the diff-lcs Rubygem (#2648).
928
+ * Remove RSpec on Rails files from backtrace (#4694).
929
+ * All of RSpec's own tests run successfully after translation with test2spec.
930
+ * Added --verbose mode for test2spec - useful for debugging when classes fail to translate.
931
+ * Output of various formatters is now flushed - to get more continuous output.
932
+
933
+ === Version 0.5.11
934
+ This release makes test2spec usable with Rails (with some manual steps).
935
+ See http://rspec.rubyforge.org/tools/rails.html for more details
936
+
937
+ * test2spec now correctly translates bodies of helper methods (non- test_*, setup and teardown ones).
938
+ * Added more documentation about how to get test2spec to work with Rails.
939
+
940
+ === Version 0.5.10
941
+ This version features a second rewrite of test2spec - hopefully better than the previous one.
942
+
943
+ * Improved test2spec's internals. It now transforms the syntax tree before writing out the code.
944
+
945
+ === Version 0.5.9
946
+ This release improves test2spec by allowing more control over the output
947
+
948
+ * Added --template option to test2spec, which allows for custom output driven by ERB
949
+ * Added --quiet option to test2spec
950
+ * Removed unnecessary dependency on RubyToC
951
+
952
+ === Version 0.5.8
953
+ This release features a new Test::Unit to RSpec translation tool.
954
+ Also note that the RubyGem of the previous release (0.5.7) was corrupt.
955
+ We're close to being able to translate all of RSpec's own Test::Unit
956
+ tests and have them run successfully!
957
+
958
+ * Updated test2spec documentation.
959
+ * Replaced old test2rspec with a new test2spec, which is based on ParseTree and RubyInline.
960
+
961
+ === Version 0.5.7
962
+ This release changes examples and documentation to recommend underscores rather than dots,
963
+ and addresses some bugfixes and changes to the spec commandline.
964
+
965
+ * spec DIR now works correctly, recursing down and slurping all *.rb files
966
+ * All documentation and examples are now using '_' instead of '.'
967
+ * Custom external formatters can now be specified via --require and --format.
968
+
969
+ === Version 0.5.6
970
+ This release fixes a bug in the Rails controller generator
971
+
972
+ * The controller generator did not write correct source code (missing 'do'). Fixed.
973
+
974
+ === Version 0.5.5
975
+ This release adds initial support for Ruby on Rails in the rspec_generator gem.
976
+
977
+ * [Rails] Reorganised Lachie's original code to be a generator packaged as a gem rather than a plugin.
978
+ * [Rails] Imported code from http://lachie.info/svn/projects/rails_plugins/rspec_on_rails (Written by Lachie Cox)
979
+ * Remove stack trace lines from TextMate's Ruby bundle
980
+ * Better error message from spectask when no spec files are found.
981
+
982
+ === Version 0.5.4
983
+ The "the tutorial is ahead of the gem" release
984
+
985
+ * Support for running a single spec with --spec
986
+ * Exitcode is now 1 unless all specs pass, in which case it's 0.
987
+ * -v, --version now both mean the same thing
988
+ * For what was verbose output (-v), use --format specdoc or -f s
989
+ * --format rdoc always runs in dry-run mode
990
+ * Removed --doc and added --format and --dry-run
991
+ * Refactored towards more pluggable formatters
992
+ * Use webgen's execute tag when generating website (more accurate)
993
+ * Fixed incorrect quoting of spec_opts in SpecTask
994
+ * Added patch to enable underscored shoulds like 1.should_equal(1) - patch from Rich Kilmer
995
+ * Removed most inherited instance method from Mock, making more methods mockable.
996
+ * Made the RCovVerify task part of the standard toolset.
997
+ * Documented Rake task and how to use it with Rcov
998
+ * Implemented <ruby></ruby> tags for website (hooking into ERB, RedCloth and syntax)
999
+ * RSpec Rake task now takes spec_opts and out params so it can be used for doc generation
1000
+ * RCov integration for RSpec Rake task (#4058)
1001
+ * Group all results instead of printing them several times (#4057)
1002
+ * Mocks can now yield
1003
+ * Various improvements to error reporting (including #4191)
1004
+ * backtrace excludes rspec code - use -b to include it
1005
+ * split examples into examples (passing) and failing_examples
1006
+
1007
+ === Version 0.5.3
1008
+ The "hurry up, CoR is in two days" release.
1009
+
1010
+ * Don't run rcov by default
1011
+ * Make separate task for running tests with RCov
1012
+ * Added Rake task to fail build if coverage drops below a certain threshold
1013
+ * Even more failure output cleanup (simplification)
1014
+ * Added duck_type constraint for mocks
1015
+
1016
+ === Version 0.5.2
1017
+ This release has minor improvements to the commandline and fixes some gem warnings
1018
+
1019
+ * Readded README to avoid RDoc warnings
1020
+ * Added --version switch to commandline
1021
+ * More changes to the mock API
1022
+
1023
+ === Version 0.5.1
1024
+ This release is the first release of RSpec with a new website. It will look better soon.
1025
+
1026
+ * Added initial documentation for API
1027
+ * Added website based on webgen
1028
+ * Modified test task to use rcov
1029
+ * Deleted unused code (thanks, rcov!)
1030
+ * Various changes to the mock API,
1031
+ * Various improvements to failure reporting
1032
+
1033
+ === Version 0.5.0
1034
+ This release introduces a new API and obsolesces previous versions.
1035
+
1036
+ * Moved source code to separate subfolders
1037
+ * Added new DSL runner based on instance_exec
1038
+ * Added spike for testdox/rdoc generation
1039
+ * merge Astels' and Chelimsky's work on ShouldHelper
1040
+ * this would be 0.5.0 if I updated the documentation
1041
+ * it breaks all of your existing specifications. We're not sorry.
1042
+
1043
+ === Version 0.3.2
1044
+
1045
+ The "srbaker is an idiot" release.
1046
+
1047
+ * also forgot to update the path to the actual Subversion repository
1048
+ * this should be it
1049
+
1050
+ === Version 0.3.1
1051
+
1052
+ This is just 0.3.0, but with the TUTORIAL added to the documentation list.
1053
+
1054
+ * forgot to include TUTORIAL in the documentation
1055
+
1056
+ === Version 0.3.0
1057
+
1058
+ It's been a while since last release, lots of new stuff is available. For instance:
1059
+
1060
+ * improvements to the runners
1061
+ * addition of should_raise expectation (thanks to Brian Takita)
1062
+ * some documentation improvements
1063
+ * RSpec usable as a DSL
1064
+
1065
+ === Version 0.2.0
1066
+
1067
+ This release provides a tutorial for new users wishing to get started with
1068
+ RSpec, and many improvements.
1069
+
1070
+ * improved reporting in the spec runner output
1071
+ * update the examples to the new mock api
1072
+ * added TUTORIAL, a getting started document for new users of RSpec
1073
+
1074
+ === Version 0.1.7
1075
+
1076
+ This release improves installation and documentation, mock integration and error reporting.
1077
+
1078
+ * Comparison errors now print the class name too.
1079
+ * Mocks now take an optional +options+ parameter to specify behaviour.
1080
+ * Removed __expects in favour of should_receive
1081
+ * Added line number reporting in mock error messages for unreceived message expectations.
1082
+ * Added should_match and should_not_match.
1083
+ * Added a +mock+ method to Spec::Context which will create mocks that autoverify (no need to call __verify).
1084
+ * Mocks now require names in the constructor to ensure sensible error messages.
1085
+ * Made 'spec' executable and updated usage instructions in README accordingly.
1086
+ * Made more parts of the Spec::Context API private to avoid accidental usage.
1087
+ * Added more RDoc to Spec::Context.
1088
+
1089
+ === Version 0.1.6
1090
+
1091
+ More should methods.
1092
+
1093
+ * Added should_match and should_not_match.
1094
+
1095
+ === Version 0.1.5
1096
+
1097
+ Included examples and tests in gem.
1098
+
1099
+ === Version 0.1.4
1100
+
1101
+ More tests on block based Mock expectations.
1102
+
1103
+ === Version 0.1.3
1104
+
1105
+ Improved mocking:
1106
+
1107
+ * block based Mock expectations.
1108
+
1109
+ === Version 0.1.2
1110
+
1111
+ This release adds some improvements to the mock API and minor syntax improvements
1112
+
1113
+ * Added Mock.should_expect for a more consistent DSL.
1114
+ * Added MockExpectation.and_returns for a better DSL.
1115
+ * Made Mock behave as a null object after a call to Mock.ignore_missing
1116
+ * Internal syntax improvements.
1117
+ * Improved exception trace by adding exception class name to error message.
1118
+ * Renamed some tests for better consistency.
1119
+
1120
+ === Version 0.1.1
1121
+
1122
+ This release adds some shoulds and improves error reporting
1123
+
1124
+ * Added should be_same_as and should_not be_same_as.
1125
+ * Improved error reporting for comparison expectations.
1126
+
1127
+ === Version 0.1.0
1128
+
1129
+ This is the first preview release of RSpec, a Behaviour-Driven Development library for Ruby
1130
+
1131
+ * Added Rake script with tasks for gems, rdoc etc.
1132
+ * Added an XForge task to make release go easier.