class Vpr::Configuration

Attributes

remote[RW]

Public Class Methods

method_missing(method, *args) click to toggle source
Calls superclass method
# File lib/vpr/configuration.rb, line 10
def method_missing method, *args
  instance.send(method, *args)
rescue NoMethodError
  super
end
new() click to toggle source
Calls superclass method
# File lib/vpr/configuration.rb, line 21
def initialize
  super
  @remote = :origin
end
respond_to_missing?(method_name, include_private = false) click to toggle source
Calls superclass method
# File lib/vpr/configuration.rb, line 16
def respond_to_missing?(method_name, include_private = false)
  ["remote"].include?(method_name) || super
end