Sha256: 063ce0f464d4973d2f8485691b25e765db02c8a068eb16f6ffd2554b30dd83eb
Contents?: true
Size: 1.27 KB
Versions: 1
Compression:
Stored size: 1.27 KB
Contents
namespace :db do namespace :sample do desc "Create admin username and password" task :cms => :environment do # dependent on spree_core require 'faker' unless Page.count == 0 require 'highline/import' continue = ask("Sample data will destroy existing data. Continue? [y/n]", String) do |q| q.echo = true q.whitespace = :strip end exit unless continue =~ /y/i Page.destroy_all end images = Dir[File.expand_path("../sample", __FILE__) + "/*.jpg"] home = Page.create(:title => "Home", :path => "/") home.contents.first.update_attributes(:body => FFaker::Lorem.paragraphs().join("\n\n"), :context => "main") home.contents.create(:title => Faker::Lorem.words(3 + rand(3)).join(" "), :body => Faker::Lorem.sentence, :context => "intro") images.each {|image| PageImage.create(:viewable => home, :attachment => File.open(image), :alt => "Sailing") } %w(About Contact).each do |title| page = Page.create(:title => title, :path => title.downcase) page.contents.first.update_attributes(:body => Faker::Lorem.paragraphs().join("\n\n")) end puts "done." end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
spree_essential_cms-0.3.0.rc1 | lib/tasks/sample.rake |