lib/zype/configuration.rb in zype-0.4.0 vs lib/zype/configuration.rb in zype-0.5.0
- old
+ new
@@ -1,10 +1,11 @@
module Zype
class Configuration
- attr_accessor :api_key, :host
+ attr_accessor :api_key, :host, :app_key
def initialize
@api_key = nil
+ @app_key = nil
@host = 'api.zype.com'
end
end
end