hoe-manns 2.1.1 → 2.1.7

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,19 @@
1
+ # MAINTENANCE POLICY:
2
+
3
+ I'm following the Semantic Versioning for its releases: (Major).(Minor).(Patch).
4
+
5
+ * Major version: Whenever there is something significant or any backwards
6
+ incompatible changes.
7
+ * Minor version: When new, backwards compatible functionality is introduced a
8
+ minor feature is introduced, or when a set of smaller features is rolled out.
9
+ * Patch number: When backwards compatible bug fixes are introduced that fix
10
+ incorrect behavior.
11
+ * The current stable release will receive security patches and bug fixes
12
+ (eg. 5.0 -> 5.0.1).
13
+ * Feature releases will mark the next supported stable release where the minor
14
+ version is increased numerically by increments of one (eg. 5.0 -> 5.1).
15
+
16
+ I encourage everyone to run the latest stable release to ensure that you can
17
+ easily upgrade to the most secure and feature rich experience. In order to
18
+ make sure you can easily run the most recent stable release, we are working
19
+ hard to keep the update process simple and reliable.
@@ -0,0 +1,89 @@
1
+ # hoe-manns
2
+
3
+ ## DESCRIPTION:
4
+
5
+ hoe-manns is a small collection of my personal used rake tasks for using with hoe. Actually it includes that tasks:
6
+
7
+ * bundler:gemfile_lock
8
+ * bundle_audit:*
9
+ * clean_pkg
10
+ * copy_master
11
+ * remove_pre_gemspec
12
+ * run_before_release
13
+ * run_after_release
14
+
15
+ The CHANGELOG.md contains a detailed description of what has changed.
16
+
17
+ hoe-manns is released under the GPL-3.0-or-later License, see the file 'LICENSE.md' for more information.
18
+
19
+ |What | Where |
20
+ |-----|--------|
21
+ |codebase | https://github.com/saigkill/hoe-manns |
22
+ |rdoc | http://www.rubydoc.info/gems/hoe-manns |
23
+ |docs | https://github.com/saigkill/hoe-manns/wiki |
24
+ |bugs & feature requests | https://github.com/saigkill/hoe-manns/issues |
25
+ |openhub statistics| https://www.openhub.net/p/hoe-manns |
26
+ |authors blog| https://saschamanns.de/ |
27
+
28
+ | What | Status |
29
+ |-------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
30
+ |last public version | [![Last Version](https://badge.fury.io/rb/hoe-manns.png)](http://rubygems.org/gems/hoe-manns) |
31
+ |downloads latest | [![Downloads latest](https://img.shields.io/gem/dtv/hoe-manns.svg)](http://rubygems.org/gems/hoe-manns) |
32
+ |downloads all | [![Downloads all](https://img.shields.io/gem/dt/hoe-manns.svg)](http://rubygems.org/gems/hoe-manns) |
33
+ |continuous integration | ![CI](https://github.com/saigkill/hoe-manns/workflows/CI/badge.svg?branch=master&event=push) |
34
+ |code quality | [![Code Quality](https://api.codeclimate.com/v1/badges/009b795034d7c698c74f/maintainability)](https://codeclimate.com/github/saigkill/hoe-manns/maintainability) |
35
+ |dependencies|[![Dependabot Status](https://api.dependabot.com/badges/status?host=github&repo=saigkill/hoe-manns)](https://dependabot.com)
36
+ |security | [![Security](https://hakiri.io/github/saigkill/hoe-manns/master.svg)](https://hakiri.io/github/saigkill/hoe-manns/master/shield) |
37
+ |vulnerabilities|[![Known Vulnerabilities](https://snyk.io/test/github/saigkill/hoe-manns/badge.svg?targetFile=Gemfile.lock)](https://snyk.io/test/github/saigkill/hoe-manns?targetFile=Gemfile.lock) |
38
+ |documentation quality | [![Documentation Quality](https://inch-ci.org/github/saigkill/hoe-manns.svg?branch=master)](https://inch-ci.org/github/saigkill/hoe-manns) |
39
+
40
+ ## SCREENSHOT
41
+
42
+ [![Screenshot](https://saschamanns.de/img/screenshots/hoe-manns-screenshots.png)](https://github.com/saigkill/hoe-manns)
43
+
44
+ ## FEATURES:
45
+
46
+ * Updates the Gemfile.lock
47
+ * Removes the old *.gemspec created in test cases
48
+ * copies your manuals to your docpath.
49
+ * runs the rake tasks before release: git:manifest, bundler:gemfile, update_gemfile_lock, remove_pre_gemspec, bundler_audit:run and copy_mirror.
50
+ * runs after release: send_email.
51
+ * Cleans up the pkg dir
52
+ * provides bundler_audit tasks
53
+
54
+ ## REQUIREMENTS:
55
+
56
+ * rake
57
+ * hoe
58
+ * bundler-audit
59
+
60
+ ## INSTALL:
61
+
62
+ The installation is very easy.
63
+
64
+ gem install hoe-manns
65
+
66
+ ## SYNOPSIS:
67
+
68
+ Use in your Rakefile:
69
+
70
+ Hoe.plugin :manns
71
+
72
+ Hoe.spec 'your project' do
73
+ ...
74
+ end
75
+
76
+ Also add hoe-manns to your requirements and recreate your Gemfile.
77
+
78
+ ## DEVELOPERS:
79
+
80
+ After checking out the source, run:
81
+
82
+ $ rake newb
83
+
84
+ This task will install any missing dependencies, run the tests/specs, and generate the RDoc.
85
+ Also you can read the MAINTENANCE.md and CONTRIBUTING.md for more information.
86
+
87
+ ## ISSUE TRACKING:
88
+
89
+ * Add ideas on: https://github.com/saigkill/hoe-manns/issues
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2013-2017 Sascha Manns <Sascha.Manns@mailbox.org>
1
+ # Copyright (C) 2013-2020 Sascha Manns <Sascha.Manns@outlook.de>
2
2
  #
3
3
  # This program is free software: you can redistribute it and/or modify
4
4
  # it under the terms of the GNU General Public License as published by
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2013-2017 Sascha Manns <Sascha.Manns@mailbox.org>
1
+ # Copyright (C) 2013-2020 Sascha Manns <Sascha.Manns@outlook.de>
2
2
  #
3
3
  # This program is free software: you can redistribute it and/or modify
4
4
  # it under the terms of the GNU General Public License as published by
@@ -22,8 +22,6 @@ require_relative 'manns-methods.rb'
22
22
  # Nested usage triggers error "hoe not a module"
23
23
  # rubocop:disable Metrics/ClassAndModuleChildren
24
24
  module Hoe::Manns
25
- # Version constant for HOE::Manns
26
- VERSION = '2.1.1'.freeze
27
25
 
28
26
  attr_accessor :remove_pre_gemspec
29
27
  attr_accessor :copy_master
@@ -0,0 +1,35 @@
1
+ # Copyright (C) 2015-2020 Sascha Manns <Sascha.Manns@outlook.de>
2
+ #
3
+ # This program is free software: you can redistribute it and/or modify
4
+ # it under the terms of the GNU General Public License as published by
5
+ # the Free Software Foundation, either version 3 of the License, or
6
+ # (at your option) any later version.
7
+ #
8
+ # This program is distributed in the hope that it will be useful,
9
+ # but WITHOUT ANY WARRANTY; without even the implied warranty of
10
+ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11
+ # GNU General Public License for more details.
12
+ #
13
+ # You should have received a copy of the GNU General Public License
14
+ # along with this program. If not, see <http://www.gnu.org/licenses/>.
15
+
16
+ # main module
17
+ module Hoe::Manns
18
+ # This module holds the latex_curriculum_vitae version information.
19
+
20
+ module Version
21
+ STRING = '2.1.7'.freeze
22
+ MSG = '%<version>s (using Parser %<parser_version>s, running on ' \
23
+ '%<ruby_engine>s %<ruby_version>s %<ruby_platform>s)'.freeze
24
+
25
+ def self.version(debug = false)
26
+ if debug
27
+ format(MSG, version: STRING, parser_version: Parser::VERSION,
28
+ ruby_engine: RUBY_ENGINE, ruby_version: RUBY_VERSION,
29
+ ruby_platform: RUBY_PLATFORM)
30
+ else
31
+ STRING
32
+ end
33
+ end
34
+ end
35
+ end
@@ -1,41 +1,37 @@
1
1
  require 'rspec'
2
2
  require File.join(File.dirname(__FILE__), '..', 'lib/hoe/manns')
3
3
  require File.join(File.dirname(__FILE__), '..', 'lib/hoe/manns-methods')
4
+ require File.join(File.dirname(__FILE__), '..', 'lib/hoe/version')
4
5
  require File.join(File.dirname(__FILE__), '..', 'spec/spec_helper')
5
6
  require 'fileutils'
6
7
 
7
- # TODO: Try to split this block into smaller once
8
- # rubocop:disable Metrics/BlockLength
9
- describe 'Hoe::Manns' do
10
- describe 'bundle_install' do
11
- it 'installs a bundle' do
12
- success = Hoe::MannsMethods.bundle_install
13
- expect(success)
14
- end
8
+ RSpec.describe Hoe::Manns do
9
+
10
+ it 'installs a bundle' do
11
+ success = Hoe::MannsMethods.bundle_install
12
+ expect(success)
15
13
  end
16
14
 
17
- describe 'update_gemfile_lock_method' do
18
- it 'creates a new Gemfile.lock' do
19
- FileUtils.rm(File.join(File.dirname(__FILE__), '..', 'Gemfile.lock'))
20
- Hoe::MannsMethods.update_gemfile_lock_method
21
- avail = File.exist?(File.join(File.dirname(__FILE__), '..',
22
- 'Gemfile.lock'))
23
- expect(avail)
24
- end
15
+ it 'creates a new Gemfile.lock' do
16
+ FileUtils.rm(File.join(File.dirname(__FILE__), '..', 'Gemfile.lock'))
17
+ Hoe::MannsMethods.update_gemfile_lock_method
18
+ avail = File.exist?(File.join(File.dirname(__FILE__), '..',
19
+ 'Gemfile.lock'))
20
+ expect(avail)
25
21
  end
26
22
 
27
- describe 'remove_pre_gemspec' do
28
- it 'removes the old gemspec' do
29
- FileUtils.touch('hoe-manns.gemspec')
30
- Hoe::MannsMethods.remove_pre_gemspec_method
31
- gemspec = Dir.glob('*.gemspec').empty?
32
- expect(gemspec)
33
- end
23
+ # it 'removes the old gemspec' do
24
+ # FileUtils.touch('hoe-manns.gemspec')
25
+ # Hoe::MannsMethods.remove_pre_gemspec_method
26
+ # gemspec = Dir.glob('*.gemspec').empty?
27
+ # expect(gemspec)
28
+ # end
29
+
30
+ it 'cleans the pkg' do
31
+ Hoe::MannsMethods.clean_pkg_method
34
32
  end
35
33
 
36
- describe 'clean_pkg' do
37
- it 'cleans the pkg' do
38
- Hoe::MannsMethods.clean_pkg_method
39
- end
34
+ it "has a version number" do
35
+ expect(Hoe::Manns::VERSION).not_to be nil
40
36
  end
41
37
  end
@@ -1,4 +1,21 @@
1
- require 'coveralls'
2
1
  require 'fileutils'
3
2
  require 'rake'
4
- Coveralls.wear!
3
+ require 'simplecov'
4
+ require 'simplecov-cobertura'
5
+
6
+ RSpec.configure do |config|
7
+
8
+ # Disable RSpec exposing methods globally on `Module` and `main`
9
+ config.disable_monkey_patching!
10
+
11
+ config.expect_with :rspec do |c|
12
+ c.syntax = :expect
13
+ end
14
+ end
15
+
16
+ SimpleCov.formatters = [
17
+ SimpleCov::Formatter::HTMLFormatter,
18
+ SimpleCov::Formatter::CoberturaFormatter
19
+ ]
20
+
21
+ SimpleCov.start
metadata CHANGED
@@ -1,141 +1,99 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hoe-manns
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.1.1
4
+ version: 2.1.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sascha Manns
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-11-06 00:00:00.000000000 Z
11
+ date: 2020-06-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
- name: rainbow
14
+ name: rdoc
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: '2.2'
19
+ version: '6.2'
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
- version: '2.2'
26
+ version: '6.2'
27
27
  - !ruby/object:Gem::Dependency
28
- name: bundler-audit
28
+ name: rake
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
31
  - - "~>"
32
32
  - !ruby/object:Gem::Version
33
- version: '0.6'
33
+ version: '13.0'
34
34
  type: :runtime
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
38
  - - "~>"
39
39
  - !ruby/object:Gem::Version
40
- version: '0.6'
41
- - !ruby/object:Gem::Dependency
42
- name: coveralls
43
- requirement: !ruby/object:Gem::Requirement
44
- requirements:
45
- - - "~>"
46
- - !ruby/object:Gem::Version
47
- version: '0.8'
48
- type: :development
49
- prerelease: false
50
- version_requirements: !ruby/object:Gem::Requirement
51
- requirements:
52
- - - "~>"
53
- - !ruby/object:Gem::Version
54
- version: '0.8'
55
- - !ruby/object:Gem::Dependency
56
- name: hoe-bundler
57
- requirement: !ruby/object:Gem::Requirement
58
- requirements:
59
- - - "~>"
60
- - !ruby/object:Gem::Version
61
- version: '1.3'
62
- type: :development
63
- prerelease: false
64
- version_requirements: !ruby/object:Gem::Requirement
65
- requirements:
66
- - - "~>"
67
- - !ruby/object:Gem::Version
68
- version: '1.3'
40
+ version: '13.0'
69
41
  - !ruby/object:Gem::Dependency
70
- name: hoe-doofus
71
- requirement: !ruby/object:Gem::Requirement
72
- requirements:
73
- - - "~>"
74
- - !ruby/object:Gem::Version
75
- version: '1.0'
76
- type: :development
77
- prerelease: false
78
- version_requirements: !ruby/object:Gem::Requirement
79
- requirements:
80
- - - "~>"
81
- - !ruby/object:Gem::Version
82
- version: '1.0'
83
- - !ruby/object:Gem::Dependency
84
- name: hoe-git
42
+ name: rainbow
85
43
  requirement: !ruby/object:Gem::Requirement
86
44
  requirements:
87
45
  - - "~>"
88
46
  - !ruby/object:Gem::Version
89
- version: '1.6'
90
- type: :development
47
+ version: '3.0'
48
+ type: :runtime
91
49
  prerelease: false
92
50
  version_requirements: !ruby/object:Gem::Requirement
93
51
  requirements:
94
52
  - - "~>"
95
53
  - !ruby/object:Gem::Version
96
- version: '1.6'
54
+ version: '3.0'
97
55
  - !ruby/object:Gem::Dependency
98
- name: hoe-manns
56
+ name: bundler
99
57
  requirement: !ruby/object:Gem::Requirement
100
58
  requirements:
101
59
  - - "~>"
102
60
  - !ruby/object:Gem::Version
103
- version: '1.6'
104
- type: :development
61
+ version: '2.1'
62
+ type: :runtime
105
63
  prerelease: false
106
64
  version_requirements: !ruby/object:Gem::Requirement
107
65
  requirements:
108
66
  - - "~>"
109
67
  - !ruby/object:Gem::Version
110
- version: '1.6'
68
+ version: '2.1'
111
69
  - !ruby/object:Gem::Dependency
112
- name: hoe-reek
70
+ name: bundler-audit
113
71
  requirement: !ruby/object:Gem::Requirement
114
72
  requirements:
115
73
  - - "~>"
116
74
  - !ruby/object:Gem::Version
117
- version: '1.1'
118
- type: :development
75
+ version: '0.7'
76
+ type: :runtime
119
77
  prerelease: false
120
78
  version_requirements: !ruby/object:Gem::Requirement
121
79
  requirements:
122
80
  - - "~>"
123
81
  - !ruby/object:Gem::Version
124
- version: '1.1'
82
+ version: '0.7'
125
83
  - !ruby/object:Gem::Dependency
126
- name: hoe-rubocop
84
+ name: hoe-bundler
127
85
  requirement: !ruby/object:Gem::Requirement
128
86
  requirements:
129
87
  - - "~>"
130
88
  - !ruby/object:Gem::Version
131
- version: '1.0'
132
- type: :development
89
+ version: '1.5'
90
+ type: :runtime
133
91
  prerelease: false
134
92
  version_requirements: !ruby/object:Gem::Requirement
135
93
  requirements:
136
94
  - - "~>"
137
95
  - !ruby/object:Gem::Version
138
- version: '1.0'
96
+ version: '1.5'
139
97
  - !ruby/object:Gem::Dependency
140
98
  name: hoe-rubygems
141
99
  requirement: !ruby/object:Gem::Requirement
@@ -143,27 +101,13 @@ dependencies:
143
101
  - - "~>"
144
102
  - !ruby/object:Gem::Version
145
103
  version: '1.0'
146
- type: :development
104
+ type: :runtime
147
105
  prerelease: false
148
106
  version_requirements: !ruby/object:Gem::Requirement
149
107
  requirements:
150
108
  - - "~>"
151
109
  - !ruby/object:Gem::Version
152
110
  version: '1.0'
153
- - !ruby/object:Gem::Dependency
154
- name: hoe-travis
155
- requirement: !ruby/object:Gem::Requirement
156
- requirements:
157
- - - "~>"
158
- - !ruby/object:Gem::Version
159
- version: '1.3'
160
- type: :development
161
- prerelease: false
162
- version_requirements: !ruby/object:Gem::Requirement
163
- requirements:
164
- - - "~>"
165
- - !ruby/object:Gem::Version
166
- version: '1.3'
167
111
  - !ruby/object:Gem::Dependency
168
112
  name: hoe-version
169
113
  requirement: !ruby/object:Gem::Requirement
@@ -171,7 +115,7 @@ dependencies:
171
115
  - - "~>"
172
116
  - !ruby/object:Gem::Version
173
117
  version: '1.2'
174
- type: :development
118
+ type: :runtime
175
119
  prerelease: false
176
120
  version_requirements: !ruby/object:Gem::Requirement
177
121
  requirements:
@@ -179,145 +123,94 @@ dependencies:
179
123
  - !ruby/object:Gem::Version
180
124
  version: '1.2'
181
125
  - !ruby/object:Gem::Dependency
182
- name: rake
183
- requirement: !ruby/object:Gem::Requirement
184
- requirements:
185
- - - "~>"
186
- - !ruby/object:Gem::Version
187
- version: '12.1'
188
- type: :development
189
- prerelease: false
190
- version_requirements: !ruby/object:Gem::Requirement
191
- requirements:
192
- - - "~>"
193
- - !ruby/object:Gem::Version
194
- version: '12.1'
195
- - !ruby/object:Gem::Dependency
196
- name: rdoc
197
- requirement: !ruby/object:Gem::Requirement
198
- requirements:
199
- - - "~>"
200
- - !ruby/object:Gem::Version
201
- version: '5.1'
202
- type: :development
203
- prerelease: false
204
- version_requirements: !ruby/object:Gem::Requirement
205
- requirements:
206
- - - "~>"
207
- - !ruby/object:Gem::Version
208
- version: '5.1'
209
- - !ruby/object:Gem::Dependency
210
- name: rubocop
126
+ name: rspec
211
127
  requirement: !ruby/object:Gem::Requirement
212
128
  requirements:
213
129
  - - "~>"
214
130
  - !ruby/object:Gem::Version
215
- version: '0.50'
131
+ version: '3.9'
216
132
  type: :development
217
133
  prerelease: false
218
134
  version_requirements: !ruby/object:Gem::Requirement
219
135
  requirements:
220
136
  - - "~>"
221
137
  - !ruby/object:Gem::Version
222
- version: '0.50'
138
+ version: '3.9'
223
139
  - !ruby/object:Gem::Dependency
224
- name: rspec
140
+ name: simplecov
225
141
  requirement: !ruby/object:Gem::Requirement
226
142
  requirements:
227
143
  - - "~>"
228
144
  - !ruby/object:Gem::Version
229
- version: '3.7'
145
+ version: '0.18'
230
146
  type: :development
231
147
  prerelease: false
232
148
  version_requirements: !ruby/object:Gem::Requirement
233
149
  requirements:
234
150
  - - "~>"
235
151
  - !ruby/object:Gem::Version
236
- version: '3.7'
152
+ version: '0.18'
237
153
  - !ruby/object:Gem::Dependency
238
- name: hoe
154
+ name: simplecov-cobertura
239
155
  requirement: !ruby/object:Gem::Requirement
240
156
  requirements:
241
157
  - - "~>"
242
158
  - !ruby/object:Gem::Version
243
- version: '3.16'
159
+ version: '1.3'
244
160
  type: :development
245
161
  prerelease: false
246
162
  version_requirements: !ruby/object:Gem::Requirement
247
163
  requirements:
248
164
  - - "~>"
249
165
  - !ruby/object:Gem::Version
250
- version: '3.16'
251
- description: |-
252
- hoe-manns is a small collection of my personal used rake tasks for using with hoe. Actually it includes that tasks:
253
-
254
- * bundler:gemfile_lock
255
- * bundle_audit:*
256
- * clean_pkg
257
- * copy_master
258
- * remove_pre_gemspec
259
- * run_before_release
260
- * run_after_release
261
-
262
- The History.rdoc contains a detailed description on what has changed. For most
263
- users the NEWS file might be a better place to look since it contains
264
- change summaries between the different versions.
265
-
266
- hoe-manns is released under the GPL3 License, see the file 'License.rdoc'
267
- for more information.
268
-
269
- The official web site is:
270
-
271
- https://launchpad.net/hoe-manns
272
- email:
273
- - Sascha.Manns@mailbox.org
166
+ version: '1.3'
167
+ description: " hoe-manns is a small collection of my personal used rake tasks for
168
+ using with hoe.\n"
169
+ email: Sascha.Manns@outlook.de
274
170
  executables: []
275
171
  extensions: []
276
172
  extra_rdoc_files:
277
- - History.rdoc
278
- - LICENSE.rdoc
279
- - Manifest.txt
280
- - README.rdoc
281
- - STATUS.rdoc
173
+ - CHANGELOG.md
174
+ - LICENSE.md
175
+ - MAINTENANCE.md
176
+ - README.md
282
177
  files:
283
- - Gemfile
284
- - Gemfile.lock
285
- - History.rdoc
286
- - LICENSE.rdoc
287
- - Manifest.txt
288
- - NEWS
289
- - README.rdoc
290
- - Rakefile
291
- - STATUS.rdoc
178
+ - CHANGELOG.md
179
+ - CONTRIBUTING.md
180
+ - LICENSE.md
181
+ - MAINTENANCE.md
182
+ - README.md
292
183
  - lib/hoe/manns-methods.rb
293
184
  - lib/hoe/manns.rb
185
+ - lib/hoe/version.rb
294
186
  - spec/manns_spec.rb
295
187
  - spec/spec_helper.rb
296
- homepage: https://launchpad.net/hoe-manns
188
+ homepage: https://github.com/saigkill/hoe-manns
297
189
  licenses:
298
190
  - GPL-3.0
299
- metadata: {}
300
- post_install_message: 'Please file bugreports on: https://bugs.launchpad.net/hoe-manns'
301
- rdoc_options:
302
- - "--main"
303
- - README.rdoc
191
+ metadata:
192
+ homepage_uri: https://github.com/saigkill/hoe-manns
193
+ changelog_uri: https://github.com/saigkill/hoe-manns/blob/master/CHANGELOG.md
194
+ source_code_uri: https://github.com/saigkill/hoe-manns
195
+ documentation_uri: https://github.com/saigkill/hoe-manns/wiki
196
+ bug_tracker_uri: https://github.com/saigkill/hoe-manns/issues
197
+ post_install_message: 'Please file bugreports on: https://github.com/saigkill/hoe-manns/issues'
198
+ rdoc_options: []
304
199
  require_paths:
305
200
  - lib
306
201
  required_ruby_version: !ruby/object:Gem::Requirement
307
202
  requirements:
308
203
  - - ">="
309
204
  - !ruby/object:Gem::Version
310
- version: 2.2.0
205
+ version: 2.3.0
311
206
  required_rubygems_version: !ruby/object:Gem::Requirement
312
207
  requirements:
313
208
  - - ">="
314
209
  - !ruby/object:Gem::Version
315
210
  version: '0'
316
211
  requirements: []
317
- rubyforge_project:
318
- rubygems_version: 2.6.13
212
+ rubygems_version: 3.0.3
319
213
  signing_key:
320
214
  specification_version: 4
321
- summary: hoe-manns is a small collection of my personal used rake tasks for using
322
- with hoe
215
+ summary: Collection of some personal used tasks
323
216
  test_files: []