hoptoad_notifier 2.2.5 → 2.2.6
Sign up to get free protection for your applications and to get access to all the features.
- 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
|