| Class | Pastis::Paste |
| In: |
lib/pastis/paste.rb
|
| Parent: | Object |
| url | [R] |
# File lib/pastis/paste.rb, line 4 def initialize(attributes) %w(url body time preview).each do |attribute| instance_variable_set("@#{attribute}", attributes[attribute.intern]) end end
5 first lines of the paste
# File lib/pastis/paste.rb, line 18 def preview @preview ||= body.split("\n")[0, 6].join("\n") end