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/BlobController.html | 160 ----------------------------------- 1 file changed, 160 deletions(-) delete mode 100644 doc/code/classes/BlobController.html (limited to 'doc/code/classes/BlobController.html') diff --git a/doc/code/classes/BlobController.html b/doc/code/classes/BlobController.html deleted file mode 100644 index 22df013f475..00000000000 --- a/doc/code/classes/BlobController.html +++ /dev/null @@ -1,160 +0,0 @@ - - - - - BlobController - - - - - - - - - - - - - -
-
- -
- -

Controller for viewing a file’s blame

- -
- - - - - - - - - - - - - - - -
Methods
-
- -
S
-
-
    - - -
  • - show -
  • - -
-
- -
- - - - -
Included Modules
- - - - - - - - - - - - - - - - - - - -
Instance Public methods
- -
-
- - show() - - -
- - -
- -
- - - - - - -
- - -
-
# File app/controllers/blob_controller.rb, line 12
-def show
-  if @tree.is_blob?
-    send_data(
-      @tree.data,
-      type: @tree.mime_type,
-      disposition: 'inline',
-      filename: @tree.name
-    )
-  else
-    not_found!
-  end
-end
-
-
- -
-
- -
- - \ No newline at end of file -- cgit v1.2.1