webs 0.3.1 → 0.3.3
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/Rakefile +1 -1
- data/lib/helper/params.rb +1 -1
- data/lib/webs.rb +1 -1
- data/webs.gemspec +1 -1
- metadata +1 -1
data/Rakefile
CHANGED
data/lib/helper/params.rb
CHANGED
@@ -72,7 +72,7 @@ module Webs
|
|
72
72
|
end
|
73
73
|
|
74
74
|
def webs_params
|
75
|
-
params.select{ |k,v| k.starts_with?("fw_sig_") }.sort
|
75
|
+
params.select{ |k,v| k.starts_with?("fw_sig_") }.concat(request.headers.select{ |k,v| k.starts_with?("fw_sig_") }).sort
|
76
76
|
end
|
77
77
|
|
78
78
|
# The full url of the app. Since in APP_NAME can be different in different environments this is currently
|
data/lib/webs.rb
CHANGED
data/webs.gemspec
CHANGED