Ruby on Rails 基础(1)

2021-11-25 16:26:49 浏览数 (1)

前言

Rails 是使用 Ruby 语言编写的网页程序开发框架

通过为开发者提供常用组件,来简化网页程序的开发

Tip: 类似于 python 的 Django ,perl 的 Dancer

Rails 框架有自己的指导思想:

  • 不重复造轮子(DRY)

Don’t Repeat Yourself: DRY is a principle of software development which states that “Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.” By not writing the same information over and over again, our code is more maintainable, more extensible, and less buggy

  • 约定优于配置

Convention Over Configuration: Rails has opinions about the best way to do many things in a web application, and defaults to this set of conventions, rather than require that you specify every minutiae through endless configuration files

这两条编码哲学可以算是历代猴子们的智慧结晶,核心目标只有一个,最大化的减少代码规模,明确核心逻辑,而这样的好处是多多的(编码效率高,Debug也快)

DRY 自不用说,人生苦短,我们要站在巨人的肩膀上攀爬,不要把有限的生命浪费在人家已经反复踩过的坑里

配置如果不在代码内部消化,必然要在外面申明,而配置复杂到一定程度后,本身就已经成为了一门具备独立语法的体系,逻辑不在代码里就在配置里,逻辑是守恒的

这里分享一下 Rails 的相关基础,详细可以参考 官方文档 和 Ruby China 的 Rails 入门

Tip: 当前的最新版本为 Rails 5.0.0.beta3 发布于 February 27, 2016 4:00 pm


概要


环境

代码语言:javascript复制
[root@h202 ~]# cat /etc/issue
CentOS release 6.6 (Final)
Kernel r on an m

[root@h202 ~]# uname -a 
Linux h202 2.6.32-504.el6.x86_64 #1 SMP Wed Oct 15 04:27:16 UTC 2014 x86_64 x86_64 x86_64 GNU/Linux
[root@h202 ~]# 

0 人点赞