cavalle-rspec-rails 1.2.2.0.1 → 1.2.2.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/lib/spec/rails/spec_server.rb +5 -1
- data/rspec-rails.gemspec +1 -1
- metadata +1 -1
@@ -102,7 +102,11 @@ module Spec
|
|
102
102
|
)
|
103
103
|
)
|
104
104
|
|
105
|
-
|
105
|
+
if ::ActionController::Dispatcher.respond_to?(:cleanup_application)
|
106
|
+
::ActionController::Dispatcher.cleanup_application
|
107
|
+
else
|
108
|
+
dispatcher.cleanup_application
|
109
|
+
end
|
106
110
|
end
|
107
111
|
|
108
112
|
def in_memory_database?
|
data/rspec-rails.gemspec
CHANGED