Skip to content
View jaysonwhelpley's full-sized avatar

Highlights

  • Pro

Block or report jaysonwhelpley

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. GDDcalculator GDDcalculator Public

    Growing day calculator.

    Ruby

  2. rails db:reseed rails db:reseed
    1
    # lib/tasks/db.rake
    2
    namespace :db do
    3
      desc 'Drop, create, migrate then seed the development database'
    4
      task reseed: [ 'db:drop', 'db:create', 'db:migrate', 'db:seed' ] do
    5
        puts 'Reseeding completed.'