Skip to content

learn-co-students/rails-pollywog-ranch-seattle-web-071519

Repository files navigation

Rails Pollywog Ranch Lab

tadpoles and frogs

Goal

Help Frog Rancher Darryl categorize and track all the ponds, frogs, and tadpoles on his ranch. To do this you will create migrations and models complete with ActiveRecord associations.

Background

After speaking with Darryl, he has informed us that he has several ponds on his ranch. Each pond has different frogs that live there. Some of those frogs have tadpole babies. The frogs all have the ability to have tadpoles at any given time, and the tadpoles have the ability to metamorphose into frogs at any time.

Example

Here's a demo of what we're aiming for.

Instructions

Getting Started

  • Run bundle install, rake db:test:prepare (if rake db:migrate RAILS_ENV=test/bin/rails db:migrate RAILS_ENV=test is not working properly), and then rspec to see what course to take. Keep in mind that, for the association of tadpoles belonging to a pond through a frog, you'll have to delegate.

  • Take a look at the tests in spec/models before writing your migrations.

  • Once your migrations are done, start on the associations in your models.

  • Once the associations are passing, you'll be modifying three files:

    1. app/controllers/tadpoles_controller.rb
    • You'll add an action, #metamorphose, to this controller
    1. config/routes.rb
    • Here you'll allow a form to post to /tadpoles/:id/metamorphose
    • This should route the request to the TadpolesController's #metamorphose action
    1. views/tadpoles/show.html.erb
    • You'll add a form that will post to /tadpoles/:id/metamorphose with a submit button that reads "Become a frog"
  • If you get stuck refer to the Rails Active Record documentation.

  • You can refer to this link as a quick reference for the Rails 4 folder structure.

Running the App Locally

  • When you're finished and all the specs are passing, go ahead and run the following commands from your terminal:
    • rake db:migrate
    • rake db:seed
    • rails s
  • Then hit up the app here.

Critical Thinking

  • Think about how you would get a tadpole to metamorphose. Click on any tadpole, and make it metamorphose. Did the app go about metamorphosing tadpoles in the same way you would have?
  • Think about how you would get a frog to have tadpole babies. Click on any frog, and make it have a baby. Did the app go about making baby tadpoles in the same way you would have? For more details about metamorphosing into a frog, see config/routes.rb and views/frogs/show.html.erb. You can learn more about nested resources below.

Resources

About

No description, website, or topics provided.

Resources

License

MIT, Unknown licenses found

Licenses found

MIT
LICENSE
Unknown
LICENSE.md

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published