From fad83558e0a6ac1166bf8af0e2fe879e2deb724a Mon Sep 17 00:00:00 2001 From: Dan Collis-Puro Date: Fri, 14 Dec 2012 11:45:36 -0500 Subject: [PATCH] Remove rails.md --- trails/rails.md | 35 ----------------------------------- 1 file changed, 35 deletions(-) delete mode 100644 trails/rails.md diff --git a/trails/rails.md b/trails/rails.md deleted file mode 100644 index efac1c4..0000000 --- a/trails/rails.md +++ /dev/null @@ -1,35 +0,0 @@ -Rails -===== - -Critical learning ------------------ - -* Complete Michael Hartl's [Rails Tutorial](http://ruby.railstutorial.org). (Free/$) -* Complete [Rails Testing for Zombies](http://www.codeschool.com/courses/rails-testing-for-zombies). ($) -* Push your code to [Github](http://github.com). (Free/$) -* Deploy to [Heroku](http://heroku.com). (Free/$) -* Watch [Railscasts](http://railscasts.com) that interest you. -* Read open source code: [example](https://github.com/copycopter/copycopter-server). - -Validation ----------- - -You know everyday Rails when you can: - -* Create a route, controller, and action. -* Query the database. -* Create a form that save records. -* Associate ActiveRecord objects. -* Validate ActiveRecord objects. -* Whitelist ActiveRecord attributes. -* Interpolate data in a view. -* Write and run tests for your models. -* Deploy your app to production. - -Ongoing reference ------------------ - -* Refer to [the API documentation](http://api.rubyonrails.org). -* Refer to [the official guides](http://guides.rubyonrails.org). -* Stick to [a style guide](http://github.com/thoughtbot/guides/tree/master/style). -* Subscribe to the [Rails Core mailing list](http://goo.gl/YU3Ml).