Sha256: 0fe7db54b1231e33461f3f586b04ad442aed5b11c08066dd936292e2073e407a
Contents?: true
Size: 1.23 KB
Versions: 1
Compression:
Stored size: 1.23 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 => Faker::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| home.images.create(: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.1.2 | lib/tasks/sample.rake |