Class: Note
- Inherits:
-
Object
- Object
- Note
- Defined in:
- lib/cnote/note.rb
Instance Attribute Summary collapse
-
#content ⇒ Object
readonly
Returns the value of attribute content.
-
#created ⇒ Object
Returns the value of attribute created.
-
#filename ⇒ Object
readonly
Returns the value of attribute filename.
-
#modified ⇒ Object
readonly
Returns the value of attribute modified.
-
#path ⇒ Object
readonly
Returns the value of attribute path.
-
#tags ⇒ Object
readonly
Returns the value of attribute tags.
-
#title ⇒ Object
readonly
Returns the value of attribute title.
Instance Method Summary collapse
- #add_tags(tags) ⇒ Object
- #excerpt ⇒ Object
-
#initialize(path) ⇒ Note
constructor
A new instance of Note.
- #refresh(contents) ⇒ Object
- #remove_tags(tags) ⇒ Object
- #time_fmt(time) ⇒ Object
- #update ⇒ Object
Constructor Details
#initialize(path) ⇒ Note
Returns a new instance of Note.
14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 |
# File 'lib/cnote/note.rb', line 14 def initialize(path) = /^<!\-{3}(.*)\-{2}>/ @content = "" = [] @filename = File.basename(path) @path = path File.open(@path, "r") do |file| refresh(file.read) end @modified = File.mtime(@path) if !@modified @created = @modified if !@created @title = "Untitled" if !@title end |
Instance Attribute Details
#content ⇒ Object (readonly)
Returns the value of attribute content.
4 5 6 |
# File 'lib/cnote/note.rb', line 4 def content @content end |
#created ⇒ Object
Returns the value of attribute created.
4 5 6 |
# File 'lib/cnote/note.rb', line 4 def created @created end |
#filename ⇒ Object (readonly)
Returns the value of attribute filename.
4 5 6 |
# File 'lib/cnote/note.rb', line 4 def filename @filename end |
#modified ⇒ Object (readonly)
Returns the value of attribute modified.
4 5 6 |
# File 'lib/cnote/note.rb', line 4 def modified @modified end |
#path ⇒ Object (readonly)
Returns the value of attribute path.
4 5 6 |
# File 'lib/cnote/note.rb', line 4 def path @path end |
#tags ⇒ Object (readonly)
Returns the value of attribute tags.
4 5 6 |
# File 'lib/cnote/note.rb', line 4 def end |
#title ⇒ Object (readonly)
Returns the value of attribute title.
4 5 6 |
# File 'lib/cnote/note.rb', line 4 def title @title end |
Instance Method Details
#add_tags(tags) ⇒ Object
50 51 52 53 54 |
# File 'lib/cnote/note.rb', line 50 def () = .concat() @modified = Time.new end |
#excerpt ⇒ Object
62 63 64 |
# File 'lib/cnote/note.rb', line 62 def excerpt @content.gsub(/[#*\-~]/i, "").strip.slice(0, 80) end |
#refresh(contents) ⇒ Object
32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 |
# File 'lib/cnote/note.rb', line 32 def refresh(contents) @title = nil @content = '' contents.each_line do |line| line = line.strip if =~ line ($~[1]) elsif !@title if line != "" @title = line.gsub(/#|[^a-z0-9\s\.\-]/i, "").strip end else @content << line + "\n" end end end |
#remove_tags(tags) ⇒ Object
56 57 58 59 60 |
# File 'lib/cnote/note.rb', line 56 def () = - @modified = Time.new end |
#time_fmt(time) ⇒ Object
66 67 68 |
# File 'lib/cnote/note.rb', line 66 def time_fmt(time) time.strftime("%A, %B %e %Y, %l:%M:%S%p") end |
#update ⇒ Object
70 71 72 73 |
# File 'lib/cnote/note.rb', line 70 def update @modified = Time.new end |