diff options
author | Robert Speicher <rspeicher@gmail.com> | 2012-09-20 13:55:14 -0400 |
---|---|---|
committer | Robert Speicher <rspeicher@gmail.com> | 2012-09-26 16:32:22 -0400 |
commit | a1e68a91205186287f21fb5fd1669acebcd7e79e (patch) | |
tree | 2c21dc00900ad12fd6376fc6a119c5e5e3d7caf6 /app/controllers/blob_controller.rb | |
parent | a8ea8d98a4f88a292289ddfedef4358033b68ec0 (diff) | |
download | gitlab-ce-a1e68a91205186287f21fb5fd1669acebcd7e79e.tar.gz |
Rename RefExtractor to ExtractsPath
Update docs a bit
Diffstat (limited to 'app/controllers/blob_controller.rb')
-rw-r--r-- | app/controllers/blob_controller.rb | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/app/controllers/blob_controller.rb b/app/controllers/blob_controller.rb index 58e70bc9d04..33387842ec2 100644 --- a/app/controllers/blob_controller.rb +++ b/app/controllers/blob_controller.rb @@ -1,9 +1,6 @@ # Controller for viewing a file's blame class BlobController < ApplicationController - # Thrown when given an invalid path - class InvalidPathError < StandardError; end - - include RefExtractor + include ExtractsPath include Gitlab::Encode layout "project" |