110 likes | 275 Views
ROR. Ruby & Database. RailsInstaller Ruby 1.9.3 Rails 3.2 SQlite 3 Git SQL Server Adapter. Build a Rails application Cmd mkdir ROR cd ROR rails new blog cd blog bundle install. Start Server rails server http://localhost:3000. First application on Rails.
E N D
Ruby & Database • RailsInstaller • Ruby 1.9.3 • Rails 3.2 • SQlite 3 • Git • SQL Server Adapter
Build a Rails application • Cmd • mkdirROR • cd ROR • rails new blog • cd blog • bundle install
Start Server • rails server • http://localhost:3000
First application on Rails • Hello World! • rails generate controller blogs • config\routes.rb • controllers\blogs_controller.rb
View • cd views\blogs • fsutilfile createnewindex.html.erb 1024
Model • rails generate model post • cd db\migrate\XXXXX_create_posts.rb
Model • cd blog • rake db:migrate • app/controllers/blogs_controlle.erb app/views/blogs/new.html.erb app/views/blogs/index.html.erb app/views/blogs/edit.html.erb app/views/blogs/show.html.erb http://rails.pixnet.net/blog/post/22955992