lib/le.rb in le-2.7.4 vs lib/le.rb in le-2.7.5

- old
+ new

@@ -6,10 +6,10 @@ def self.new(token, options={}) opt_local = options[:local] || false opt_debug = options[:debug] || false - opt_ssl = options[:ssl] || true + opt_ssl = !options.include?(:ssl) ? true : options[:ssl] opt_tag = options[:tag] || false opt_log_level = options[:log_level] || Logger::DEBUG opt_datahub_enabled = options[:datahub_enabled] || false opt_datahub_endpoint = options[:datahub_endpoint] || ['', 10000]