From 12a764d3f0f0570cc60840dcb790f67fd16df27d Mon Sep 17 00:00:00 2001 From: Ciro Santilli Date: Sun, 14 Sep 2014 16:51:41 +0200 Subject: [PATCH] Typo herlper -> helper. --- lib/gitlab_git.rb | 2 +- lib/gitlab_git/{encoding_herlper.rb => encoding_helper.rb} | 0 lib/gitlab_git/repository.rb | 2 +- 3 files changed, 2 insertions(+), 2 deletions(-) rename lib/gitlab_git/{encoding_herlper.rb => encoding_helper.rb} (100%) diff --git a/lib/gitlab_git.rb b/lib/gitlab_git.rb index b8651d2..678d975 100644 --- a/lib/gitlab_git.rb +++ b/lib/gitlab_git.rb @@ -16,7 +16,7 @@ # Gitlab::Git require_relative "gitlab_git/popen" -require_relative "gitlab_git/encoding_herlper" +require_relative 'gitlab_git/encoding_helper' require_relative "gitlab_git/blame" require_relative "gitlab_git/blob" require_relative "gitlab_git/commit" diff --git a/lib/gitlab_git/encoding_herlper.rb b/lib/gitlab_git/encoding_helper.rb similarity index 100% rename from lib/gitlab_git/encoding_herlper.rb rename to lib/gitlab_git/encoding_helper.rb diff --git a/lib/gitlab_git/repository.rb b/lib/gitlab_git/repository.rb index 01104bd..48326a1 100644 --- a/lib/gitlab_git/repository.rb +++ b/lib/gitlab_git/repository.rb @@ -1,7 +1,7 @@ # Gitlab::Git::Repository is a wrapper around native Grit::Repository object # We dont want to use grit objects inside app/ # It helps us easily migrate to rugged in future -require_relative 'encoding_herlper' +require_relative 'encoding_helper' require 'tempfile' module Gitlab