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 +9 -0
- data/Rakefile +6 -2
- data/lib/git/release_notes.rb +0 -1
- data/lib/qa_release_tasks.rb +1 -1
- metadata +3 -3
- data/README.rdoc +0 -7
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
|
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
|
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']
|
data/lib/git/release_notes.rb
CHANGED
data/lib/qa_release_tasks.rb
CHANGED
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.
|
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
|
24
|
+
- README
|
25
25
|
- LICENSE
|
26
26
|
files:
|
27
27
|
- LICENSE
|
28
|
-
- README
|
28
|
+
- README
|
29
29
|
- Rakefile
|
30
30
|
- bin/git-changelog
|
31
31
|
- lib/cli.rb
|