From 38737079b6c1096c2517e249198b8bc0bedf4156 Mon Sep 17 00:00:00 2001 From: Dmitriy Zaporozhets Date: Sat, 9 Feb 2013 15:26:47 +0200 Subject: ignore docs by git --- doc/code/classes/NoteEvent.html | 380 ---------------------------------------- 1 file changed, 380 deletions(-) delete mode 100644 doc/code/classes/NoteEvent.html (limited to 'doc/code/classes/NoteEvent.html') diff --git a/doc/code/classes/NoteEvent.html b/doc/code/classes/NoteEvent.html deleted file mode 100644 index 0817d17018a..00000000000 --- a/doc/code/classes/NoteEvent.html +++ /dev/null @@ -1,380 +0,0 @@ - - - - - NoteEvent - - - - - - - - - - - - - -
-
- - - - - - - - - - - - - - - -
Methods
-
- -
N
-
- -
- -
W
-
- -
- -
- - - - - - - - - - - - - - - - - - - - -
Instance Public methods
- -
-
- - note_commit?() - - -
- - -
- -
- - - - - - -
- - -
-
# File app/roles/note_event.rb, line 10
-def note_commit?
-  target.noteable_type == "Commit"
-end
-
-
- -
- -
-
- - note_commit_id() - - -
- - -
- -
- - - - - - -
- - -
-
# File app/roles/note_event.rb, line 2
-def note_commit_id
-  target.commit_id
-end
-
-
- -
- -
-
- - note_short_commit_id() - - -
- - -
- -
- - - - - - -
- - -
-
# File app/roles/note_event.rb, line 6
-def note_short_commit_id
-  note_commit_id[0..8]
-end
-
-
- -
- -
-
- - note_target() - - -
- - -
- -
- - - - - - -
- - -
-
# File app/roles/note_event.rb, line 14
-def note_target
-  target.noteable
-end
-
-
- -
- -
-
- - note_target_id() - - -
- - -
- -
- - - - - - -
- - -
-
# File app/roles/note_event.rb, line 18
-def note_target_id
-  if note_commit?
-    target.commit_id
-  else
-    target.noteable_id.to_s
-  end
-end
-
-
- -
- -
-
- - note_target_type() - - -
- - -
- -
- - - - - - -
- - -
-
# File app/roles/note_event.rb, line 30
-def note_target_type
-  if target.noteable_type.present?
-    target.noteable_type.titleize
-  else
-    "Wall"
-  end.downcase
-end
-
-
- -
- -
-
- - wall_note?() - - -
- - -
- -
- - - - - - -
- - -
-
# File app/roles/note_event.rb, line 26
-def wall_note?
-  target.noteable_type.blank?
-end
-
-
- -
-
- -
- - \ No newline at end of file -- cgit v1.2.1