typo 5.2 → 5.2.98

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