From c200ec91909fa3429473673751faf91c6610472b Mon Sep 17 00:00:00 2001 From: Joe Block Date: Sat, 25 Jun 2016 16:23:45 -0700 Subject: [PATCH] Rename bbhelpers to reflect actual functionality --- bin/git-bb-create-pull-request | 2 +- bin/git-bb-list-pull-requests | 2 +- bin/git-bb-open | 2 +- bin/{bbhelpers.rb => githelpers.rb} | 0 4 files changed, 3 insertions(+), 3 deletions(-) rename bin/{bbhelpers.rb => githelpers.rb} (100%) diff --git a/bin/git-bb-create-pull-request b/bin/git-bb-create-pull-request index 8ab3990..63b0328 100755 --- a/bin/git-bb-create-pull-request +++ b/bin/git-bb-create-pull-request @@ -7,7 +7,7 @@ # License: Apache 2.0 require 'pathname' -require_relative 'bbhelpers' +require_relative 'githelpers' def construct_PR_URL remote = git_remote() diff --git a/bin/git-bb-list-pull-requests b/bin/git-bb-list-pull-requests index eed45f9..34ed1be 100755 --- a/bin/git-bb-list-pull-requests +++ b/bin/git-bb-list-pull-requests @@ -7,7 +7,7 @@ # License: Apache 2.0 require 'pathname' -require_relative 'bbhelpers' +require_relative 'githelpers' def construct_PR_list_URL remote = git_remote() diff --git a/bin/git-bb-open b/bin/git-bb-open index 7ade957..9b1728e 100755 --- a/bin/git-bb-open +++ b/bin/git-bb-open @@ -7,7 +7,7 @@ # License: Apache 2.0, see LICENSE in this repository. require 'pathname' -require_relative 'bbhelpers' +require_relative 'githelpers' def constructURL remote = git_remote() diff --git a/bin/bbhelpers.rb b/bin/githelpers.rb similarity index 100% rename from bin/bbhelpers.rb rename to bin/githelpers.rb