hoptoad_notifier 2.2.5 → 2.2.6
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/CHANGELOG +8 -0
- data/lib/hoptoad_notifier/railtie.rb +1 -1
- data/lib/hoptoad_notifier/version.rb +1 -1
- metadata +2 -2
data/CHANGELOG
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
Version 2.2.6 - 2010-06-02
|
|
2
|
+
===============================================================================
|
|
3
|
+
|
|
4
|
+
Jason Morrison (1):
|
|
5
|
+
For Rails 3, just use the Rack middleware instead of specifying a location to insert_after
|
|
6
|
+
|
|
7
|
+
|
|
1
8
|
Version 2.2.5 - 2010-06-02
|
|
2
9
|
===============================================================================
|
|
3
10
|
|
|
@@ -139,3 +146,4 @@ Nick Quaranto (3):
|
|
|
139
146
|
|
|
140
147
|
|
|
141
148
|
|
|
149
|
+
|
|
@@ -8,7 +8,7 @@ module HoptoadNotifier
|
|
|
8
8
|
end
|
|
9
9
|
|
|
10
10
|
initializer "hoptoad.use_rack_middleware" do |app|
|
|
11
|
-
app.config.middleware.
|
|
11
|
+
app.config.middleware.use "HoptoadNotifier::Rack"
|
|
12
12
|
end
|
|
13
13
|
|
|
14
14
|
config.after_initialize do
|