1

我的 Gemfile 中有撬轨 gem。我想将 pry 用作 rails 控制台,但下面没有该文本。

如何清理我的 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

4

1 回答 1

3

根据第二个 Pry 提示,您可以在表达式末尾使用分号。

>> Subscription.where(user_id: User.last.id);
>>
于 2012-11-26T12:34:01.783 回答