Time of Update: 2015-01-29
標籤:1. ruby最強大的web架構ruby on rails .必學的.所以可以直接安裝RailsInstaller.地址:http://www.railsinstaller.org/en .安裝過程預設勾選添加環境到PATH. 2. 更改gem鏡像到http://ruby.taobao.org/$ gem sources --remove https://rubygems.org/$ gem sources -a https://ruby.taobao.org/$ gem
Time of Update: 2014-10-09
標籤:ruby on rails win7 Ruby on Rails 在window平台各種坑,配置過程相當痛苦。預計安裝內容:mysql server ruby 2.0.0rails 4.0.2mysql2
Time of Update: 2014-08-30
標籤:style http os 檔案 2014 問題 sp 工作 on 開發機:win7 旗艦版 -
Time of Update: 2015-01-13
標籤:通過許多法術,Ruby 有的編程技巧來實現很多巧妙的編程:數組參數環繞別名白板類擴充類擴充混入類執行個體變數類宏潔淨室代碼處理器上下文探針順延強制動態派發動態方法動態代理扁平範圍幽靈方法鉤子方法核心方法惰性執行個體變數擬態方法猴子打補丁……上面的進階些的技巧,來實現更簡潔的編程(只是指總行數),方便修改上。一個檔案成千行,還是存在的。要看懂,還要瞭解些 Ruby 的基礎才行的。推薦 2星讀《Ruby 元編程》
Time of Update: 2015-01-11
標籤:一、概述Range在ruby中表示區間。表示方法“..”和“…”。前者表示閉合區間:Range中的元素可以是數字、字串和自訂的區間對象(1..10).each{|i| puts i } #1 2 3 4 5 6 7 8 9 10(1…10).each{|i| puts i} #1 2 3 4 5 6 7 8 91.1常用方法
Time of Update: 2015-01-07
標籤:需求:實現一個簡曆類,必須要有姓名,可以設定性別和年齡,可以設定工作經曆。最終需要三個簡曆初步實現:# -*- encoding: utf-8 -*-#簡曆類class Resume attr_accessor :name, :sex, :age, :time_area, :company def initialize(name) @name = name end def set_personal_info(sex, age)
Time of Update: 2014-12-31
標籤:需求:給人搭配不同的服飾代碼版本一# -*- encoding: utf-8 -*-class Person attr_accessor :name def initialize(name) @name = name end def wear_t_shirts puts ‘大T恤‘ end def wear_big_trouser puts ‘垮褲‘ end def
Time of Update: 2014-12-29
標籤:ruby 程式員學習任何一門新語言,總是從用新語言寫一個Hello World開始的,我們也不例外,先用ruby寫一個極簡的Hello World。 說極簡應該實至名歸,因為只有一行代碼:<span style="font-family:SimSun;font-size:18px;">puts "Hello,
Time of Update: 2014-12-28
標籤: 剛接觸Ruby,發現Ruby真心強大,搞了那麼久的Java了,已經被Java的繁瑣的文法整的無語透頂了,尤其的Java異常,設計出來就是個失敗呀!Ruby目前更新到了2.x了,社區也很活躍,開發效率和Java相比不是搞了一個層級。
Time of Update: 2014-12-16
標籤:ar io sp on 檔案 bs as nbsp 對象 ARGF 一個IO對象,把ARGV中指定的所有檔案虛擬串連起來成為一個檔案。如果ARGV為空白,那麼它表示標準輸入。同義字$
Time of Update: 2014-12-15
標籤:style http io os sp strong on 檔案 ad 在網頁http://www.rubychina.net/downloads/ 上找到--〉Ruby on
Time of Update: 2014-12-10
標籤:style blog color 使用 sp for strong on 檔案 解釋性語言,自上而下執行,純物件導向,跨平台,動態綁定,沒有多重繼承。NetBeans
Time of Update: 2014-12-03
標籤:blog http io ar color os sp for on 根據《[ruby on rails] 跟我學之路由映射》,我們知道,可以訪問
Time of Update: 2014-12-03
標籤:style blog http io ar os 使用 sp java 通過form來建立資料,本章節將會涉及內容:建立form,使用者重導向,渲染views 和
Time of Update: 2014-11-28
標籤:des style blog http io ar color sp on #encoding:utf-8require "open-uri"require
Time of Update: 2014-10-02
標籤:style blog color os 使用 ar sp div c 我們可以認為module是一個專門存放一系列方法和常量的工具箱。module和class非常像,
Time of Update: 2014-10-01
標籤:rails總共分為11章節,一個簡單的微博系統。完全是以測試去驅動開發,所以書裡面有很多測試代碼,剛開始會覺得很不習慣,然後過了一段時間後,還是不習慣這樣的開發方式。最後選擇以自己的方式來整理書裡面的知識點。也就是說,我把開發的部分,跟測試部分,區分開來。後面想了下,覺得知識點可以分為以下4點。1.git的使用初始化項目 git init新增內容 git add .提交到本地倉庫 git commit -m "備忘"提交到遠程分支 git push拉取內容 git pull查看分支
Time of Update: 2014-09-16
標籤:des style blog http color io os 使用 java 零、Ubuntu的安裝官網下載,我裝的是12.04的x64版。 一、系統升級更換ubuntu的源1
Time of Update: 2014-08-25
標籤:http color java os 使用 strong ar 資料 art
Time of Update: 2014-07-23
標籤:ruby 擴充 makefile c extension # Loads mkmf which is used to make makefiles for Ruby extensions require 'mkmf' # Give it a name extension_name =