rails101s.logdown.com rails101s.logdown.com

rails101s.logdown.com

Rails 101 S

Rails 101 without Bootstrapper

http://rails101s.logdown.com/

WEBSITE DETAILS
SEO
PAGES
SIMILAR SITES

TRAFFIC RANK FOR RAILS101S.LOGDOWN.COM

TODAY'S RATING

>1,000,000

TRAFFIC RANK - AVERAGE PER MONTH

BEST MONTH

October

AVERAGE PER DAY Of THE WEEK

HIGHEST TRAFFIC ON

Monday

TRAFFIC BY CITY

CUSTOMER REVIEWS

Average Rating: 3.6 out of 5 with 15 reviews
5 star
4
4 star
5
3 star
4
2 star
0
1 star
2

Hey there! Start your review of rails101s.logdown.com

AVERAGE USER RATING

Write a Review

WEBSITE PREVIEW

Desktop Preview Tablet Preview Mobile Preview

LOAD TIME

3.3 seconds

FAVICON PREVIEW

  • rails101s.logdown.com

    16x16

  • rails101s.logdown.com

    32x32

CONTACTS AT RAILS101S.LOGDOWN.COM

Login

TO VIEW CONTACTS

Remove Contacts

FOR PRIVACY ISSUES

CONTENT

SCORE

6.2

PAGE TITLE
Rails 101 S | rails101s.logdown.com Reviews
<META>
DESCRIPTION
Rails 101 without Bootstrapper
<META>
KEYWORDS
1 about me
2 archive
3 feeds
4 intro
5 改編 sdlong
6 與 growth school
7 改版重點
8 讓學 rails 的新手可以減少遇到地雷的機會
9 並且從中理解到 bootstrapper 裡的預設設定
10 重新排版與改編教程,延伸閱讀的註解
CONTENT
Page content here
KEYWORDS ON
PAGE
about me,archive,feeds,intro,改編 sdlong,與 growth school,改版重點,讓學 rails 的新手可以減少遇到地雷的機會,並且從中理解到 bootstrapper 裡的預設設定,重新排版與改編教程,延伸閱讀的註解,幫助各位用循序漸進,易讀的方式理解,read on,permalink,8 months ago,本章的作業目標,rake 的概念解說,使用者可以在後台看到自己參加的 group,使用可以在後台看到自己發表的 post,安裝 gem devise
SERVER
nginx/1.6.2 + Phusion Passenger 4.0.59
POWERED BY
Phusion Passenger 4.0.59
CONTENT-TYPE
utf-8
GOOGLE PREVIEW

Rails 101 S | rails101s.logdown.com Reviews

https://rails101s.logdown.com

Rails 101 without Bootstrapper

INTERNAL PAGES

rails101s.logdown.com rails101s.logdown.com
1

[ 2.0 ] 5. user 可以加入、退出 group « Rails 101 S

http://rails101s.logdown.com/posts/247886-20-5-user-can-add-exit-group

Almost 2 years ago. 20 ] 5. user 可以加入、退出 group. 建立 討論版成員 ( group user ) 設定. User 可以在 group 頁面 加入 / 退出 此 group. User 在建立 group 後自動成為 group 的一員. 若不是 group 創辦人,就不會顯示 edit 按鈕. 建立 討論版成員 ( group user ) 設定. Rails g model group user group id:integer user id:integer. 資料表, 裡面的欄位是 group id 跟 user id. Has many :groups has many :posts has many :group users has many :participated groups, through: :group users, source: :group. 打開 app/models/group user.rb. 延伸閱讀] Active Record Association. 打開 ruby app/models/user.rb.

2

[ 2.0 ] 3. 可以在討論版裡發表文章 « Rails 101 S

http://rails101s.logdown.com/posts/247873-20-3-articles-in-a-discussion-board

Almost 2 years ago. 20 ] 3. 可以在討論版裡發表文章. 可以在 Group 裡面 post 文章. 資料驗證 post 必須要有內容才能儲存 / 新增. 用 before action 來整理重複的程式碼. 前置作業 ( model, routes ). Rails g controller posts. 建立一個 Controller: posts (要加s). Rails g model post content:text group id:integer. 建立一個 Model: post (不加s). 並順便建立資料表 post 的二個欄位: content(text 文字屬性) 跟 group id (integer 整數屬性). 建立 group 與 post 二資料表間的關聯性 (relationship). Railsapplication.routes.draw do root 'groups#index' - resources :groups. Resources :groups do resources :posts end. Group id: 1, ...

3

[ 2.0 ] 8. 撰寫 db:seed 與 自動化重整資料庫程式 « Rails 101 S

http://rails101s.logdown.com/posts/247890-20-8-write-automation-reforming-of-dbseed-a-database-program

Almost 2 years ago. 20 ] 8. 撰寫 db:seed 與 自動化重整資料庫程式. 撰寫 seed.rb 檔. 撰寫 rake dev:build = 自動化執行清空 重跑 migration 種子載入資料. Rake 直譯上來說就是 Ruby Make ,用 ruby 語言開發的 build tool. 會列出所有目前能執行的 rake 指令 (包含 install gem 以後建置在內的). 就是執行 資料庫異動設定 的 task. 撰寫 seed.rb 檔. 或是說當資料庫炸掉的時候,會很想一股腦把 資料庫整個 reset 掉. 並希望 reset 完還能把一些資料放進去,像是 user, groups, posts,不用一個個手動輸入. 建立一個 user 帳號 = example@gmail.com. 並用此帳號建立 20 個 groups. 每個 group 各有 30 個 posts. Puts "這個種子檔會自動建立一個帳號, 並且創建 20 個 groups, 每個 group 各 30 個 posts". December 30, 2014 08:33.

4

Intro « Rails 101 S

http://rails101s.logdown.com/posts/210279

Over 2 years ago. 原作 xdite ( 原著. 將 gitbook 版下架 ( 停止維護 ). 教程中的 code 改用 diff 語法來顯示,方便閱讀. 改用 ruby 1.9 的語法 (不再有 :class = "xxx" ). 使用 ruby 2.1.2, Rails 4.2.0 版本. Git commit log and flow 漂亮. 不需要再一個個修改 devise 的 views,一個指令解決. Deploy to production server by 手動. Deploy to production server by capristrano3 ( 自動化 deploy 設定 ). 希望能藉此幫助更多人進入 Ruby on Rails 的世界. 本 blog 內容為 Rails 101 翻修. 不用原本教材裡的懶人包 (Bootstrapper), 一切從 0 開始建置出 Rails 101 裡的專案. 例如裝了哪些 gem ) 是有什麼意義的. Rails 101 裡面的 Code 的真正價值. 本 blog 內容採用 CC BY-NC 3.0 TW.

5

Archive « Rails 101 S

http://rails101s.logdown.com/archives

20 ] 9. 將寫好的專案部署 ( Deploy ) 到遠端 Server 上. 20 ] 8. 撰寫 db:seed 與 自動化重整資料庫程式. 20 ] 7. Refactor Code 整理你的程式碼. 20 ] 6 - 0. 實做簡單的後台機制. 20 ] 5. user 可以加入、退出 group. 20 ] 4. 建立使用者功能. 20 ] 3. 可以在討論版裡發表文章. 20 ] 2-1. 手動實作出有 CRUD 功能的討論版. 20 ] 2. 手動架構出討論版功能的基礎網站. 20 ] 1. 創建一個 Rails 專案. 延伸閱讀] Active Record Association. 延伸閱讀] 深度解析 CRUD 功能裡的 Controller and Model. 延伸閱讀] MVC 架構與 RESTful 概念. 1 - 2 進入真正的主題前的須知. 1 - 1 使用 Bootstrap 做前端套版. 1 - 0 Hello World! Based on work at subtlepatterns.com.

UPGRADE TO PREMIUM TO VIEW 7 MORE

TOTAL PAGES IN THIS WEBSITE

12

LINKS TO THIS WEBSITE

blog.murmurhouse.com blog.murmurhouse.com

Murmur house: Ruby on Rails學習筆記:前置作業

http://blog.murmurhouse.com/2015/05/ruby-on-rails.html

Ruby on Rails學習筆記:前置作業. Ruby on Rails 實戰聖經. Ruby -e "$(curl -fsSL https:/ raw.githubusercontent.com/Homebrew/install/master/install)". Gem install rails - no-ri - no-rdoc. 叫做Xcode Command Line Tools. 9698;▆▅▄▃崩╰(〒皿〒)╯潰▃▄▅▇◣. 訂閱: 張貼留言 (Atom). Awesome Inc.範本. 由 Blogger.

UPGRADE TO PREMIUM TO VIEW 0 MORE

TOTAL LINKS TO THIS WEBSITE

1

OTHER SITES

rails.xdevproject.net rails.xdevproject.net

Software lab, Inc. / Secure custom worldwide servers. We love use and support GNU/Linux

Applications for everyday life. Software lab, Inc.

rails02.ru rails02.ru

Авторизация - TwiFarm

rails1.com rails1.com

Rails 1 - Rails1.com

Rails1.com is for sale. Want to buy it? Welcome to Rails 1™. You've found us while we're still working on our new site. But we should have it set up shortly. Thanks for stopping by. Top Properties for Sale. Related Names for Sale. Other Name Categories for Sale. Amazon Web Services (AWS and EC2). Domain Parking and Management. Frye Island and Sebago Lake. Health Fitness and Nutrition. Startups and Venture Capital. All material on this site is provided for informational purposes only.

rails100.com rails100.com

www.rails100.com

Xinxizang.com/.cn/.com.cn打包出售中 新西藏,可做地方门户,机不可失. Falvbao.com wenyibao.com zaocandian.com canyindian.com daizuren.com liangticaiyi.com dananmen.com zhaohuogan.com yidashi.com 正在ename一口价销售.

rails101.net rails101.net

Rails101.net

rails101s.logdown.com rails101s.logdown.com

Rails 101 S

About 1 year ago. 原作 xdite ( 原著. 將 gitbook 版下架 ( 停止維護 ). 教程中的 code 改用 diff 語法來顯示,方便閱讀. 同步維護,歡迎使用 Growth School 的系統. 改用 ruby 1.9 的語法 (不再有 :class = "xxx" ). 使用 ruby 2.1.2, Rails 4.2.0 版本. Git commit log and flow 漂亮. 不需要再一個個修改 devise 的 views,一個指令解決. Deploy to production server by 手動. Deploy to production server by capristrano3 ( 自動化 deploy 設定 ). 希望能藉此幫助更多人進入 Ruby on Rails 的世界. 本 blog 內容為 Rails 101 without Bootstrapper. 不用 Bootstrapper, 一切從 0 開始建置出 Rails 101 裡的專案. 例如裝了哪些 gem ) 是有什麼意義的. July 15, 2014 19:02.

rails11.rubychan.de rails11.rubychan.de

Neues in Rails 1.1 - index

ActionPack 1.12.0. ActiveRecord 1.14.0. ActiveSupport 1.3.0. RailTies 1.1.0. Prototype 1.5.0. Scriptaculous 1.6.0. Neues in Rails 1.1. Inzwischen ist diese Verion natürlich veraltet! Eine Liste der Änderungen in Rails 1.1. Der neuesten Version des Web-Framworks Ruby on Rails. Dies ist eine Übersetzung und Erweiterung verschiedener englischer Artikel:. Scott Raymonds Artikel What’s new in Rails 1.1. Mike Clarks Artikel Rails 1.1: The Forgotten Features. David Heinemeier Hanssons Offizielle Ankündigung.

rails123.com rails123.com

train parts|subway parts|railway parts|railway castings-Contact--CRRC China

JuTong Railway is a professional manufacturer with more years of professional production history.Specializing in locomotive electrical accessories supporting. detailed. Hydraulic station filter element. HYDAC Dirk filter 2. Xi'an Jutong Railway Equipment Technologies Co,. Ltd. Add Floor 18 Lvdi,No.323 Nanerhuan ,Beilin District,Xi'an,China. Tel 86-29-86693861;Fax 86-29-86693861. Wep http:/ www.rails123.com. HXD2C HXD3B HXD2 HXD3 SS7E Ele. HXD1C HXD1F HXD2 HXD2C Electri. HXD3B HXD3D Passenger SS9 Pas.

rails18xx.it rails18xx.it

Marco Rocci's 18xx Games Page

This site is dedicated to all 18xx enthusiasts out there. Hey. a free domain was included in my ADSL contract. I had to do *something* with it. Page contains all news and info pertaining my Rails18xx suite of Windows applications. Page is a good, albeit incomplete, reference for most 18xx tiles. You are advised to also check Chris Lawson's Blackwater Station. For tile reference. All content has been generated using my TileDesigner application. Page contains just what you expect. some useful links.

rails1996.com rails1996.com

Home

The RAILS History group continues to promote local history concerning railroading, agriculture and industry. Each year at local events the group gathers together local individuals to display items of interest. We look forward to see you at the Benton County Fair July 18 - 22. at the Benton County fair grounds Vinton, Iowa. Vinton, Iowa 52349.

rails2014.blogspot.com rails2014.blogspot.com

USA Rail Trip 2014 - Ken and Karen