rake-deveiate 0.16.1 → 0.17.3
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.
- checksums.yaml +4 -4
- checksums.yaml.gz.sig +0 -0
- data.tar.gz.sig +0 -0
- data/History.md +36 -0
- data/lib/rake/deveiate.rb +1 -1
- data/lib/rake/deveiate/extensions.rb +7 -4
- data/lib/rake/deveiate/git-refinements.rb +28 -0
- metadata +18 -23
- metadata.gz.sig +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ffcadd7d491788663acd5eb8eb88ae4dc764c38a374ecc052d2e3d582b873f30
|
4
|
+
data.tar.gz: 3da5b4eba4c9b466e527cdf1702cce67154f2f3b8a9b23914016ab94dcd03e92
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8228353d4f8e9f6a71d0f278e7d98f90505894c968148346a94e4cc9f2308c705f97fde8ca8b90b9f0593e51c52554ba1fd45fad55e72ce018bf96f5b98c445b
|
7
|
+
data.tar.gz: 7bc4e5c5fa9ccd8f9a8300e6e578e59a04e6ccc1433a1fa61b422c5b6defe0f097669abbc3b34ada84f9ddb33890baacacd19c647ba7e89bbffebb1be61e6930
|
checksums.yaml.gz.sig
CHANGED
Binary file
|
data.tar.gz.sig
CHANGED
Binary file
|
data/History.md
CHANGED
@@ -1,6 +1,42 @@
|
|
1
1
|
# Release History for rake-deveiate
|
2
2
|
|
3
3
|
---
|
4
|
+
|
5
|
+
## v0.17.3 [2021-01-01] Michael Granger <ged@FaerieMUD.org>
|
6
|
+
|
7
|
+
Bugfixes:
|
8
|
+
|
9
|
+
- Fix maintainer task of extensions lib.
|
10
|
+
|
11
|
+
|
12
|
+
## v0.17.2 [2020-12-29] Michael Granger <ged@FaerieMUD.org>
|
13
|
+
|
14
|
+
Bugfixes:
|
15
|
+
|
16
|
+
- Fix multi-directory extension directory support.
|
17
|
+
|
18
|
+
|
19
|
+
## v0.17.1 [2020-12-28] Michael Granger <ged@FaerieMUD.org>
|
20
|
+
|
21
|
+
Bugfixes:
|
22
|
+
|
23
|
+
- Update hglib dependency
|
24
|
+
|
25
|
+
|
26
|
+
## v0.17.0 [2020-12-28] Michael Granger <ged@FaerieMUD.org>
|
27
|
+
|
28
|
+
Improvements:
|
29
|
+
|
30
|
+
- Allow multi-level extension directory structure.
|
31
|
+
|
32
|
+
|
33
|
+
## v0.16.2 [2020-11-23] Michael Granger <ged@FaerieMUD.org>
|
34
|
+
|
35
|
+
Bugfixes:
|
36
|
+
|
37
|
+
- Include another missing file.
|
38
|
+
|
39
|
+
|
4
40
|
## v0.16.1 [2020-11-23] Michael Granger <ged@FaerieMUD.org>
|
5
41
|
|
6
42
|
Bugfixes:
|
data/lib/rake/deveiate.rb
CHANGED
@@ -35,7 +35,7 @@ class Rake::DevEiate < Rake::TaskLib
|
|
35
35
|
VERSION_PATTERN = /VERSION\s*=\s*(?<quote>['"])(?<version>\d+(\.\d+){2}.*)\k<quote>/
|
36
36
|
|
37
37
|
# The version of this library
|
38
|
-
VERSION = '0.
|
38
|
+
VERSION = '0.17.3'
|
39
39
|
|
40
40
|
# The server to release to by default
|
41
41
|
DEFAULT_GEMSERVER = 'https://rubygems.org/'
|
@@ -74,13 +74,14 @@ module Rake::DevEiate::Extension
|
|
74
74
|
|
75
75
|
require 'rake/extensiontask'
|
76
76
|
self.extensions.each do |extconf|
|
77
|
-
Rake::ExtensionTask.new( extconf.pathmap('
|
77
|
+
Rake::ExtensionTask.new( extconf.pathmap('%{ext/,}d') )
|
78
78
|
end
|
79
79
|
|
80
80
|
task :spec => :compile
|
81
81
|
|
82
82
|
task :maint do
|
83
|
-
ENV['V'] = 1
|
83
|
+
ENV['V'] = '1'
|
84
|
+
ENV['MAINTAINER_MODE'] = 'yes'
|
84
85
|
end
|
85
86
|
end
|
86
87
|
|
@@ -98,14 +99,16 @@ module Rake::DevEiate::Extension
|
|
98
99
|
self.prompt.say( "Extension config scripts:", color: :bright_green )
|
99
100
|
|
100
101
|
if self.extensions.empty?
|
101
|
-
self.prompt.say
|
102
|
+
self.prompt.say "None."
|
102
103
|
else
|
103
|
-
self.extensions.each do |path|
|
104
|
+
self.extensions.uniq.each do |path|
|
104
105
|
self.prompt.say "- %s" % [ path ]
|
105
106
|
end
|
106
107
|
end
|
107
108
|
|
108
109
|
if self.has_rakecompiler_dependency?
|
110
|
+
self.prompt.say "\n"
|
111
|
+
self.prompt.say "✔ has rake-compiler dependency"
|
109
112
|
end
|
110
113
|
|
111
114
|
self.prompt.say( "\n" )
|
@@ -0,0 +1,28 @@
|
|
1
|
+
# -*- ruby -*-
|
2
|
+
# frozen_string_literal: true
|
3
|
+
|
4
|
+
require 'git'
|
5
|
+
|
6
|
+
require 'rake/deveiate' unless defined?( Rake::DevEiate )
|
7
|
+
|
8
|
+
|
9
|
+
# Monkeypatches to allow command options the `git` gem doesn't allow.
|
10
|
+
#
|
11
|
+
# Refs:
|
12
|
+
# - https://github.com/ruby-git/ruby-git/issues/394
|
13
|
+
module Rake::DevEiate::GitRefinements
|
14
|
+
|
15
|
+
refine Git::Base do
|
16
|
+
def cmd( cmd )
|
17
|
+
self.lib.cmd( cmd )
|
18
|
+
end
|
19
|
+
end
|
20
|
+
|
21
|
+
refine Git::Lib do
|
22
|
+
def cmd( cmd )
|
23
|
+
command( cmd )
|
24
|
+
end
|
25
|
+
end
|
26
|
+
|
27
|
+
end # module GitRefinements
|
28
|
+
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rake-deveiate
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.17.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Michael Granger
|
@@ -10,9 +10,9 @@ bindir: bin
|
|
10
10
|
cert_chain:
|
11
11
|
- |
|
12
12
|
-----BEGIN CERTIFICATE-----
|
13
|
-
MIID+
|
14
|
-
|
15
|
-
|
13
|
+
MIID+DCCAmCgAwIBAgIBAzANBgkqhkiG9w0BAQsFADAiMSAwHgYDVQQDDBdnZWQv
|
14
|
+
REM9RmFlcmllTVVEL0RDPW9yZzAeFw0yMDEyMjQyMDU1MjlaFw0yMTEyMjQyMDU1
|
15
|
+
MjlaMCIxIDAeBgNVBAMMF2dlZC9EQz1GYWVyaWVNVUQvREM9b3JnMIIBojANBgkq
|
16
16
|
hkiG9w0BAQEFAAOCAY8AMIIBigKCAYEAvyVhkRzvlEs0fe7145BYLfN6njX9ih5H
|
17
17
|
L60U0p0euIurpv84op9CNKF9tx+1WKwyQvQP7qFGuZxkSUuWcP/sFhDXL1lWUuIl
|
18
18
|
M4uHbGCRmOshDrF4dgnBeOvkHr1fIhPlJm5FO+Vew8tSQmlDsosxLUx+VB7DrVFO
|
@@ -23,17 +23,17 @@ cert_chain:
|
|
23
23
|
ozilJg4aar2okb/RA6VS87o+d7g6LpDDMMQjH4G9OPnJENLdhu8KnPw/ivSVvQw7
|
24
24
|
N2I4L/ZOIe2DIVuYH7aLHfjZDQv/mNgpAgMBAAGjOTA3MAkGA1UdEwQCMAAwCwYD
|
25
25
|
VR0PBAQDAgSwMB0GA1UdDgQWBBRyjf55EbrHagiRLqt5YAd3yb8k4DANBgkqhkiG
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
26
|
+
9w0BAQsFAAOCAYEAMYegZanJi8zq7QKPT7wqXefX4C88I5JWeBHR3PvvWK0CwyMV
|
27
|
+
peyiu5I13w/lYX+HUZjE4qsSpJMJFXWl4WZCOo+AMprOcf0PxfuJpxCej5D4tavf
|
28
|
+
vRfhahSw7XJrcZih/3J+/UgoH7R05MJ+8LTcy3HGrB3a0vTafjm8OY7Xpa0LJDoN
|
29
|
+
JDqxK321VIHyTibbKeA1hWSE6ljlQDvFbTqiCj3Ulp1jTv3TOlvRl8fqcfhxUJI0
|
30
|
+
+5Q82jJODjEN+GaWs0V+NlrbU94cXwS2PH5dXogftB5YYA5Ex8A0ikZ73xns4Hdo
|
31
|
+
XxdLdd92F5ovxA23j/rKe/IDwqr6FpDkU3nPXH/Qp0TVGv9zZnVJc/Z6ChkuWj8z
|
32
|
+
pW7JAyyiiHZgKKDReDrA2LA7Zs3o/7KA6UtUH0FHf8LYhcK+pfHk6RtjRe65ffw+
|
33
|
+
MCh97sQ/Z/MOusb5+QddBmB+k8EicXyGNl4b5L4XpL7fIQu+Y96TB3JEJlShxFD9
|
34
|
+
k9FjI4d9EP54gS/4
|
35
35
|
-----END CERTIFICATE-----
|
36
|
-
date:
|
36
|
+
date: 2021-01-01 00:00:00.000000000 Z
|
37
37
|
dependencies:
|
38
38
|
- !ruby/object:Gem::Dependency
|
39
39
|
name: rake
|
@@ -97,20 +97,14 @@ dependencies:
|
|
97
97
|
requirements:
|
98
98
|
- - "~>"
|
99
99
|
- !ruby/object:Gem::Version
|
100
|
-
version: '0.
|
101
|
-
- - ">="
|
102
|
-
- !ruby/object:Gem::Version
|
103
|
-
version: 0.10.1
|
100
|
+
version: '0.11'
|
104
101
|
type: :runtime
|
105
102
|
prerelease: false
|
106
103
|
version_requirements: !ruby/object:Gem::Requirement
|
107
104
|
requirements:
|
108
105
|
- - "~>"
|
109
106
|
- !ruby/object:Gem::Version
|
110
|
-
version: '0.
|
111
|
-
- - ">="
|
112
|
-
- !ruby/object:Gem::Version
|
113
|
-
version: 0.10.1
|
107
|
+
version: '0.11'
|
114
108
|
- !ruby/object:Gem::Dependency
|
115
109
|
name: tty-prompt
|
116
110
|
requirement: !ruby/object:Gem::Requirement
|
@@ -219,6 +213,7 @@ files:
|
|
219
213
|
- lib/rake/deveiate/gem_dep_finder.rb
|
220
214
|
- lib/rake/deveiate/gemspec.rb
|
221
215
|
- lib/rake/deveiate/generate.rb
|
216
|
+
- lib/rake/deveiate/git-refinements.rb
|
222
217
|
- lib/rake/deveiate/git.rb
|
223
218
|
- lib/rake/deveiate/hg.rb
|
224
219
|
- lib/rake/deveiate/packaging.rb
|
@@ -248,7 +243,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
248
243
|
- !ruby/object:Gem::Version
|
249
244
|
version: '0'
|
250
245
|
requirements: []
|
251
|
-
rubygems_version: 3.
|
246
|
+
rubygems_version: 3.2.3
|
252
247
|
signing_key:
|
253
248
|
specification_version: 4
|
254
249
|
summary: This is a collection of Rake tasks I use for development.
|
metadata.gz.sig
CHANGED
Binary file
|