1

私は Gemfile pry-rails 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

2 番目の Pry のヒントによると、式の最後にセミコロンを使用できます。

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