module Rails::Generators::Testing::Behaviour

def without_thor_debug # :nodoc:

:nodoc:
TODO: remove this once Bundler 1.5.2 is released
def without_thor_debug # :nodoc:
  thor_debug, ENV['THOR_DEBUG'] = ENV['THOR_DEBUG'], nil
  yield
ensure
  ENV['THOR_DEBUG'] = thor_debug
end