Ruby On Rails上手筆記(安裝使用全過(guò)程)
有機(jī)會(huì)再試一試Rails了,只是原來(lái)接觸的是2,現(xiàn)在已然變成了4,似乎現(xiàn)在的安裝比原來(lái)會(huì)快些。。
Rails 4 安裝
針對(duì)于安裝了RVM
沒(méi)有的話應(yīng)該這樣:
安裝RVM可以用句
查看rails版本
Rails 4.0.3
似乎這就是當(dāng)前的最新版本
Ruby版本
官方推薦用2.1.0. 也就是最新版本
安裝SQLite
似乎這就是諸如Django、Rails這類(lèi)對(duì)于輕量級(jí)網(wǎng)站的數(shù)據(jù)庫(kù)要求。
如果是mac os
其他可以看情況安裝,如openSUSE
Rails 4 Hello,World
可以直接用rails生成
于是就有了
create
create README.rdoc
create Rakefile
create config.ru
create .gitignore
create Gemfile
create app
create app/assets/javascripts/application.js
create app/assets/stylesheets/application.css
create app/controllers/application_controller.rb
create app/helpers/application_helper.rb
create app/views/layouts/application.html.erb
create app/assets/images/.keep
create app/mailers/.keep
create app/models/.keep
create app/controllers/concerns/.keep
create app/models/concerns/.keep
create bin
create bin/bundle
create bin/rails
create bin/rake
create config
create config/routes.rb
create config/application.rb
create config/environment.rb
create config/environments
create config/environments/development.rb
create config/environments/production.rb
create config/environments/test.rb
create config/initializers
create config/initializers/backtrace_silencers.rb
create config/initializers/filter_parameter_logging.rb
create config/initializers/inflections.rb
create config/initializers/mime_types.rb
create config/initializers/secret_token.rb
create config/initializers/session_store.rb
create config/initializers/wrap_parameters.rb
create config/locales
create config/locales/en.yml
create config/boot.rb
create config/database.yml
create db
create db/seeds.rb
create lib
create lib/tasks
create lib/tasks/.keep
create lib/assets
create lib/assets/.keep
create log
create log/.keep
create public
create public/404.html
create public/422.html
create public/500.html
create public/favicon.ico
create public/robots.txt
create test/fixtures
create test/fixtures/.keep
create test/controllers
create test/controllers/.keep
create test/mailers
create test/mailers/.keep
create test/models
create test/models/.keep
create test/helpers
create test/helpers/.keep
create test/integration
create test/integration/.keep
create test/test_helper.rb
create tmp/cache
create tmp/cache/assets
create vendor/assets/javascripts
create vendor/assets/javascripts/.keep
create vendor/assets/stylesheets
create vendor/assets/stylesheets/.keep
run bundle install
接著會(huì)安裝包依賴
Fetching gem metadata from https://rubygems.org/..........
Fetching additional metadata from https://rubygems.org/..
Resolving dependencies...
Using rake (10.3.1)
Using i18n (0.6.9)
Using minitest (4.7.5)
Using multi_json (1.9.2)
Using thread_safe (0.3.3)
Using tzinfo (0.3.39)
Using activesupport (4.0.3)
Using builder (3.1.4)
Using erubis (2.7.0)
Using rack (1.5.2)
Using rack-test (0.6.2)
Using actionpack (4.0.3)
Using mime-types (1.25.1)
Using polyglot (0.3.4)
Using treetop (1.4.15)
Using mail (2.5.4)
Using actionmailer (4.0.3)
Using activemodel (4.0.3)
Using activerecord-deprecated_finders (1.0.3)
Using arel (4.0.2)
Using activerecord (4.0.3)
Using bundler (1.5.3)
Using coffee-script-source (1.7.0)
Using execjs (2.0.2)
Using coffee-script (2.2.0)
Using thor (0.19.1)
Using railties (4.0.3)
Using coffee-rails (4.0.1)
Using hike (1.2.3)
Using jbuilder (1.5.3)
Using jquery-rails (3.1.0)
Using json (1.8.1)
Using tilt (1.4.1)
Using sprockets (2.11.0)
Using sprockets-rails (2.0.1)
Using rails (4.0.3)
Using rdoc (4.1.1)
Using sass (3.2.19)
Using sass-rails (4.0.3)
Using sdoc (0.4.0)
Using sqlite3 (1.3.9)
Using turbolinks (2.2.2)
Using uglifier (2.5.0)
Your bundle is complete!
Use `bundle show [gemname]` to see where a bundled gem is installed.
運(yùn)行Rails
這樣的話打開(kāi) http://localhost:3000 就可以看到,Rails的歡迎界面Welcome aboard,有點(diǎn)類(lèi)似于Django-CMS的小馬哥~~

創(chuàng)建controller
如官方指南所說(shuō)http://guides.rubyonrails.org/getting_started.html
執(zhí)行命令:
就會(huì)創(chuàng)建下面這些文件:
create app/controllers/welcome_controller.rb
route get "welcome/index"
invoke erb
create app/views/welcome
create app/views/welcome/index.html.erb
invoke test_unit
create test/controllers/welcome_controller_test.rb
invoke helper
create app/helpers/welcome_helper.rb
invoke test_unit
create test/helpers/welcome_helper_test.rb
invoke assets
invoke coffee
create app/assets/javascripts/welcome.js.coffee
invoke scss
create app/assets/stylesheets/welcome.css.scss
在config/routes.rb添加默認(rèn)頁(yè)面
再運(yùn)行
就會(huì)出現(xiàn)
Find me in app/views/welcome/index.html.erb
一切來(lái)得很快,很突然。
- Windows下Ruby on Rails開(kāi)發(fā)環(huán)境安裝配置圖文教程
- 快速正確的安裝 Ruby, Rails 運(yùn)行環(huán)境
- 在 Ubuntu 12.04 Server 上安裝部署 Ruby on Rails 應(yīng)用
- win7安裝ruby on rails開(kāi)發(fā)環(huán)境
- 快速安裝Ruby on Rails的簡(jiǎn)明指南
- Ruby on rails安裝后去掉DL is deprecated,please use Fiddle警告信息的方法【測(cè)試可用】
- windows下安裝ruby與rails時(shí)遇到的問(wèn)題總結(jié)
- 安裝Ruby和安裝Rails詳細(xì)步驟詳解
相關(guān)文章
ruby 標(biāo)準(zhǔn)類(lèi)型總結(jié)
詮釋分析了ruby的標(biāo)準(zhǔn)類(lèi)型,學(xué)習(xí)ruby的朋友,需要了解和掌握的。2009-02-02Ruby中的Range對(duì)象學(xué)習(xí)筆記
這篇文章主要介紹了Ruby中的Range對(duì)象學(xué)習(xí)筆記,本文講解了Range對(duì)象的定義、Range對(duì)象的一些使用技巧等內(nèi)容,需要的朋友可以參考下2014-11-11Ruby實(shí)現(xiàn)郵件主動(dòng)推送觸發(fā)程序
這篇文章主要介紹了Ruby實(shí)現(xiàn)郵件主動(dòng)推送觸發(fā)程序,本文給出了客戶端輪詢和服務(wù)器主動(dòng)推送的代碼實(shí)例,需要的朋友可以參考下2015-01-01編寫(xiě)Ruby代碼注釋時(shí)需要注意的一些問(wèn)題
這篇文章主要介紹了編寫(xiě)Ruby代碼注釋時(shí)需要注意的一些問(wèn)題,特別是在團(tuán)隊(duì)協(xié)作時(shí)好的注釋能大大增加代碼的可讀性,需要的朋友可以參考下2015-08-08Ruby簡(jiǎn)明教程之?dāng)?shù)組和Hash介紹
這篇文章主要介紹了Ruby簡(jiǎn)明教程之?dāng)?shù)組和Hash介紹,非常簡(jiǎn)潔的講解,可以作為語(yǔ)法備忘,需要的朋友可以參考下2014-06-06Ruby中使用each和collect進(jìn)行迭代的用法
這篇文章主要介紹了Ruby中使用each和collect進(jìn)行迭代的用法,是Ruby學(xué)習(xí)中的基礎(chǔ)知識(shí),需要的朋友可以參考下2015-05-05