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 ⇒ 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 |
# File 'lib/cnote/note.rb', line 14 def initialize(path) = /^<!\-{3}(.*)\-{2}>/ @content = "" = [] @filename = File.basename(path) @path = path refresh @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
47 48 49 50 51 |
# File 'lib/cnote/note.rb', line 47 def () = .concat() @modified = Time.new end |
#excerpt ⇒ Object
59 60 61 |
# File 'lib/cnote/note.rb', line 59 def excerpt @content.gsub(/[#*\-~]/i, "").strip.slice(0, 80) end |
#refresh ⇒ Object
30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 |
# File 'lib/cnote/note.rb', line 30 def refresh File.open(@path, "r") do |file| file.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 end |
#remove_tags(tags) ⇒ Object
53 54 55 56 57 |
# File 'lib/cnote/note.rb', line 53 def () = - @modified = Time.new end |
#time_fmt(time) ⇒ Object
63 64 65 |
# File 'lib/cnote/note.rb', line 63 def time_fmt(time) time.strftime("%A, %B %e %Y, %l:%M:%S%p") end |
#update ⇒ Object
67 68 69 70 |
# File 'lib/cnote/note.rb', line 67 def update @modified = Time.new end |