<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -1,3 +1,8 @@
+== 0.7.1 2008-03-12
+
+* 1 major bugfix:
+  * Refactored the Rails render decorator so that it doesn't break RSpec controller specs
+
 == 0.7 2008-03-11
 
 * 1 major enhancement:
@@ -18,4 +23,4 @@
   * Fixed handling of nil values in hash to bytecode conversion
 
 * Miscellaneous:
-  * Added CHANGELOG, LICENSE, and README files
\ No newline at end of file
+  * Added CHANGELOG, LICENSE, and README files</diff>
      <filename>CHANGELOG</filename>
    </modified>
    <modified>
      <diff>@@ -1,6 +1,6 @@
 $:.unshift File.dirname(__FILE__)
 $:.unshift File.join(File.dirname(__FILE__), 'swxruby')
 class SwxRuby
-  VERSION = '0.7'
+  VERSION = '0.7.1'
 end
 require 'swx_gateway'
\ No newline at end of file</diff>
      <filename>lib/swxruby.rb</filename>
    </modified>
    <modified>
      <diff>@@ -2,7 +2,8 @@ require 'swx_assembler'
 require 'swx_gateway'
 
 ActionController::Base.class_eval do
-	def render_with_swx(options = nil, &amp;block)
+	def render_with_swx(*args, &amp;block)
+	  options = args.first
 		if options.is_a?(Hash) &amp;&amp; options.keys.include?(:swx)
 			swf_bytecode = SwxAssembler.write_swf(
 								       options[:swx], 
@@ -13,7 +14,7 @@ ActionController::Base.class_eval do
 										 )
 			send_data(swf_bytecode, :type =&gt; 'application/swf', :filename =&gt; 'data.swf')
 		else
-			render_without_swx(options, &amp;block)
+			render_without_swx(*args, &amp;block)
 		end
 	end
 	alias_method_chain :render, :swx</diff>
      <filename>lib/swxruby/rails_integration/render_decorator.rb</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>4277424e3b823e1e9bbb2ac9b12eabaf1726a5c4</id>
    </parent>
  </parents>
  <author>
    <name>Jed Hurt</name>
    <email>jedhurt@cableone.net</email>
  </author>
  <url>http://github.com/meekish/swxruby/commit/e56ec9a0e2e0b1a596695eede5be9fe69ab553e4</url>
  <id>e56ec9a0e2e0b1a596695eede5be9fe69ab553e4</id>
  <committed-date>2008-03-12T13:26:35-07:00</committed-date>
  <authored-date>2008-03-12T13:26:35-07:00</authored-date>
  <message>Rails render decorator is now compatible with RSpec controllers specs. Updated version number to 0.7.1</message>
  <tree>b6856f4ad11503ba4ec8c46e73b15e1b2c49d7fa</tree>
  <committer>
    <name>Jed Hurt</name>
    <email>jedhurt@cableone.net</email>
  </committer>
</commit>
