hoe-mercurial 1.1.0 → 1.1.1
Sign up to get free protection for your applications and to get access to all the features.
- data.tar.gz.sig +0 -0
- data/ChangeLog +54 -2
- data/Rakefile +1 -10
- data/lib/hoe/mercurial.rb +2 -2
- metadata +3 -8
- metadata.gz.sig +0 -0
data.tar.gz.sig
CHANGED
Binary file
|
data/ChangeLog
CHANGED
@@ -1,8 +1,60 @@
|
|
1
|
+
2011-01-04 Michael Granger <ged@FaerieMUD.org>
|
2
|
+
|
3
|
+
* .hgtags:
|
4
|
+
Added tag v1.1.1 for changeset d28926dedd51
|
5
|
+
[bb77ac28bc62] [master, tip]
|
6
|
+
|
7
|
+
* .hgsigs:
|
8
|
+
Added signature for changeset 245a995c1ba4
|
9
|
+
[d28926dedd51] [v1.1.1]
|
10
|
+
|
11
|
+
* lib/hoe/mercurial.rb:
|
12
|
+
Version bump to 1.1.1.
|
13
|
+
[245a995c1ba4] [github/master]
|
14
|
+
|
15
|
+
* lib/hoe/mercurial.rb:
|
16
|
+
Simplify the hg:checkin prerequisites list
|
17
|
+
[341f404d8909]
|
18
|
+
|
19
|
+
* Rakefile:
|
20
|
+
Use Hoe.add_include_dirs instead of require_relative.
|
21
|
+
|
22
|
+
diff --git a/Rakefile b/Rakefile
|
23
|
+
--- a/Rakefile +++ b/Rakefile @@ -4,16 +4,7 @@ require 'hoe'
|
24
|
+
require 'rake/clean'
|
25
|
+
|
26
|
+
-# 1.9.2 and later require explicit relative require
|
27
|
+
-if defined?( require_relative )
|
28
|
+
- $stderr.puts "Requiring relative lib/hoe/mercurial..."
|
29
|
+
- require_relative "lib/hoe/mercurial"
|
30
|
+
- $stderr.puts " require done."
|
31
|
+
-else
|
32
|
+
- $LOAD_PATH.unshift( 'lib' )
|
33
|
+
- require 'hoe/mercurial'
|
34
|
+
-end
|
35
|
+
-
|
36
|
+
+Hoe.add_include_dirs 'lib/hoe'
|
37
|
+
|
38
|
+
Hoe.plugin :mercurial Hoe.plugin :signing diff --git
|
39
|
+
a/lib/hoe/mercurial.rb b/lib/hoe/mercurial.rb
|
40
|
+
--- a/lib/hoe/mercurial.rb +++ b/lib/hoe/mercurial.rb @@ -579,7
|
41
|
+
+579,7 @@
|
42
|
+
|
43
|
+
desc "Check the current code in if
|
44
|
+
tests pass"
|
45
|
+
- task :checkin => ['hg:pull', 'hg:newfiles', :precheckin,
|
46
|
+
COMMIT_MSG_FILE] do + task :checkin =>
|
47
|
+
[:pull, :newfiles, :precheckin, COMMIT_MSG_FILE] do
|
48
|
+
targets = get_target_args()
|
49
|
+
$stderr.puts '---', File.read( COMMIT_MSG_FILE ), '---'
|
50
|
+
ask_for_confirmation( "Continue with checkin?" ) do
|
51
|
+
[9c5dac3e8a16]
|
52
|
+
|
1
53
|
2010-12-21 Michael Granger <ged@FaerieMUD.org>
|
2
54
|
|
3
55
|
* .hgtags:
|
4
56
|
Added tag v1.1.0 for changeset b5258eedbb47
|
5
|
-
[e9bdf9672799]
|
57
|
+
[e9bdf9672799]
|
6
58
|
|
7
59
|
* .hgsigs:
|
8
60
|
Added signature for changeset 6d0d956a3ada
|
@@ -10,7 +62,7 @@
|
|
10
62
|
|
11
63
|
* README.md, Rakefile:
|
12
64
|
Markdown fixes, README updates, turn on tag-signing.
|
13
|
-
[6d0d956a3ada]
|
65
|
+
[6d0d956a3ada]
|
14
66
|
|
15
67
|
* .hgignore, CHANGELOG.rdoc, History.md, Manifest.txt, README.md,
|
16
68
|
README.rdoc, Rakefile, lib/hoe/hg.rb, lib/hoe/mercurial.rb:
|
data/Rakefile
CHANGED
@@ -4,16 +4,7 @@
|
|
4
4
|
require 'hoe'
|
5
5
|
require 'rake/clean'
|
6
6
|
|
7
|
-
|
8
|
-
if defined?( require_relative )
|
9
|
-
$stderr.puts "Requiring relative lib/hoe/mercurial..."
|
10
|
-
require_relative "lib/hoe/mercurial"
|
11
|
-
$stderr.puts " require done."
|
12
|
-
else
|
13
|
-
$LOAD_PATH.unshift( 'lib' )
|
14
|
-
require 'hoe/mercurial'
|
15
|
-
end
|
16
|
-
|
7
|
+
Hoe.add_include_dirs 'lib/hoe'
|
17
8
|
|
18
9
|
Hoe.plugin :mercurial
|
19
10
|
Hoe.plugin :signing
|
data/lib/hoe/mercurial.rb
CHANGED
@@ -438,7 +438,7 @@ class Hoe
|
|
438
438
|
include Hoe::RakeHelpers,
|
439
439
|
Hoe::MercurialHelpers
|
440
440
|
|
441
|
-
VERSION = "1.1.
|
441
|
+
VERSION = "1.1.1"
|
442
442
|
|
443
443
|
# The name of the file to edit for the commit message
|
444
444
|
COMMIT_MSG_FILE = 'commit-msg.txt'
|
@@ -579,7 +579,7 @@ class Hoe
|
|
579
579
|
|
580
580
|
|
581
581
|
desc "Check the current code in if tests pass"
|
582
|
-
task :checkin => [
|
582
|
+
task :checkin => [:pull, :newfiles, :precheckin, COMMIT_MSG_FILE] do
|
583
583
|
targets = get_target_args()
|
584
584
|
$stderr.puts '---', File.read( COMMIT_MSG_FILE ), '---'
|
585
585
|
ask_for_confirmation( "Continue with checkin?" ) do
|
metadata
CHANGED
@@ -1,13 +1,12 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: hoe-mercurial
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash: 19
|
5
4
|
prerelease: false
|
6
5
|
segments:
|
7
6
|
- 1
|
8
7
|
- 1
|
9
|
-
-
|
10
|
-
version: 1.1.
|
8
|
+
- 1
|
9
|
+
version: 1.1.1
|
11
10
|
platform: ruby
|
12
11
|
authors:
|
13
12
|
- Michael Granger
|
@@ -35,7 +34,7 @@ cert_chain:
|
|
35
34
|
cmlhXe46pZNJgWKbxZah85jIjx95hR8vOI+NAM5iH9kOqK13DrxacTKPhqj5PjwF
|
36
35
|
-----END CERTIFICATE-----
|
37
36
|
|
38
|
-
date:
|
37
|
+
date: 2011-01-04 00:00:00 -08:00
|
39
38
|
default_executable:
|
40
39
|
dependencies:
|
41
40
|
- !ruby/object:Gem::Dependency
|
@@ -46,7 +45,6 @@ dependencies:
|
|
46
45
|
requirements:
|
47
46
|
- - ~>
|
48
47
|
- !ruby/object:Gem::Version
|
49
|
-
hash: 47
|
50
48
|
segments:
|
51
49
|
- 2
|
52
50
|
- 8
|
@@ -62,7 +60,6 @@ dependencies:
|
|
62
60
|
requirements:
|
63
61
|
- - ">="
|
64
62
|
- !ruby/object:Gem::Version
|
65
|
-
hash: 47
|
66
63
|
segments:
|
67
64
|
- 2
|
68
65
|
- 8
|
@@ -107,7 +104,6 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
107
104
|
requirements:
|
108
105
|
- - ">="
|
109
106
|
- !ruby/object:Gem::Version
|
110
|
-
hash: 3
|
111
107
|
segments:
|
112
108
|
- 0
|
113
109
|
version: "0"
|
@@ -116,7 +112,6 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
116
112
|
requirements:
|
117
113
|
- - ">="
|
118
114
|
- !ruby/object:Gem::Version
|
119
|
-
hash: 3
|
120
115
|
segments:
|
121
116
|
- 0
|
122
117
|
version: "0"
|
metadata.gz.sig
CHANGED
Binary file
|