Sha256: 6846aad43963fd13d60c32715f9a079de71c50dee1f7dd231066d026ff03786a
Contents?: true
Size: 548 Bytes
Versions: 12
Compression:
Stored size: 548 Bytes
Contents
puts "Running effective_mentorships seeds" now = Time.zone.now if Rails.env.test? Effective::MentorshipCycle.delete_all ActionText::RichText.where(record_type: ['Effective::MentorshipCycle']).delete_all end # Build the first MentorshipCycle cycle = Effective::MentorshipCycle.create!( title: "#{now.year} Mentorship", start_at: now.beginning_of_year, end_at: now.end_of_year, registration_start_at: now.beginning_of_year, registration_end_at: now.end_of_year, rich_text_all_steps_content: "All Steps Content", ) puts "All Done"
Version data entries
12 entries across 12 versions & 1 rubygems