lib/homeflow/api.rb in homeflow_api-0.14.4 vs lib/homeflow/api.rb in homeflow_api-0.16.0
- old
+ new
@@ -59,15 +59,16 @@
yield(config)
end
# A configuration instance
class Configuration
- attr_accessor :api_key, :source
+ attr_accessor :api_key, :source, :show_debug
def initialize
@api_key = 'API_KEY_REQUIRED'
@source = 'http://localhost:3000'
+ @show_debug = false
end
end
end
-end
\ No newline at end of file
+end