sniffux 0.0.2 → 0.0.3
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/sniffux/action_controller.rb +1 -4
- data/lib/sniffux/version.rb +1 -1
- metadata +1 -1
@@ -1,15 +1,12 @@
|
|
1
1
|
class Sniffux
|
2
2
|
module ActionController # :nodoc: all
|
3
3
|
def self.included(base)
|
4
|
-
base.send :helper_method, :
|
4
|
+
base.send :helper_method, :sniffux
|
5
5
|
end
|
6
6
|
|
7
7
|
private
|
8
8
|
def sniffux
|
9
9
|
@sniffux ||= Sniffux.new(
|
10
|
-
#:accept_language => request.headers["Accept-Language"],
|
11
|
-
#:ua => request.headers["User-Agent"]
|
12
|
-
|
13
10
|
request.user_agent
|
14
11
|
)
|
15
12
|
end
|
data/lib/sniffux/version.rb
CHANGED