Skip to content

Commit

Permalink
Removed binding from concat methods
Browse files Browse the repository at this point in the history
As per deprecation of the binding parameter in rails
  • Loading branch information
Max Warnock committed Jul 15, 2009
1 parent fcb2298 commit 0df736d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/google_visualization.rb
Expand Up @@ -141,7 +141,7 @@ def setup_gap_minder
def gap_minder_for(collection, options={}, *args, &block)
gap_minder = GapMinder.new(self, collection, options)
yield gap_minder
concat(gap_minder.render, block.binding)
concat(gap_minder.render)
end
end
end

0 comments on commit 0df736d

Please sign in to comment.