我使用Bootstrap 3與Rails 4,我想創建一個自定義FormBuilder來處理一些Bootstrap獨特的HTML語法。具體來說,我需要一個自定義的助手,將創建一個圍繞表單域的form-group DIV包裝,因爲Bootstrap applies error state to this wrapper, and not the field itself ... <div class
這裏是我的模型message.rb: class Message
include Mongoid::Document
include Mongoid::Timestamps::Created
embedded_in :room
field :content
field :user_id # That's the guest_id; room_id
我有一個Admin模型,它可以管理Organization s。 我有一個AdminController與一個簡單的index行動和一個孩子Admin::OrganizationsController控制器,我試圖測試。 測試這個孩子控制器上的規範show動作傳遞沒有錯誤: describe "GET show" do
it "assigns the requested organiza