Class: Note

Inherits:
Object
  • Object
show all
Defined in:
lib/cnote/note.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

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)
  @meta_regex = /^<!\-{3}(.*)\-{2}>/

  @content = ""
  @tags = []
  @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

#contentObject (readonly)

Returns the value of attribute content.



4
5
6
# File 'lib/cnote/note.rb', line 4

def content
  @content
end

#createdObject

Returns the value of attribute created.



4
5
6
# File 'lib/cnote/note.rb', line 4

def created
  @created
end

#filenameObject (readonly)

Returns the value of attribute filename.



4
5
6
# File 'lib/cnote/note.rb', line 4

def filename
  @filename
end

#modifiedObject (readonly)

Returns the value of attribute modified.



4
5
6
# File 'lib/cnote/note.rb', line 4

def modified
  @modified
end

#pathObject (readonly)

Returns the value of attribute path.



4
5
6
# File 'lib/cnote/note.rb', line 4

def path
  @path
end

#tagsObject (readonly)

Returns the value of attribute tags.



4
5
6
# File 'lib/cnote/note.rb', line 4

def tags
  @tags
end

#titleObject (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 add_tags(tags)
  @tags = @tags.concat(tags)
  @modified = Time.new
  write_meta
end

#excerptObject



59
60
61
# File 'lib/cnote/note.rb', line 59

def excerpt
  @content.gsub(/[#*\-~]/i, "").strip.slice(0, 80)
end

#refreshObject



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 @meta_regex =~ line
        parse_meta($~[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 remove_tags(tags)
  @tags = @tags - tags
  @modified = Time.new
  write_meta
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

#updateObject



67
68
69
70
# File 'lib/cnote/note.rb', line 67

def update
  @modified = Time.new
  write_meta
end