hoe-mercurial 1.1.1 → 1.2.0

Sign up to get free protection for your applications and to get access to all the features.
data/History.md CHANGED
@@ -1,4 +1,9 @@
1
1
 
2
+ ## 1.1.1 [2011-01-04] Michael Granger <ged@FaerieMUD.org>
3
+
4
+ Simplified the hg:checkin task.
5
+
6
+
2
7
  ## 1.1.0 [2010-12-14] Michael Granger <ged@FaerieMUD.org>
3
8
 
4
9
  Initial release after forking from hoe-hg.
data/Rakefile CHANGED
@@ -24,6 +24,7 @@ hoespec = Hoe.spec "hoe-mercurial" do
24
24
  extra_deps << ["hoe", "~> 2.8.0"]
25
25
  end
26
26
 
27
+ ENV['VERSION'] = hoespec.spec.version.to_s
27
28
 
28
29
  include Hoe::MercurialHelpers
29
30
 
data/lib/hoe/mercurial.rb CHANGED
@@ -438,13 +438,12 @@ class Hoe
438
438
  include Hoe::RakeHelpers,
439
439
  Hoe::MercurialHelpers
440
440
 
441
- VERSION = "1.1.1"
441
+ VERSION = "1.2.0"
442
442
 
443
443
  # The name of the file to edit for the commit message
444
444
  COMMIT_MSG_FILE = 'commit-msg.txt'
445
445
 
446
446
  attr_accessor :hg_release_tag_prefix
447
- attr_accessor :hg_repo, :hg_release_branch
448
447
  attr_accessor :hg_sign_tags
449
448
 
450
449
 
@@ -452,8 +451,10 @@ class Hoe
452
451
  def initialize_mercurial
453
452
  # Follow semantic versioning tagging specification (http://semver.org/)
454
453
  self.hg_release_tag_prefix = "v"
455
- self.hg_release_branch = "default"
456
454
  self.hg_sign_tags = false
455
+
456
+ self.extra_dev_deps << ['hoe-mercurial', "~> #{VERSION}"] unless
457
+ self.name == 'hoe-mercurial'
457
458
  end
458
459
 
459
460
 
metadata CHANGED
@@ -1,40 +1,21 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hoe-mercurial
3
3
  version: !ruby/object:Gem::Version
4
+ hash: 31
4
5
  prerelease: false
5
6
  segments:
6
7
  - 1
7
- - 1
8
- - 1
9
- version: 1.1.1
8
+ - 2
9
+ - 0
10
+ version: 1.2.0
10
11
  platform: ruby
11
12
  authors:
12
13
  - Michael Granger
13
14
  autorequire:
14
15
  bindir: bin
15
- cert_chain:
16
- - |
17
- -----BEGIN CERTIFICATE-----
18
- MIIDLDCCAhSgAwIBAgIBADANBgkqhkiG9w0BAQUFADA8MQwwCgYDVQQDDANnZWQx
19
- FzAVBgoJkiaJk/IsZAEZFgdfYWVyaWVfMRMwEQYKCZImiZPyLGQBGRYDb3JnMB4X
20
- DTEwMDkxNjE0NDg1MVoXDTExMDkxNjE0NDg1MVowPDEMMAoGA1UEAwwDZ2VkMRcw
21
- FQYKCZImiZPyLGQBGRYHX2FlcmllXzETMBEGCgmSJomT8ixkARkWA29yZzCCASIw
22
- DQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALy//BFxC1f/cPSnwtJBWoFiFrir
23
- h7RicI+joq/ocVXQqI4TDWPyF/8tqkvt+rD99X9qs2YeR8CU/YiIpLWrQOYST70J
24
- vDn7Uvhb2muFVqq6+vobeTkILBEO6pionWDG8jSbo3qKm1RjKJDwg9p4wNKhPuu8
25
- KGue/BFb67KflqyApPmPeb3Vdd9clspzqeFqp7cUBMEpFS6LWxy4Gk+qvFFJBJLB
26
- BUHE/LZVJMVzfpC5Uq+QmY7B+FH/QqNndn3tOHgsPadLTNimuB1sCuL1a4z3Pepd
27
- TeLBEFmEao5Dk3K/Q8o8vlbIB/jBDTUx6Djbgxw77909x6gI9doU4LD5XMcCAwEA
28
- AaM5MDcwCQYDVR0TBAIwADALBgNVHQ8EBAMCBLAwHQYDVR0OBBYEFJeoGkOr9l4B
29
- +saMkW/ZXT4UeSvVMA0GCSqGSIb3DQEBBQUAA4IBAQBG2KObvYI2eHyyBUJSJ3jN
30
- vEnU3d60znAXbrSd2qb3r1lY1EPDD3bcy0MggCfGdg3Xu54z21oqyIdk8uGtWBPL
31
- HIa9EgfFGSUEgvcIvaYqiN4jTUtidfEFw+Ltjs8AP9gWgSIYS6Gr38V0WGFFNzIH
32
- aOD2wmu9oo/RffW4hS/8GuvfMzcw7CQ355wFR4KB/nyze+EsZ1Y5DerCAagMVuDQ
33
- U0BLmWDFzPGGWlPeQCrYHCr+AcJz+NRnaHCKLZdSKj/RHuTOt+gblRex8FAh8NeA
34
- cmlhXe46pZNJgWKbxZah85jIjx95hR8vOI+NAM5iH9kOqK13DrxacTKPhqj5PjwF
35
- -----END CERTIFICATE-----
16
+ cert_chain: []
36
17
 
37
- date: 2011-01-04 00:00:00 -08:00
18
+ date: 2011-01-05 00:00:00 -08:00
38
19
  default_executable:
39
20
  dependencies:
40
21
  - !ruby/object:Gem::Dependency
@@ -45,6 +26,7 @@ dependencies:
45
26
  requirements:
46
27
  - - ~>
47
28
  - !ruby/object:Gem::Version
29
+ hash: 47
48
30
  segments:
49
31
  - 2
50
32
  - 8
@@ -60,6 +42,7 @@ dependencies:
60
42
  requirements:
61
43
  - - ">="
62
44
  - !ruby/object:Gem::Version
45
+ hash: 47
63
46
  segments:
64
47
  - 2
65
48
  - 8
@@ -104,6 +87,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
104
87
  requirements:
105
88
  - - ">="
106
89
  - !ruby/object:Gem::Version
90
+ hash: 3
107
91
  segments:
108
92
  - 0
109
93
  version: "0"
@@ -112,6 +96,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
112
96
  requirements:
113
97
  - - ">="
114
98
  - !ruby/object:Gem::Version
99
+ hash: 3
115
100
  segments:
116
101
  - 0
117
102
  version: "0"
data.tar.gz.sig DELETED
Binary file
metadata.gz.sig DELETED
Binary file