Method: Ruber::PluginLike#save_settings

Defined in:
lib/ruber/plugin_like.rb

#save_settingsnil

Method called at application shutdown to allow plugins to save their settings

Plugins which need to save some settings need to override this method, as the base class implementation does nothing.

Note: the plugin system calls this method for all plugins before starting unloading them. This means that it’s absolutely safe to access other plugins’ methods, objects, options,… from here

Returns:

  • (nil)


123
124
125
# File 'lib/ruber/plugin_like.rb', line 123

def save_settings
  nil
end