Guest User

Untitled

a guest
Mar 5th, 2018
284
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.82 KB | None | 0 0
  1. >> x = EmailAddress.find(1)
  2. => #<EmailAddress:0x3714938 @attributes={"name"=>nil, "updated_at"=>"2007-06-08 16:18:44", "crypt"=>"d4bf5ca873b0f2c030e8f5be74d92e33", "id"=>"1", "address"=>"eunji@deeptechinc.com", "created_at"=>"2007-06-08 16:18:44"}>
  3. >> y = EmailAddress.find(1)
  4. => #<EmailAddress:0x37110e4 @attributes={"name"=>nil, "updated_at"=>"2007-06-08 16:18:44", "crypt"=>"d4bf5ca873b0f2c030e8f5be74d92e33", "id"=>"1", "address"=>"eunji@deeptechinc.com", "created_at"=>"2007-06-08 16:18:44"}>
  5. >> a = [x, y]
  6. => [#<EmailAddress:0x3714938 @attributes={"name"=>nil, "updated_at"=>"2007-06-08 16:18:44", "crypt"=>"d4bf5ca873b0f2c030e8f5be74d92e33", "id"=>"1", "address"=>"eunji@deeptechinc.com", "created_at"=>"2007-06-08 16:18:44"}>, #<EmailAddress:0x37110e4 @attributes={"name"=>nil, "updated_at"=>"2007-06-08 16:18:44", "crypt"=>"d4bf5ca873b0f2c030e8f5be74d92e33", "id"=>"1", "address"=>"eunji@deeptechinc.com", "created_at"=>"2007-06-08 16:18:44"}>]
  7. >> a
  8. => [#<EmailAddress:0x3714938 @attributes={"name"=>nil, "updated_at"=>"2007-06-08 16:18:44", "crypt"=>"d4bf5ca873b0f2c030e8f5be74d92e33", "id"=>"1", "address"=>"eunji@deeptechinc.com", "created_at"=>"2007-06-08 16:18:44"}>, #<EmailAddress:0x37110e4 @attributes={"name"=>nil, "updated_at"=>"2007-06-08 16:18:44", "crypt"=>"d4bf5ca873b0f2c030e8f5be74d92e33", "id"=>"1", "address"=>"eunji@deeptechinc.com", "created_at"=>"2007-06-08 16:18:44"}>]
  9. >> a.uniq
  10. => [#<EmailAddress:0x3714938 @attributes={"name"=>nil, "updated_at"=>"2007-06-08 16:18:44", "crypt"=>"d4bf5ca873b0f2c030e8f5be74d92e33", "id"=>"1", "address"=>"eunji@deeptechinc.com", "created_at"=>"2007-06-08 16:18:44"}>, #<EmailAddress:0x37110e4 @attributes={"name"=>nil, "updated_at"=>"2007-06-08 16:18:44", "crypt"=>"d4bf5ca873b0f2c030e8f5be74d92e33", "id"=>"1", "address"=>"eunji@deeptechinc.com", "created_at"=>"2007-06-08 16:18:44"}>]
  11. >>
Add Comment
Please, Sign In to add comment