paloma 1.2.3 → 1.2.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/paloma/action_controller_filters.rb +2 -1
- data/paloma.gemspec +1 -1
- metadata +1 -1
@@ -35,7 +35,8 @@ module Paloma
|
|
35
35
|
response.body = response_body[0]
|
36
36
|
else
|
37
37
|
# If body tag is not present, append paloma_txt in the response body
|
38
|
-
|
38
|
+
response_body[0] += paloma_txt
|
39
|
+
response.body = response_body[0]
|
39
40
|
end
|
40
41
|
|
41
42
|
clear_callbacks
|
data/paloma.gemspec
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
Gem::Specification.new do |s|
|
2
2
|
s.name = 'paloma'
|
3
|
-
s.version = '1.2.
|
3
|
+
s.version = '1.2.4'
|
4
4
|
s.summary = "a sexy way to organize javascript files using Rails` asset pipeline"
|
5
5
|
s.description = "a sexy way to organize javascript files using Rails` asset pipeline"
|
6
6
|
s.authors = ["Karl Paragua", "Bia Esmero"]
|