- 浏览: 439676 次
- 性别:
- 来自: 无锡
文章分类
最新评论
-
belonghu:
这还和字段是否主键,加索引,有很大关系,我对一个索引的字段查询 ...
MYSQL每日一用:SELECT 语句中比对(between and \ like \ left) -
lqingqingzijin:
好,就是想知道怎样将默认bash修改成nologin
我怎么创建和修改用户帐号,让它有一个nologin shell? -
yangxiutian:
“在jar中添加了字体”是什么意思?
java.util.zip.ZipInputStream.getUTF8String(ZipInputStream.java:299) -
ljhard_1030:
楼主学习了,以后继续发表这类的文章,会继续光临的。。
刨根问底(Proxool连接池设置) -
RobustTm:
Selenium中使用的貌似是Junit 3.x,上面的例子也 ...
使用Selenium 和Junit 进行WEB功能测试
Rails2.0 命令大全
2008-05-21 22:11
一.铁道
1.1 创建一个Rails应用程序
$ rails app_name
可选项:
-d, database=xxx 指定安装一个数据库(mysql oracle postgresql sqlite2 sqlite3 ), 默认情况下是数据库
-r, ruby-path= 指定Ruby的安装路径,如果没有指定,scripts使用env去找Ruby
-f, freeze (冻结)freezes Rails在vendor/rails目录
1.2 API Documentation
$ gem_server
启动一个WEBrick服务器。这时候你可以通过Http://localhost:8808/ 打开浏览器去查看rails API文档
1.3 Rake
rake db:fixtures:load
# 载入fixtures到当前环境的数据库
# 载入指定的fixtures使用FIXTURES=x,y
rake db:migrate
# 迁移数据库通过在db/migrate目录下的脚本.可以指定版本号通过VERSION=x
rake db:schema:dump
# 创建一个db/schema.rb文件,通过AR能过够支持任何数据库去使用
rake db:schema:load
# 再入一个schema.rb文件进数据库
rake db:sessions:clear
# 清空sessions表
rake db:sessions:create
# 用CGI::Session::ActiveRecordStore创建一个sessions表为用户
rake db:structure:dump
# 导出数据库结构为一个SQL文件
rake db:test:clone
# 重新创建一个测试数据库从当前环境数据库中
rake db:test:clone_structure
# 重新创建测试数据库从开发模式数据库
rake db:test:prepare
# 准备测试数据库并在入schema
rake db:test:purge
# 清空测试数据库
rake doc:app
# 创建HTML文件的API Documentation
rake doc:clobber_app
# 删除Documentation
rake doc:clobber_plugins
# 删除 plugin Documentation
rake doc:clobber_rails
# 删除Documentation
rake doc:plugins
# 产生Documation为所有安装的plugins
rake doc:rails
# 创建HTML文件的API Documentation
rake doc:reapp
# 强制重新创建HTML文件的API Documentation
rake doc:rerails
# 强制重新创建HTML文件的API Documentation
rake log:clear
# 清空目录log/下的所有日志文件
rake rails:freeze:edge
# Lock this application to latest Edge Rails. Lock a specific revision with REVISION=X
rake rails:freeze:gems
# Lock this application to the current gems (by unpacking them into vendor/rails)
rake rails:unfreeze
# Unlock this application from freeze of gems or edge and return to a fluid use of system gems
rake rails:update
# Update both scripts and public/javascripts from Rails
rake rails:update:javascripts
# Update your javascripts from your current rails install
rake rails:update:scripts
# Add new scripts to the application script/ directory
rake stats
# Report code statistics (KLOCs, etc) from the application
rake test
# Test all units and functionals
rake test:functionals
# Run tests for functionalsdb:test:prepare
rake test:integration
# Run tests for integrationdb:test:prepare
rake test:plugins
# Run tests for pluginsenvironment
rake test:recent
# Run tests for recentdb:test:prepare
rake test:uncommitted
# Run tests for uncommitteddb:test:prepare
rake test:units
# Run tests for unitsdb:test:prepare
rake tmp:cache:clear
# 清空tmp/cache目录下的所有文件
rake tmp:clear
# 清空session, cache, 和socket文件从tmp/目录
rake tmp:create
# 为sessions, cache, and sockets创建tmp/目录
rake tmp:sessions:clear
# 清空所有在tmp/sessions目录下的文件
rake tmp:sockets:clear
# 清空所有在tmp/sessions 目录下的ruby_sess.* 文件
1.4 Scripts
script/about
# 输出当前环境信息
script/breakpointer
# 启动断点server
script/console
# 启动交换式的Rails控制台
script/destroy
# 删除通过generators创建的文件
script/generate
# -> generators
script/plugin
# -> Plugins
script/runner
# 执行一个任务在rails上下文中
script/server
# 启动开发模式服务器http://localhost:3000
//以下几个不知道怎么去使用
script/performance/profiler
script/performance/benchmarker
script/process/reaper
script/process/spawner
1.5 Generators
ruby script/generate model ModelName
ruby script/generate controller ListController show edit
ruby script/generate scaffold ModelName ControllerName
ruby script/generate migration AddNewTable
ruby script/generate plugin PluginName
ruby script/generate mailer Notification lost_password signup
ruby script/generate web_service ServiceName api_one api_two
ruby script/generate integration_test TestName
ruby script/generate session_migration
可选项:
-p, --pretend Run but do not make any changes.
-f, --force Overwrite files that already exist.
-s, --skip Skip files that already exist.
-q, --quiet Suppress normal output.
-t, --backtrace Debugging: show backtrace on errors.
-h, --help Show this help message.
-c, --svn Modify files with subversion. (Note: svn must be in path)
1.6 Plugins
script/plugin discover
# discover plugin repositories
script/plugin list
# list all available plugins
script/plugin install where
# install the a wherea ? plugin
script/plugin install -x where
# install where plugin as SVN external
script/plugin install http://invisible.ch/projects/plugins/where
script/plugin update
# update installed plugins
script/plugin source
# add a source repository
script/plugin unsource
# removes a source repository
script/plugin sources
# lists source repositories
1.1 创建一个Rails应用程序
$ rails app_name
可选项:
-d, database=xxx 指定安装一个数据库(mysql oracle postgresql sqlite2 sqlite3 ), 默认情况下是数据库
-r, ruby-path= 指定Ruby的安装路径,如果没有指定,scripts使用env去找Ruby
-f, freeze (冻结)freezes Rails在vendor/rails目录
1.2 API Documentation
$ gem_server
启动一个WEBrick服务器。这时候你可以通过Http://localhost:8808/ 打开浏览器去查看rails API文档
1.3 Rake
rake db:fixtures:load
# 载入fixtures到当前环境的数据库
# 载入指定的fixtures使用FIXTURES=x,y
rake db:migrate
# 迁移数据库通过在db/migrate目录下的脚本.可以指定版本号通过VERSION=x
rake db:schema:dump
# 创建一个db/schema.rb文件,通过AR能过够支持任何数据库去使用
rake db:schema:load
# 再入一个schema.rb文件进数据库
rake db:sessions:clear
# 清空sessions表
rake db:sessions:create
# 用CGI::Session::ActiveRecordStore创建一个sessions表为用户
rake db:structure:dump
# 导出数据库结构为一个SQL文件
rake db:test:clone
# 重新创建一个测试数据库从当前环境数据库中
rake db:test:clone_structure
# 重新创建测试数据库从开发模式数据库
rake db:test:prepare
# 准备测试数据库并在入schema
rake db:test:purge
# 清空测试数据库
rake doc:app
# 创建HTML文件的API Documentation
rake doc:clobber_app
# 删除Documentation
rake doc:clobber_plugins
# 删除 plugin Documentation
rake doc:clobber_rails
# 删除Documentation
rake doc:plugins
# 产生Documation为所有安装的plugins
rake doc:rails
# 创建HTML文件的API Documentation
rake doc:reapp
# 强制重新创建HTML文件的API Documentation
rake doc:rerails
# 强制重新创建HTML文件的API Documentation
rake log:clear
# 清空目录log/下的所有日志文件
rake rails:freeze:edge
# Lock this application to latest Edge Rails. Lock a specific revision with REVISION=X
rake rails:freeze:gems
# Lock this application to the current gems (by unpacking them into vendor/rails)
rake rails:unfreeze
# Unlock this application from freeze of gems or edge and return to a fluid use of system gems
rake rails:update
# Update both scripts and public/javascripts from Rails
rake rails:update:javascripts
# Update your javascripts from your current rails install
rake rails:update:scripts
# Add new scripts to the application script/ directory
rake stats
# Report code statistics (KLOCs, etc) from the application
rake test
# Test all units and functionals
rake test:functionals
# Run tests for functionalsdb:test:prepare
rake test:integration
# Run tests for integrationdb:test:prepare
rake test:plugins
# Run tests for pluginsenvironment
rake test:recent
# Run tests for recentdb:test:prepare
rake test:uncommitted
# Run tests for uncommitteddb:test:prepare
rake test:units
# Run tests for unitsdb:test:prepare
rake tmp:cache:clear
# 清空tmp/cache目录下的所有文件
rake tmp:clear
# 清空session, cache, 和socket文件从tmp/目录
rake tmp:create
# 为sessions, cache, and sockets创建tmp/目录
rake tmp:sessions:clear
# 清空所有在tmp/sessions目录下的文件
rake tmp:sockets:clear
# 清空所有在tmp/sessions 目录下的ruby_sess.* 文件
1.4 Scripts
script/about
# 输出当前环境信息
script/breakpointer
# 启动断点server
script/console
# 启动交换式的Rails控制台
script/destroy
# 删除通过generators创建的文件
script/generate
# -> generators
script/plugin
# -> Plugins
script/runner
# 执行一个任务在rails上下文中
script/server
# 启动开发模式服务器http://localhost:3000
//以下几个不知道怎么去使用
script/performance/profiler
script/performance/benchmarker
script/process/reaper
script/process/spawner
1.5 Generators
ruby script/generate model ModelName
ruby script/generate controller ListController show edit
ruby script/generate scaffold ModelName ControllerName
ruby script/generate migration AddNewTable
ruby script/generate plugin PluginName
ruby script/generate mailer Notification lost_password signup
ruby script/generate web_service ServiceName api_one api_two
ruby script/generate integration_test TestName
ruby script/generate session_migration
可选项:
-p, --pretend Run but do not make any changes.
-f, --force Overwrite files that already exist.
-s, --skip Skip files that already exist.
-q, --quiet Suppress normal output.
-t, --backtrace Debugging: show backtrace on errors.
-h, --help Show this help message.
-c, --svn Modify files with subversion. (Note: svn must be in path)
1.6 Plugins
script/plugin discover
# discover plugin repositories
script/plugin list
# list all available plugins
script/plugin install where
# install the a wherea ? plugin
script/plugin install -x where
# install where plugin as SVN external
script/plugin install http://invisible.ch/projects/plugins/where
script/plugin update
# update installed plugins
script/plugin source
# add a source repository
script/plugin unsource
# removes a source repository
script/plugin sources
# lists source repositories
诗歌rails之 Migrations
对于Rails的迁移功能Migrations,一直都只是看一下网上的一些很基础很基础的代码片断就开始动手写代码,对它的认识基本上就是停留在抄袭的层面,连会用都说不上.有感于此,终下决心要弄清楚Migrations,至少得会用啊,山寨抄袭终非王道.
学习Migrations最佳的学习资料莫过于 Ruby On Rails网站上的 Guides 系统文章了,链接在 http://guides.rubyonrails.org/migrations.html
本文的很多代码都是出自那里.
在我的理解中,Migrations就是一个基于ruby,针对数据库(SQL)的DSL,它的出现也是符合Rails中处处皆Ruby的原则的,正是专注于Ruby,这样Rails才显得别样的美丽.
=========================== 如何写migration
=========================
1.migration的结构
每一个migrate的类都是 ActiveRecord::Migration 的子类,每一个migrate都要重写两个方法 up 和 down:
Ruby代码
- class CreateProducts < ActiveRecord::Migration
- def self .up
- #想干嘛,就干嘛
- end
- def self .down
- #你后悔的时候,你会怎么做?
- end
- end
class CreateProducts < ActiveRecord::Migration def self.up #想干嘛,就干嘛 end def self.down #你后悔的时候,你会怎么做? end end
简单的说 up 方法就是操作数据库时用的,down就是你后悔了,用来回滚用的.
2.migration提供调用的方法
Migrations提供了一系列的方法来操作数据库:
Ruby代码
- create_table #建表
- change_table #修改表结构
- drop_table #删除表
- add_column #增加字段
- change_column #修改字段定义
- rename_column #修改字段名
- remove_column #删除字段
- add_index #创建索引
- remove_index #删除索引
create_table #建表 change_table #修改表结构 drop_table #删除表 add_column #增加字段 change_column #修改字段定义 rename_column #修改字段名 remove_column #删除字段 add_index #创建索引 remove_index #删除索引
具体各个方法的详细定义,可以查看Rails的API http://api.rubyonrails.org/classes/ActiveRecord/Migration.html
这些方法替代使用SQL来操作数据库,当然也可以使用 execute 方法直接使用 SQL 来操作数据库,个人不推荐这种方式,但是在某些情况下,提供直接使用SQL也是很方便的:
Ruby代码
- execute <<-SQL
- ALTER TABLE products ADD CONSTRAINT fk_products_categories FOREIGN KEY (category_id) REFERENCES categories(id)
- SQL
execute <<-SQL ALTER TABLE products ADD CONSTRAINT fk_products_categories FOREIGN KEY (category_id) REFERENCES categories(id) SQL
3.字段
定义字段有两种方法:
Ruby代码
- #这个是传统的方法
- create_table :products do |t|
- t.column :name , :string , :null => false
- end
- #这个刚出来的时候,大家都说很性感,其实不外乎就是定义一系列的快捷方法: string,
- # text, integer, float, decimal, datetime, timestamp, time, date,
- # binary, boolean . 这一系列的方法对应各种数据类型,
- # 还有 primary_key 方法是用来定义主键的.
- create_table :products do |t|
- t.string :name
- end
#这个是传统的方法 create_table :products do |t| t.column :name, :string, :null => false end #这个刚出来的时候,大家都说很性感,其实不外乎就是定义一系列的快捷方法: string, # text, integer, float, decimal, datetime, timestamp, time, date, # binary, boolean . 这一系列的方法对应各种数据类型, # 还有 primary_key 方法是用来定义主键的. create_table :products do |t| t.string :name end
除了这几个经典的定义字段方法外,还有两个特别的Helper方法:
Ruby代码
- #以下这个方法会自动在表中增加 created_at,updated_at这两个类型为timestamp的字段
- change_table :products do |t|
- t.timestamps
- end
- #这个方法是定义关于关系的,但是不会为你的表加上外键约束,如果你加上约束,请另外手动添加,切记!
- create_table :products do |t|
- t.references :category # 生成 category_id
- #这个是关联关系中多态的定义,生成两个字段 attachment_id 和 attachment_type ,并且attachment_type的默认值为 'Photo'
- t.references :attachment , :polymorphic => { :default => 'Photo' }
- end
#以下这个方法会自动在表中增加 created_at,updated_at这两个类型为timestamp的字段 change_table :products do |t| t.timestamps end #这个方法是定义关于关系的,但是不会为你的表加上外键约束,如果你加上约束,请另外手动添加,切记! create_table :products do |t| t.references :category # 生成 category_id #这个是关联关系中多态的定义,生成两个字段 attachment_id 和 attachment_type ,并且attachment_type的默认值为 'Photo' t.references :attachment, :polymorphic => {:default => 'Photo'} end
以上两个方法是锦上添花之作,相当的实用.
4.在migration中使用 Model
除了使用以上方法操作数据库外,其实还可以直接在migration中使用 Model 的.比如:
Ruby代码
- def self .up
- #直接就用model来更新数据库,
- #你可以看到 migration 一直在提供便利让你避免使用SQL,当然不是说SQL不好,只是想让你更加的统一,只要ruby就好了.
- User.update_all ["receive_newsletter = ?" , true ]
- end
def self.up #直接就用model来更新数据库, #你可以看到 migration 一直在提供便利让你避免使用SQL,当然不是说SQL不好,只是想让你更加的统一,只要ruby就好了. User.update_all ["receive_newsletter = ?", true] end
使用model的另外一种情况是:当前migration要删除表中的一个字段 first_name,但是你的model中的某个方法使用了这个字段作为验证,比如:
Ruby代码
- class User < ActiveRecord::Base
- validates_presence_of :first_name
- end
class User < ActiveRecord::Base validates_presence_of :first_name end
那么当你要在migration中增加一条记录时,这个验证便不能通过,如:
Ruby代码
- def self .up
- User.create({:name => 'name' }).save
- end
def self.up User.create({:name => 'name'}).save end
在这种情况下,你可以在migration中重新定义一个model:
Ruby代码
- class XXXMigration < ActiveRecord::Migration
- class User < ActiveRecord::Base
- end
- def self .up
- remove_column :first_name
- end
- #这个方法的作用就是取得最新的表定义
- User.reset_column_information
- #放心吧,这个User不会有 validates_presence_of :first_name 的验证
- User.create({:name => 'name' }).save
class XXXMigration < ActiveRecord::Migration class User < ActiveRecord::Base end def self.up remove_column :first_name end #这个方法的作用就是取得最新的表定义 User.reset_column_information #放心吧,这个User不会有 validates_presence_of :first_name 的验证 User.create({:name => 'name'}).save
=========================== migration文件的命名 =======================
按照Migration的约定去命名你的migration文件,会令你省不少功夫的,请千万要相信这一点.
如果migration文件名是这样的格式: AddXXXToYYY” or “RemoveXXXFromYYY
XXX => 字段名, YYY => 表名.
那么migration生成的时候,Rails会自动为你加上 add_column or remove_column
比如:
Ruby代码
- #留意类名
- class AddPartNumberToProducts < ActiveRecord::Migration
- def self .up
- add_column :products , :part_number , :string
- end
- def self .down
- remove_column :products , :part_number
- end
- end
- class RemovePartNumberFromProducts < ActiveRecord::Migration
- def self .up
- remove_column :products , :part_number
- end
- def self .down
- add_column :products , :part_number , :string
- end
- end
#留意类名 class AddPartNumberToProducts < ActiveRecord::Migration def self.up add_column :products, :part_number, :string end def self.down remove_column :products, :part_number end end class RemovePartNumberFromProducts < ActiveRecord::Migration def self.up remove_column :products, :part_number end def self.down add_column :products, :part_number, :string end end
cool吧??
=========================== 如何执行migration =========================
执行migration的经典方法:
Ruby代码
- rake db :migrate
- #执行特定版本
- rake db:migrate VERSION=20080906120000
- #屏蔽migration的输出
- rake db:migrate VERBOSE= false
- #你又后悔,可以用如下方法回滚到最近的一次migration执行的状态
- rake db:rollback
- #回滚到最近的3次,题外话,关于这个STEP=3到底是保存在那里的,我不曾找到,在数据库的schema_migrations表中,只有版本的信息
- #莫非是按schema_migrations表记录的顺序?这个还要验证一下.
- rake db:rollback STEP=3
rake db:migrate #执行特定版本 rake db:migrate VERSION=20080906120000 #屏蔽migration的输出 rake db:migrate VERBOSE=false #你又后悔,可以用如下方法回滚到最近的一次migration执行的状态 rake db:rollback #回滚到最近的3次,题外话,关于这个STEP=3到底是保存在那里的,我不曾找到,在数据库的schema_migrations表中,只有版本的信息 #莫非是按schema_migrations表记录的顺序?这个还要验证一下. rake db:rollback STEP=3
=========================== 导出migration =========================
在某些时候,你可能需要导出migration对数据库表的字义,可以导出的格式有 rb 和 sql文件两种,前一种是正宗的ruby文件,后一种是对应你使用的数据库的SQL文件.
rb:大家都知道要查看某个model的属性时,只能去db/migrate中找定义文件,但是有了这个migration的定义文件后,只要打开它就能看了.
sql:很多时候,程序员是没有权限操作数据库的,或者没有ruby环境,这时候导出的sql定义文件就有用了.
至于你需要那一种,可以配置一下 config/environment.rb
Ruby代码
- config.active_record.schema_format => :sql # or :rb
config.active_record.schema_format => :sql # or :rb
然后执行:
Ruby代码
- rake db :structure :dump
rake db:structure:dump
到 RAILS_ROOT/db 目录下看看吧.
==================================================================
写完了,其实这里没有多少我的东西,大部分出自 http://guides.rubyonrails.org/migrations.html ,我只不过把英文变成中文罢了.
发表评论
-
Mac OS X 10.7.3安装ruby 1.9.3
2012-03-08 20:09 1998which一下可以看到Mac OS X 10.7.3预装了 ... -
使用rvm在Mac中安装ruby和rails
2012-03-08 20:07 1583使用rvm在Mac中安装ruby和rails Mac ... -
gem相关命令使用
2010-12-23 18:10 1489gem相关命令使用 1.显示gem的帮助和版本 gem –h/ ... -
疯狂的学习Rails
2010-09-30 10:04 1733命名约定概念详解 1. 混合大小写,下划线,复数 ... -
ubuntu下安装ruby && rails
2010-09-17 17:06 0ubuntu下安装ruby && ... -
rails之路
2010-09-17 11:41 1937问题:WEBrick 报 `require_framewo ... -
RUBY设计模式之生成器模式Builder(简化对象的创建)
2010-03-18 10:50 1411Builder class 负责将所有的部件瓶装于一个复 ... -
RUBY设计模式之单例模式
2010-03-10 11:04 2871单例singleton,是所有设计模式中最简单的,但 ... -
ruby1.8支持mssql数据库并不是太好,但是也可以实现
2009-11-30 15:02 986我初次使用ruby连接sql server,使用的是db ... -
Ruby 学习常用网址
2009-06-12 09:13 1237-- Ruby网站 -- Ruby官方网站(英文) ... -
了解和熟悉HEROKU
2009-06-10 23:11 0学习 HeroKu 的架构设计 ... -
RUBY 中文字符串的截取
2009-06-10 14:39 0页面中的description比较长, 想截取一部 ... -
给自己的网站做个推广—— www.3pxing.com(三人行)
2009-05-14 23:41 289我的网站名词为:三人行 ! 网址为 www.3px ... -
GREEN BOOKS
2009-02-06 16:52 0GREEN BOOKS -
TOOLS:GAMINGTREND
2009-01-22 16:42 0TOOLS:GAMINGTREND -
TOOLS:church
2009-01-22 10:24 0church 的需求(rails2.2. ... -
TOOLS:Exerciser
2009-01-13 16:07 0TOOLS:Exerciser(Rails2.0.2) 创建资 ... -
LoadError: no such file to load -- RMagick
2009-01-12 10:35 1892虽然在ubuntu上的rails里面使用过很多次的RMagi ... -
支持RubyOnRails服务器
2009-01-09 14:22 0支持RubyOnRails服务器 考虑到很多朋友来信要我推荐 ... -
数据迁移(rake )
2009-01-09 10:45 1338有时候我们的Rails应用是在已有数据库上的,我们需要把基于 ...
相关推荐
在Mac和Linux操作系统中搭建Ruby on Rails开发环境是一项常见的任务,尤其对于从事Web开发的人员来说至关重要。Ruby on Rails(简称Rails)是一个基于Ruby语言的开源Web应用框架,它遵循模型-视图-控制器(MVC)架构...
在Web开发领域,Ruby与Rails框架的结合,即Ruby on Rails(简称Rails),为开发者提供了高效构建动态网站的强大工具。Rails遵循“约定优于配置”(Convention Over Configuration, CoC)的原则,使得开发过程更为...
### RVM + Ruby 1.9.3 + Rails 3 安装与配置指南 #### 一、前言 在 Windows 7 环境下搭建 Rails 3 开发环境是一项颇具挑战性的任务,尤其是当涉及到 Cygwin、Ruby、Rails 以及一系列其他必要的组件时。本文将详细...
您只需要Command-t插件的ruby支持。 因此,您可以删除+ ruby以在不支持ruby的情况下安装它: 然后添加配置文件: git clone git://github.com/framallo/Vim-for-Rails.git〜/ .vim cd ~/.vimgit
Ruby2.6.3 滑轨6.0.1 MySQL 5.7 码头工人 邮政 以下帖子描述了此应用程序的实现。 需要 码头工人,码头工人组成 设置 运行引导脚本 $ sh ./scripts/development/bootstrap.sh $ docker-compose ps Name Command ...
This article delves into the details of integrating SAP and Ruby on Rails, focusing specifically on the use of AJAX within Ruby on Rails to enhance user experience. ## Installation Requirements To ...
Rails快速导航 在Rails应用程序中的文件之间移动的命令。特征导航到所有已知文件(alt + r)[command.railsFastNavigation] 切换到模型[command.railsFastSwitchToModel] 切换到控制器[command.railsS...
本篇文章将详细探讨如何使用Ansible部署一个基于Ruby on Rails的应用,该应用集成了Lets Encrypt(用于SSL证书)、Sidekiq(后台任务处理)、PostgreSQL(数据库服务)、nginx(反向代理)和puma(Web服务器)。...
【Ruby-Slackathon在Rails应用程序中构建slack集成的简单方法】 在当今的协作环境中,Slack已经成为团队沟通的重要工具。通过将Slack与Rails应用程序集成,开发者可以创建自定义的自动化工作流程,提高团队效率并...
本文将详细介绍如何在Mac系统上搭建一个完整的Rails开发环境,包括Ruby环境配置、Rails框架安装、MySQL数据库安装以及RubyMine集成开发环境的配置等关键步骤。 #### 二、Ruby环境配置 由于Mac系统自带Ruby环境,...
6. **Ruby on Rails**:Ruby的经典应用是Ruby on Rails框架,它是一种基于模型-视图-控制器(MVC)架构模式的Web开发框架,以其“约定优于配置”和“Don't Repeat Yourself”(DRY)原则著称,极大地提高了开发效率...
Usage: railsondeb <command> []Some useful railsondeb commands are: help Display this information version Display railsondeb version install Install rbenv, the specified version of ruby and rails If ...
目的基于 Ubuntu 14.04 64-bit/Vagrant/VirtualBox 创建 Ruby on Rails 虚拟环境脚步1.如果尚未安装git ,请安装它。- Windows 操作系统说明Windows用户可以从为Windows使用install git 当您开始为Windows安装github...
rvm是一个命令行工具,提供多版本ruby环境的管理和切换,还可以根据项目管理不同的gemset。 如果没有生成ssh key,这一步可能会失败,直接ssh-keygen生成key之后再执行安装即可。 还可能遇到gpg有关的问题:根据提示...
This section covers the basics of running Ruby scripts and provides insights into common command-line options and arguments. - **Using a Shebang Line on Unix/Linux:** For Unix/Linux users, the book ...
如果需要切换Rails版本,可以使用`rvm use 1.9.3@rails3`命令,然后再次确认`passenger_ruby`的正确路径,可以通过`passenger-config --ruby-command`获取。 ### 重启Nginx 最后,使用`/opt/nginx/sbin/nginx`命令...
MSYS2 is required to build native C/C++ extensions for Ruby and is necessary for Ruby on Rails. Moreover it allows the download and usage of hundreds of Open Source libraries which Ruby gems can ...