hoe-git 1.5.0 → 1.6.0

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.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 389b93297853b00b6bcb1876ce4a91bec723b7cf
4
+ data.tar.gz: 1c8a9b09c9f24a783429bc857de575afbd20d1a6
5
+ SHA512:
6
+ metadata.gz: 1920cc8ffb3e5544d4a169128beaa3b72481f41b8e18afb9d1f77f95db2092cf73c24d230e0751b393bab7c70d287556aac7de03c70543098f15efc67f78e0d7
7
+ data.tar.gz: 0947ed0c183b749bcd880a990f60b36ef320435d2a5805a7db8d95922f2233d5f769933c960dbdb313aac912c71ad200502165e6629eb567226300a72551c26a
@@ -0,0 +1 @@
1
+ C��q-��d�I�������H8���^��>�sf8�7�%nd��Z��}�g%��UzN�9,�O�S=�x�)LL+�C�R�%���2�������;okz��ڨNɛZ�aB�ݚ ���� s���gwYg��� 3�j�'�\_ڧrQ�����[�Ԛ���`\��s����C�O�˘���Ӥ�w|�nN-L��9u_&oY6~���=M�;o3å�\TM��ė�{ v�OG���^�h�ds�ƭD�8I�_%��
data.tar.gz.sig CHANGED
Binary file
@@ -1,3 +1,9 @@
1
+ === 1.6.0 / 2014-02-05
2
+
3
+ * 1 minor enhancement:
4
+
5
+ * Added signed tag support to hoe-git
6
+
1
7
  === 1.5.0 / 2012-03-22
2
8
 
3
9
  * 1 minor enhancement:
@@ -1,6 +1,7 @@
1
1
  = Hoe Loves Git
2
2
 
3
3
  * http://github.com/jbarnette/hoe-git
4
+ * http://docs.seattlerb.org/hoe-git
4
5
 
5
6
  == Description
6
7
 
data/Rakefile CHANGED
@@ -12,5 +12,8 @@ Hoe.spec "hoe-git" do
12
12
  self.history_file = "CHANGELOG.rdoc"
13
13
  self.readme_file = "README.rdoc"
14
14
 
15
- extra_deps << ["hoe", ">= 2.2.0"]
15
+ license 'MIT'
16
+
17
+ rdoc_locations <<
18
+ 'docs.seattlerb.org:/data/www/docs.seattlerb.org/hoe-git'
16
19
  end
@@ -20,7 +20,7 @@ class Hoe #:nodoc:
20
20
  module Git
21
21
 
22
22
  # Duh.
23
- VERSION = "1.5.0"
23
+ VERSION = "1.6.0"
24
24
 
25
25
  # What do you want at the front of your release tags?
26
26
  # [default: <tt>"v"</tt>]
@@ -135,7 +135,9 @@ class Hoe #:nodoc:
135
135
  if git_svn?
136
136
  sh "git svn tag #{tag} -m '#{msg}'"
137
137
  else
138
- sh "git tag -f #{tag} -m '#{msg}'"
138
+ flags = ' -s' unless `git config --get user.signingkey`.empty?
139
+
140
+ sh "git tag#{flags} -f #{tag} -m '#{msg}'"
139
141
  git_remotes.each { |remote| sh "git push -f #{remote} tag #{tag}" }
140
142
  end
141
143
  end
metadata CHANGED
@@ -1,24 +1,18 @@
1
- --- !ruby/object:Gem::Specification
1
+ --- !ruby/object:Gem::Specification
2
2
  name: hoe-git
3
- version: !ruby/object:Gem::Version
4
- hash: 3
5
- prerelease:
6
- segments:
7
- - 1
8
- - 5
9
- - 0
10
- version: 1.5.0
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.6.0
11
5
  platform: ruby
12
- authors:
6
+ authors:
13
7
  - John Barnette
14
8
  autorequire:
15
9
  bindir: bin
16
- cert_chain:
10
+ cert_chain:
17
11
  - |
18
12
  -----BEGIN CERTIFICATE-----
19
13
  MIIDeDCCAmCgAwIBAgIBATANBgkqhkiG9w0BAQUFADBBMRAwDgYDVQQDDAdkcmJy
20
14
  YWluMRgwFgYKCZImiZPyLGQBGRYIc2VnbWVudDcxEzARBgoJkiaJk/IsZAEZFgNu
21
- ZXQwHhcNMTIwMjI4MTc1NDI1WhcNMTMwMjI3MTc1NDI1WjBBMRAwDgYDVQQDDAdk
15
+ ZXQwHhcNMTMwMjI4MDUyMjA4WhcNMTQwMjI4MDUyMjA4WjBBMRAwDgYDVQQDDAdk
22
16
  cmJyYWluMRgwFgYKCZImiZPyLGQBGRYIc2VnbWVudDcxEzARBgoJkiaJk/IsZAEZ
23
17
  FgNuZXQwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCbbgLrGLGIDE76
24
18
  LV/cvxdEzCuYuS3oG9PrSZnuDweySUfdp/so0cDq+j8bqy6OzZSw07gdjwFMSd6J
@@ -29,101 +23,86 @@ cert_chain:
29
23
  sCANiQ8BAgMBAAGjezB5MAkGA1UdEwQCMAAwCwYDVR0PBAQDAgSwMB0GA1UdDgQW
30
24
  BBS5k4Z75VSpdM0AclG2UvzFA/VW5DAfBgNVHREEGDAWgRRkcmJyYWluQHNlZ21l
31
25
  bnQ3Lm5ldDAfBgNVHRIEGDAWgRRkcmJyYWluQHNlZ21lbnQ3Lm5ldDANBgkqhkiG
32
- 9w0BAQUFAAOCAQEAPeWzFnrcvC6eVzdlhmjUub2s6qieBkongKRDHQz5MEeQv4LS
33
- SARnoHY+uCAVL/1xGAhmpzqQ3fJGWK9eBacW/e8E5GF9xQcV3mE1bA0WNaiDlX5j
34
- U2aI+ZGSblqvHUCxKBHR1s7UMHsbz1saOmgdRTyPx0juJs68ocbUTeYBLWu9V4KP
35
- zdGAG2JXO2gONg3b4tYDvpBLbry+KOX27iAJulUaH9TiTOULL4ITJVFsK0mYVqmR
36
- Q8Tno9S3e4XGGP1ZWfLrTWEJbavFfhGHut2iMRwfC7s/YILAHNATopaJdH9DNpd1
37
- U81zGHMUBOvz/VGT6wJwYJ3emS2nfA2NOHFfgA==
26
+ 9w0BAQUFAAOCAQEAOflo4Md5aJF//EetzXIGZ2EI5PzKWX/mMpp7cxFyDcVPtTv0
27
+ js/6zWrWSbd60W9Kn4ch3nYiATFKhisgeYotDDz2/pb/x1ivJn4vEvs9kYKVvbF8
28
+ V7MV/O5HDW8Q0pA1SljI6GzcOgejtUMxZCyyyDdbUpyAMdt9UpqTZkZ5z1sicgQk
29
+ 5o2XJ+OhceOIUVqVh1r6DNY5tLVaGJabtBmJAYFVznDcHiSFybGKBa5n25Egql1t
30
+ KDyY1VIazVgoC8XvR4h/95/iScPiuglzA+DBG1hip1xScAtw05BrXyUNrc9CEMYU
31
+ wgF94UVoHRp6ywo8I7NP3HcwFQDFNEZPNGXsng==
38
32
  -----END CERTIFICATE-----
39
-
40
- date: 2012-03-22 00:00:00 Z
41
- dependencies:
42
- - !ruby/object:Gem::Dependency
43
- name: hoe
44
- prerelease: false
45
- requirement: &id001 !ruby/object:Gem::Requirement
46
- none: false
47
- requirements:
48
- - - ">="
49
- - !ruby/object:Gem::Version
50
- hash: 7
51
- segments:
52
- - 2
53
- - 2
54
- - 0
55
- version: 2.2.0
56
- type: :runtime
57
- version_requirements: *id001
58
- - !ruby/object:Gem::Dependency
33
+ date: 2014-02-05 00:00:00.000000000 Z
34
+ dependencies:
35
+ - !ruby/object:Gem::Dependency
59
36
  name: rdoc
37
+ requirement: !ruby/object:Gem::Requirement
38
+ requirements:
39
+ - - "~>"
40
+ - !ruby/object:Gem::Version
41
+ version: '4.0'
42
+ type: :development
60
43
  prerelease: false
61
- requirement: &id002 !ruby/object:Gem::Requirement
62
- none: false
63
- requirements:
64
- - - ~>
65
- - !ruby/object:Gem::Version
66
- hash: 19
67
- segments:
68
- - 3
69
- - 10
70
- version: "3.10"
44
+ version_requirements: !ruby/object:Gem::Requirement
45
+ requirements:
46
+ - - "~>"
47
+ - !ruby/object:Gem::Version
48
+ version: '4.0'
49
+ - !ruby/object:Gem::Dependency
50
+ name: hoe
51
+ requirement: !ruby/object:Gem::Requirement
52
+ requirements:
53
+ - - "~>"
54
+ - !ruby/object:Gem::Version
55
+ version: '3.7'
71
56
  type: :development
72
- version_requirements: *id002
57
+ prerelease: false
58
+ version_requirements: !ruby/object:Gem::Requirement
59
+ requirements:
60
+ - - "~>"
61
+ - !ruby/object:Gem::Version
62
+ version: '3.7'
73
63
  description: |-
74
64
  A set of Hoe plugins for tighter Git integration. Provides tasks to
75
65
  automate release tagging and pushing and changelog generation. I
76
66
  expect it'll learn a few more tricks in the future.
77
- email:
67
+ email:
78
68
  - jbarnette@rubyforge.org
79
69
  executables: []
80
-
81
70
  extensions: []
82
-
83
- extra_rdoc_files:
71
+ extra_rdoc_files:
84
72
  - CHANGELOG.rdoc
85
73
  - Manifest.txt
86
74
  - README.rdoc
87
- files:
88
- - .autotest
75
+ files:
76
+ - ".autotest"
89
77
  - CHANGELOG.rdoc
90
78
  - Manifest.txt
91
79
  - README.rdoc
92
80
  - Rakefile
93
81
  - lib/hoe/git.rb
94
82
  homepage: http://github.com/jbarnette/hoe-git
95
- licenses: []
96
-
83
+ licenses:
84
+ - MIT
85
+ metadata: {}
97
86
  post_install_message:
98
- rdoc_options:
99
- - --main
87
+ rdoc_options:
88
+ - "--main"
100
89
  - README.rdoc
101
- require_paths:
90
+ require_paths:
102
91
  - lib
103
- required_ruby_version: !ruby/object:Gem::Requirement
104
- none: false
105
- requirements:
92
+ required_ruby_version: !ruby/object:Gem::Requirement
93
+ requirements:
106
94
  - - ">="
107
- - !ruby/object:Gem::Version
108
- hash: 3
109
- segments:
110
- - 0
111
- version: "0"
112
- required_rubygems_version: !ruby/object:Gem::Requirement
113
- none: false
114
- requirements:
95
+ - !ruby/object:Gem::Version
96
+ version: '0'
97
+ required_rubygems_version: !ruby/object:Gem::Requirement
98
+ requirements:
115
99
  - - ">="
116
- - !ruby/object:Gem::Version
117
- hash: 3
118
- segments:
119
- - 0
120
- version: "0"
100
+ - !ruby/object:Gem::Version
101
+ version: '0'
121
102
  requirements: []
122
-
123
103
  rubyforge_project: hoe-git
124
- rubygems_version: 1.8.21
104
+ rubygems_version: 2.2.1
125
105
  signing_key:
126
- specification_version: 3
106
+ specification_version: 4
127
107
  summary: A set of Hoe plugins for tighter Git integration
128
108
  test_files: []
129
-
metadata.gz.sig CHANGED
Binary file