Sha256: 3ab68fde9fd494b3f73b0c96cc422c943a129538a07edfe0c4aac629c70394d5

Contents?: true

Size: 613 Bytes

Versions: 2

Compression:

Stored size: 613 Bytes

Contents

%w(2013-11-01
   2013-11-30
   2013-12-01
   2013-12-05
   2013-12-08
   2013-12-16
   2013-12-22
   2013-12-25
   2013-12-28
   2013-12-31
   2014-01-01
   2014-01-01
   2014-01-05
   2014-01-10
   2014-01-12
   2014-01-20
   2014-02-01
   2014-02-15
   2014-03-01
   2014-03-15
   2014-04-01
   2014-04-15).map{|d| Time.zone.parse(d) + 17.hours }.each do |d|
  Post.create!(:created_at => d, day_of_month: d.day)
  Appointment.create!(:created_at => d, day_of_month: d.day)
  Event.create!(:created_at => d, :start_time => d - 5.days, :end_time => d + 5.days, day_of_month: d.day)
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
by_star-2.2.1 spec/fixtures/shared/seeds.rb
by_star-2.2.0 spec/fixtures/shared/seeds.rb