CHANGELOG in remarkable_rails-3.0.5 vs CHANGELOG in remarkable_rails-3.0.6
- old
+ new
@@ -1,7 +1,24 @@
-[TODO] Port views matchers from rspec to Remarkable to provide I18n.
+* Added set_cookies matcher [#51]
+
+* Add a helper to declare that a XmlHttpRequest should be performed:
+
+ describe :get => :show do
+ xhr!
+
+* Macro stubs now supports blocks too [#50]
+
+ expects :human_attribute_name, :on => Project, :with => :title do |attr|
+ attr.to_s.humanize
+ end
+
+* :to option in set_session and set_the_flash now accepts Regexp [#46]
+
+* render_template now works with partials [#43]
+
+* Added to support for routing example group (inside spec/routing) [#26]
-# v3.0.0
+# v3.0
[ENHANCEMENT] redirect_to and render_template were ported from rspec-rails to
remarkable to provide I18n. The second was also extended to deal with :with,
:layout and :content_type as options.