Sha256: bb9bc433f35737d8036ad852b678e92b71f888ff9817949107926ed227eb3095
Contents?: true
Size: 1.92 KB
Versions: 1
Compression:
Stored size: 1.92 KB
Contents
module Pushover # Stores a application definition in the config file. module App # an instance of an application. # @!attribute name # @return [String] the name of the application. # @!attribute api_key # @return [String] the api_key of the application. class App attr_accessor :name attr_accessor :api_key def initialize(name, api_key) @name = name @api_key = api_key Bini.config[:applications] = {} if !Bini.config[:applications] if name Bini.config[:applications][name] = api_key else Bini.config[:applications][api_key] = api_key end end end extend self # Find the apikey in the applications, or pass on the word to try direct access. # @param [String] word the search token, can be an apikey or appname. # @return [String] return the apikey (if it can find one) or the word itself. def find(word) return Bini.config[:applications][word] if Bini.config[:applications][word] word end # Add an application to the config file and save it. # @param [String] api_key is the api_key to be used. # @param [String] name is the short name that can be referenced later. # @return [Boolean] return the results of the save attempt. def add(name, api_key) App.new name, api_key Bini.config.save! end def remove(name) Bini.config[:applications].delete name if Bini.config[:applications] end # Return the current app selected, or the first one saved. def current_app return @current_app if @current_app # did something get supplied on the cli? try to find it. if Options[:appkey] @current_app = find Options[:appkey] end # no? do we have anything we can return? if !@current_app @current_app = find Bini.config[:applications].first[0] end @current_app end # Will return true if we can find an application either via the cli or save file. def current_app? return true if current_app return nil end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
pushover-0.5.0 | lib/pushover/app.rb |