lib/pupper.rb in pupper-0.1.13 vs lib/pupper.rb in pupper-0.2.0
- old
+ new
@@ -22,14 +22,20 @@
self.config ||= Config.new
yield self.config
end
class Config
- attr_accessor :audit_with, :user_agent
+ attr_accessor :audit_with, :user_agent, :ssl, :logging
thread_mattr_accessor :current_user
def initialize
@audit_with = :audit_log
@user_agent = "pupper (v: #{Pupper::VERSION})"
+ @ssl = {}
+ @logging = false
+ end
+
+ def logging?
+ @logging
end
end
end