From 5978f35cce70c317a1a8dc025403aefd27b5be4c Mon Sep 17 00:00:00 2001 From: Shawn Neal Date: Mon, 23 Mar 2015 10:39:26 -0700 Subject: [PATCH] Relatively require github_changelog_generator library During development its possible for the gem installed version of github_changelog_generator lib to get required instead of the current development version of the library. This ensures that Ruby pulls in the correct version of the lib, specifically for development without breaking production builds. --- bin/github_changelog_generator | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/github_changelog_generator b/bin/github_changelog_generator index d71251d..591db33 100755 --- a/bin/github_changelog_generator +++ b/bin/github_changelog_generator @@ -1,4 +1,4 @@ #! /usr/bin/env ruby -require 'github_changelog_generator' +require_relative '../lib/github_changelog_generator' GitHubChangelogGenerator::ChangelogGenerator.new.compund_changelog \ No newline at end of file