ruby

第一个工程
建立rails工程
rails --ruby=path 工程锁在的path
修改environment里的database.yml
然后做例子
重启服务器ruby script\server
关闭control c
访问地址http://localhost:3000/chinese/list

ruby script\generate model paper
修改db\migrate\新的rb文件,里边加:t.column :name,:string
rake db:migrate
ruby script\generate controller paper
ruby script\generate scaffold paper paper


fc6
更方便的安装包
下一个yumex
sudo yum install yumex
在yumex可以直接选一个安装
用yum的话就要输命令

字体问题
操作系统语言选择了english,中文就变成了乱码。
需要安装字体
    * 字体安装
      将Microsoft Windows(windows\fonts\)的相应TrueType拷贝到Fedora相应目录。我是放在/usr/share/fonts/windows目录下。
      然后以root执行下面的命令

cd /usr/share/fonts/windows
ttmkfdir .
cp fonts.scale fonts.dir
chkfontpath --add /usr/share/fonts/windows

      以下是我安装的字体文件

(Arial)       - arial.ttf arialbd.ttf arialbi.ttf ariali.ttf
(Tahoma)      - tahoma.ttf tahomabd.ttf
(Verdana)     - verdana.ttf verdanab.ttf verdanai.ttf verdanaz.ttf
(GB)          - simsun.ttc
(BIG5)        - mingliu.ttc

装了gb和big5后,网页和openoffice里的中文就没问题了。

开发oracle应用需安装OCI
从http://rubyforge.org/frs/?group_id=256&release_id=12694上下载
然后cmd中运行 ruby ruby-oci8-1.0.0-rc3-mswin32.rb
即安装成功,就可以rake db:migrate了

http://www.railsapi.org/activerecord-base-set_primary_key

set_primary_key

Description

set_primary_key(value = nil, &block)

Sets the name of the primary key column to use to the given value, or (if the value is nil or false) to the value returned by the given block.

Examples: add

Suggest an example

Examples currently must be approved. This means that when you submit the example, it will not show up on this page until approved (generally 24 hours)

Enclose ruby in <code> tags to get it syntax highlighted.

Description

or Cancel

Example:

  class Project < ActiveRecord::Base
set_primary_key "sysid"
end

User Contributed Notes add

Add Comment

Name

Email

Title

Body

or Cancel

No comments


你可能感兴趣的:(ruby)