module Adocsite
Constants
- DefaultSettings
- DefaultWpSettings
- VERSION
Public Class Methods
config()
click to toggle source
AdocSite configuration
# File lib/adocsite/config.rb, line 6 def config @settings || Adocsite::DefaultSettings end
config=(value)
click to toggle source
# File lib/adocsite/config.rb, line 10 def config= value @settings = self.config.merge(value) end
wpconfig()
click to toggle source
Posting articles to Wordpress
# File lib/adocsite/config.rb, line 49 def wpconfig @wpsettings || Adocsite::DefaultWpSettings end
wpconfig=(value)
click to toggle source
# File lib/adocsite/config.rb, line 53 def wpconfig= value @wpsettings = self.wpconfig.merge(value) end
Private Instance Methods
config()
click to toggle source
AdocSite configuration
# File lib/adocsite/config.rb, line 6 def config @settings || Adocsite::DefaultSettings end
config=(value)
click to toggle source
# File lib/adocsite/config.rb, line 10 def config= value @settings = self.config.merge(value) end
wpconfig()
click to toggle source
Posting articles to Wordpress
# File lib/adocsite/config.rb, line 49 def wpconfig @wpsettings || Adocsite::DefaultWpSettings end
wpconfig=(value)
click to toggle source
# File lib/adocsite/config.rb, line 53 def wpconfig= value @wpsettings = self.wpconfig.merge(value) end