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

Version Path
fat_free_crm-0.22.1 lib/tasks/ffcrm/settings.rake
fat_free_crm-0.22.0 lib/tasks/ffcrm/settings.rake
fat_free_crm-0.21.0 lib/tasks/ffcrm/settings.rake
fat_free_crm-0.20.1 lib/tasks/ffcrm/settings.rake
fat_free_crm-0.20.0 lib/tasks/ffcrm/settings.rake
fat_free_crm-0.19.2 lib/tasks/ffcrm/settings.rake
fat_free_crm-0.19.0 lib/tasks/ffcrm/settings.rake
fat_free_crm-0.18.2 lib/tasks/ffcrm/settings.rake
fat_free_crm-0.17.3 lib/tasks/ffcrm/settings.rake
fat_free_crm-0.18.1 lib/tasks/ffcrm/settings.rake
fat_free_crm-0.18.0 lib/tasks/ffcrm/settings.rake
fat_free_crm-0.17.2 lib/tasks/ffcrm/settings.rake
fat_free_crm-0.17.1 lib/tasks/ffcrm/settings.rake