Sha256: 73b0ef34fd082c7333def48dd2249398cbdb1aa6b2d8874996624e7b7636fa9d

Contents?: true

Size: 699 Bytes

Versions: 15

Compression:

Stored size: 699 Bytes

Contents

# 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

15 entries across 15 versions & 2 rubygems

Version Path
fat_free_crm-0.14.2 lib/tasks/ffcrm/settings.rake
fat_free_crm-0.15.2 lib/tasks/ffcrm/settings.rake
fat_free_crm-0.16.4 lib/tasks/ffcrm/settings.rake
fat_free_crm-0.14.1 lib/tasks/ffcrm/settings.rake
fat_free_crm-0.15.1 lib/tasks/ffcrm/settings.rake
fat_free_crm-0.16.3 lib/tasks/ffcrm/settings.rake
fat_free_crm-0.16.2 lib/tasks/ffcrm/settings.rake
fat_free_crm-0.16.1 lib/tasks/ffcrm/settings.rake
fat_free_crm-0.16.0 lib/tasks/ffcrm/settings.rake
fat_free_crm-0.15.0 lib/tasks/ffcrm/settings.rake
fat_free_crm-0.15.0.beta.2 lib/tasks/ffcrm/settings.rake
fat_free_crm-0.15.0.beta lib/tasks/ffcrm/settings.rake
fat_free_crm-0.14.0 lib/tasks/ffcrm/settings.rake
reduced_fat_crm-0.15.0.beta lib/tasks/ffcrm/settings.rake
reduced_fat_crm-0.14.0 lib/tasks/ffcrm/settings.rake