码迷,mamicode.com
首页 > 其他好文 > 详细

Ruby on Rails 学习笔记 - 1 Hello World

时间:2014-11-11 12:03:47      阅读:182      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   io   color   使用   sp   for   div   

原书地址:https://www.railstutorial.org/book/beginning

1. 使用cloud 9服务器

https://ide.c9.io

2. 创建一个workspace,进入以后安装rails:

gem install rails -v 4.2.0.beta4

3. 创建一个新的工程:

rails _4.2.0.beta4_ new hello_app

4. 修改Gemfile

source https://rubygems.org

gem rails,                4.2.0.beta4
gem sass-rails,           5.0.0.beta1
gem uglifier,             2.5.3
gem coffee-rails,         4.0.1
gem jquery-rails,         4.0.0.beta2
gem turbolinks,           2.3.0
gem jbuilder,             2.2.3
gem rails-html-sanitizer, 1.0.1
gem sdoc,                 0.4.0, group: :doc

group :development, :test do
  gem sqlite3,     1.3.9
  gem byebug,      3.4.0
  gem web-console, 2.0.0.beta3
  gem spring,      1.1.3
end

 

5. install bundle

bundle install

6. 启动服务器

在cloud9上面启动服务器的命令行:

rails server -b $IP -p $PORT

7. 修改app/controllers/application-controller.rb

class ApplicationController < ActionController::Base
  # Prevent CSRF attacks by raising an exception.
  # For APIs, you may want to use :null_session instead.
  protect_from_forgery with: :exception
  
  def hello
    render text: "hello, world!"
  end
  
end

 

8. config/routes.rb

代码如下:

Rails.application.routes.draw do
  .
  .
  .
  # You can have the root of your site routed with "root"
  root application#hello
  .
  .
  .
end

 

Ruby on Rails 学习笔记 - 1 Hello World

标签:style   blog   http   io   color   使用   sp   for   div   

原文地址:http://www.cnblogs.com/rixin/p/4088745.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!