fiveruns-dash-rails 0.7.3 → 0.7.4
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/fiveruns/dash/rails.rb +4 -4
- data/version.yml +1 -1
- metadata +1 -1
data/lib/fiveruns/dash/rails.rb
CHANGED
@@ -143,15 +143,15 @@ if START_FIVERUNS_DASH_RAILS
|
|
143
143
|
|
144
144
|
def self.included(base)
|
145
145
|
base.send(:include, InstanceMethods)
|
146
|
-
base.alias_method_chain :
|
146
|
+
base.alias_method_chain :prepare_dispatcher, :dash
|
147
147
|
end
|
148
148
|
|
149
149
|
module InstanceMethods
|
150
150
|
|
151
|
-
def
|
152
|
-
|
151
|
+
def prepare_dispatcher_with_dash
|
152
|
+
prepare_dispatcher_without_dash
|
153
153
|
Fiveruns::Dash::Rails.dash_start_block.call
|
154
|
-
end
|
154
|
+
end
|
155
155
|
|
156
156
|
end
|
157
157
|
|
data/version.yml
CHANGED