primedia-qa_release_tasks 0.4.1 → 0.4.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/README ADDED
@@ -0,0 +1,9 @@
1
+ Git Changelog - Show a list of changes by version.
2
+
3
+ -l, --limit [LIMIT] Maximum commits for each version, default is 20
4
+ --no-limit Show all commits for each version
5
+ -a, --all Show all versions
6
+ --from [VERSION] Start changelog at this version. Defaults to most recent version.
7
+ --to [VERSION] End changelog at this version. Defaults to second most recent version.
8
+ -h, --help Displays this help message
9
+ --version Show version
data/Rakefile CHANGED
@@ -16,7 +16,7 @@ spec = Gem::Specification.new do |s|
16
16
  s.version = GEM_VERSION
17
17
  s.platform = Gem::Platform::RUBY
18
18
  s.has_rdoc = true
19
- s.extra_rdoc_files = ["README.rdoc", "LICENSE"]
19
+ s.extra_rdoc_files = ["README", "LICENSE"]
20
20
  s.summary = SUMMARY
21
21
  s.description = s.summary
22
22
  s.authors = AUTHORS
@@ -24,11 +24,15 @@ spec = Gem::Specification.new do |s|
24
24
 
25
25
  s.require_path = 'lib'
26
26
  s.autorequire = GEM
27
- s.files = %w(LICENSE README.rdoc Rakefile) + Dir.glob("{bin,lib,spec}/**/*")
27
+ s.files = %w(LICENSE README Rakefile) + Dir.glob("{bin,lib,spec}/**/*")
28
28
  end
29
29
 
30
30
  task :default => :spec
31
31
 
32
+ task :make => :make_spec do
33
+ system("./bin/git-changelog --help > README && ./bin/git-changelog -a --no-limit > HISTORY")
34
+ end
35
+
32
36
  desc "Run specs"
33
37
  Spec::Rake::SpecTask.new do |t|
34
38
  t.spec_files = FileList['spec/**/*_spec.rb']
@@ -24,7 +24,6 @@ module Git
24
24
  end_tag = options[:to] || ask("End at which tag?", tags[start_index + 1] || tags[start_index], tags)
25
25
  end_index = tags.index(end_tag) + 1 # include end tag
26
26
  end
27
- puts
28
27
 
29
28
  start_index.upto(end_index-1) do |i|
30
29
  start = tags[i]
@@ -6,7 +6,7 @@ require 'git/tagger'
6
6
  require 'tasks/qa_release'
7
7
 
8
8
  module QaReleaseTasks
9
- VERSION = '0.4.1'
9
+ VERSION = '0.4.2'
10
10
 
11
11
  def self.version
12
12
  VERSION
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: primedia-qa_release_tasks
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.1
4
+ version: 0.4.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jason Noble
@@ -21,11 +21,11 @@ executables:
21
21
  extensions: []
22
22
 
23
23
  extra_rdoc_files:
24
- - README.rdoc
24
+ - README
25
25
  - LICENSE
26
26
  files:
27
27
  - LICENSE
28
- - README.rdoc
28
+ - README
29
29
  - Rakefile
30
30
  - bin/git-changelog
31
31
  - lib/cli.rb
data/README.rdoc DELETED
@@ -1,7 +0,0 @@
1
- ==Summary
2
-
3
- QA Release Management Workflow for Git
4
-
5
- ==Authors
6
-
7
- Jason Noble, Rein Henrichs