From 1c48f633d808fec5f3cd3712d554d7deb2e37e41 Mon Sep 17 00:00:00 2001 From: Eduardo de Santana Medeiros Alexandre Date: Mon, 18 Jul 2016 13:58:26 -0300 Subject: [PATCH] Show how to use it with Rakefile It was missing the require statement. --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index bfcce7e..a9b7308 100644 --- a/README.md +++ b/README.md @@ -138,6 +138,8 @@ we've provided a `rake` task library for your changelog generation. Just put something like this in your `Rakefile`: ```ruby +require 'github_changelog_generator/task' + GitHubChangelogGenerator::RakeTask.new :changelog do |config| config.since_tag = '0.1.14' config.future_release = '0.2.0'