Class: Boutique::Config

Inherits:
Object
  • Object
show all
Defined in:
lib/boutique.rb

Class Method Summary collapse

Class Method Details

.db_adapter(value = nil) ⇒ Object



79
80
81
82
# File 'lib/boutique.rb', line 79

def self.db_adapter(value=nil)
  @db_adapter = value if !value.nil?
  @db_adapter
end

.db_database(value = nil) ⇒ Object



99
100
101
102
# File 'lib/boutique.rb', line 99

def self.db_database(value=nil)
  @db_database = value if !value.nil?
  @db_database
end

.db_host(value = nil) ⇒ Object



84
85
86
87
# File 'lib/boutique.rb', line 84

def self.db_host(value=nil)
  @db_host = value if !value.nil?
  @db_host
end

.db_password(value = nil) ⇒ Object



94
95
96
97
# File 'lib/boutique.rb', line 94

def self.db_password(value=nil)
  @db_password = value if !value.nil?
  @db_password
end

.db_username(value = nil) ⇒ Object



89
90
91
92
# File 'lib/boutique.rb', line 89

def self.db_username(value=nil)
  @db_username = value if !value.nil?
  @db_username
end

.dev_email(value = nil) ⇒ Object



44
45
46
47
# File 'lib/boutique.rb', line 44

def self.dev_email(value=nil)
  @dev_email = value if !value.nil?
  @dev_email
end

.download_dir(value = nil) ⇒ Object



74
75
76
77
# File 'lib/boutique.rb', line 74

def self.download_dir(value=nil)
  @download_dir = value if !value.nil?
  @download_dir
end

.download_path(value = nil) ⇒ Object



69
70
71
72
# File 'lib/boutique.rb', line 69

def self.download_path(value=nil)
  @download_path = value if !value.nil?
  @download_path
end

.pem_cert_id(value = nil) ⇒ Object



49
50
51
52
# File 'lib/boutique.rb', line 49

def self.pem_cert_id(value=nil)
  @pem_cert_id = value if !value.nil?
  @pem_cert_id
end

.pem_paypal(value = nil) ⇒ Object



64
65
66
67
# File 'lib/boutique.rb', line 64

def self.pem_paypal(value=nil)
  @pem_paypal = value if !value.nil?
  @pem_paypal
end

.pem_private(value = nil) ⇒ Object



54
55
56
57
# File 'lib/boutique.rb', line 54

def self.pem_private(value=nil)
  @pem_private = value if !value.nil?
  @pem_private
end

.pem_public(value = nil) ⇒ Object



59
60
61
62
# File 'lib/boutique.rb', line 59

def self.pem_public(value=nil)
  @pem_public = value if !value.nil?
  @pem_public
end

.pp_email(value = nil) ⇒ Object



104
105
106
107
# File 'lib/boutique.rb', line 104

def self.pp_email(value=nil)
  @pp_email = value if !value.nil?
  @pp_email
end

.pp_url(value = nil) ⇒ Object



109
110
111
112
# File 'lib/boutique.rb', line 109

def self.pp_url(value=nil)
  @pp_url = value if !value.nil?
  @pp_url
end