Sha256: c17539b685fe0490428f4bcff9f8260f02e28661829de9eb6418bfb18367b5a2
Contents?: true
Size: 371 Bytes
Versions: 7
Compression:
Stored size: 371 Bytes
Contents
#!/usr/bin/env rake require "bundler/gem_tasks" require "rspec/core/rake_task" require "github_changelog_generator/task" RSpec::Core::RakeTask.new(:spec) GitHubChangelogGenerator::RakeTask.new :changelog do |config| config.user = 'reenhanced' config.project = 'gitreflow' config.since_tag = 'v0.9.2' config.future_release = 'master' end task :default => :spec
Version data entries
7 entries across 7 versions & 1 rubygems
Version | Path |
---|---|
git_reflow-0.9.9 | Rakefile |
git_reflow-0.9.8 | Rakefile |
git_reflow-0.9.7 | Rakefile |
git_reflow-0.9.6 | Rakefile |
git_reflow-0.9.5 | Rakefile |
git_reflow-0.9.4 | Rakefile |
git_reflow-0.9.3 | Rakefile |