Sha256: 9dbb529501660807c01883278aae69a94bd3e092d7833c8edf4b4d3d54eee6d3
Contents?: true
Size: 730 Bytes
Versions: 13
Compression:
Stored size: 730 Bytes
Contents
# frozen_string_literal: true # Copyright (c) 2008-2013 Michael Dvorkin and contributors. # # Fat Free CRM is freely distributable under the terms of MIT license. # See MIT-LICENSE file or http://www.opensource.org/licenses/mit-license.php #------------------------------------------------------------------------------ namespace :ffcrm do namespace :settings do desc "Clear settings from database (reset to default)" task clear: :environment do Setting.delete_all end desc "Show current settings in the database" task show: :environment do Setting.select('name').order('name').pluck('name').each do |name| puts "\n#{name}:\n #{Setting.send(name).inspect}" end end end end
Version data entries
13 entries across 13 versions & 1 rubygems