DELAEMON BLOG

Live as if you were to die tomorrow. Learn as if you were to live forever.

2012-09-27から1日間の記事一覧

Using the Console, Listing All Posts

Consoleをから操作できる。デバックのとき素早くなれるかも。 $ rails consoleLoading development environment (Rails 3.2.8) irb(main):001:0> p = Post.new(:content => "A new post") => #<Post id: nil, name: nil, title: nil, content: "A new post", created_at: nil, updated_at: nil> irb(main):002:0> p.save (0.1ms) begin transaction (…</post>