rails's tag archives

Upload File in Ruby on Rails

-- UPLOAD FILE tutorial singkat ini menjelaskan bagaimana melakukan upload file menggunakan rails versi yang gw pake: >> Rails::VERSION::STRING => "2.2.3" >> RUBY_VERSION => "1.8.7" >> langsung ... - create new project rails uploads - atur config - generate controller ./script/generate controller uploads index new save # script ini akan menghasilkan controller uploads dengan action "index", "new", # dan "save", and ga ...

Hello World! di Ruby on Rails

talk less do more... langsung aja ke tutorial nya ya! Untuk server gw make ubuntu 9.04 yang udah gw install server apache .... jadi untuk instalasi server ga dibahas disini ... kita mulai dari instalasi ruby and rails $ sudo apt-get install ruby rails $ mkdir ~/www $ mkdir ~/www/rails $ cd www/rails $ rails firstrails $ cd firstrails $ ./script/server $ ./script/generate controller helloworld $ vim app/controllers/helloworld_controller.rb class HelloworldControll...