2012-11-06 89 views
1

我在我的Gemfile撬軌寶石。我想使用pry作爲滑軌控制檯,但沒有下面的文字。如何在使用撬軌時清潔導軌控制檯輸出?

如何清潔我的rails控制檯輸出,現在我收到了很多不必要的文字:

>> Subscription.where(user_id: User.last.id) 
    User Load (1.8ms) SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 1 
#<ActiveRecord::Relation:0x7f7f9ad69c70 
    @implicit_readonly = nil, 
    @join_dependency = nil, 
    @order_clause = nil, 
    @records = [], 
    @should_eager_load = nil, 
    attr_accessor :bind_values = [], 
    attr_accessor :create_with_value = {}, 
... 

https://gist.github.com/4025796

+2

你是什麼意思,「混亂」?這是撬,漂亮 - 打印返回值。 –

+0

我想你已經安裝了'pry-rails' gem。刪除它,只使用'pry' gem,它不應該覆蓋默認的導軌控制檯。 – louiscoquio

回答

3

根據你的表現結束了second Pry tip你可以使用分號。

>> Subscription.where(user_id: User.last.id); 
>>