hoe-highline 0.1.0 → 0.2.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.
- checksums.yaml +7 -0
- checksums.yaml.gz.sig +0 -0
- data.tar.gz.sig +1 -1
- data/ChangeLog +20 -2
- data/History.rdoc +9 -0
- data/README.rdoc +1 -1
- data/Rakefile +5 -5
- data/lib/hoe/highline.rb +4 -3
- metadata +41 -60
- metadata.gz.sig +0 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA1:
|
|
3
|
+
metadata.gz: fb8e3cddec754aa69dcc32cd4f7b525837650072
|
|
4
|
+
data.tar.gz: 2a4affe3018e30fa9f165697e8d753ec3db68c6a
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: d5026c9dba0574d41d9fd593fc3f15a05cf22d483ab726ab67398ddb6e135de4b3301b0168024f664ce39aebbeb4880db5728a1403d31e14101730bad2d4d984
|
|
7
|
+
data.tar.gz: 769fe4f48e28ab53964dc7bcff41a8d5cd285e567967792006a687e74dfde81035fe57a89e109fa37e31cc35e48f4429ff368746e234267ff75be60ac3856e9a
|
checksums.yaml.gz.sig
ADDED
|
Binary file
|
data.tar.gz.sig
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
���3i��P5��n,�!�s�36�!��Ҟ8c����8W�����7�Ћ��'7Y�:��l%q�K�A���0�b#�\�B�����9;�ߘ=
|
data/ChangeLog
CHANGED
|
@@ -1,8 +1,26 @@
|
|
|
1
|
+
2014-04-05 Michael Granger <ged@FaerieMUD.org>
|
|
2
|
+
|
|
3
|
+
* History.rdoc, lib/hoe/highline.rb:
|
|
4
|
+
Bump minor version, update history.
|
|
5
|
+
[96a833abcc47] [tip]
|
|
6
|
+
|
|
7
|
+
* README.rdoc, Rakefile, lib/hoe/highline.rb:
|
|
8
|
+
Use less-specific version for dev deps.
|
|
9
|
+
|
|
10
|
+
Also:
|
|
11
|
+
- Updated copyright date.
|
|
12
|
+
- Updated hoe and minimum Ruby versions.
|
|
13
|
+
[9c6bb85b6fa4]
|
|
14
|
+
|
|
15
|
+
* .rvm.gems, .rvmrc:
|
|
16
|
+
Update rvmrc and gemset
|
|
17
|
+
[26b1ea27350a]
|
|
18
|
+
|
|
1
19
|
2012-03-28 Michael Granger <ged@FaerieMUD.org>
|
|
2
20
|
|
|
3
21
|
* .hgtags:
|
|
4
22
|
Added tag v0.1.0 for changeset 525f05df1be4
|
|
5
|
-
[7ce9a9afc218]
|
|
23
|
+
[7ce9a9afc218]
|
|
6
24
|
|
|
7
25
|
* .hgsigs:
|
|
8
26
|
Added signature for changeset 1906bc4932fa
|
|
@@ -39,7 +57,7 @@
|
|
|
39
57
|
|
|
40
58
|
* Rakefile:
|
|
41
59
|
Added dependency on Hoe itself.
|
|
42
|
-
[09a1581eede1]
|
|
60
|
+
[09a1581eede1]
|
|
43
61
|
|
|
44
62
|
* .autotest:
|
|
45
63
|
Remove unused autotest config
|
data/History.rdoc
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
== v0.2.0 [2014-04-05] Michael Granger <ged@FaerieMUD.org>
|
|
2
|
+
|
|
3
|
+
- Use less-specific version for dev deps.
|
|
4
|
+
|
|
5
|
+
Also:
|
|
6
|
+
- Updated copyright date.
|
|
7
|
+
- Updated hoe and minimum Ruby versions.
|
|
8
|
+
|
|
9
|
+
|
|
1
10
|
== v0.1.0 [2012-03-28] Michael Granger <ged@FaerieMUD.org>
|
|
2
11
|
|
|
3
12
|
Updated for Hoe 3.
|
data/README.rdoc
CHANGED
data/Rakefile
CHANGED
|
@@ -12,16 +12,16 @@ Hoe.plugins.delete :rubyforge
|
|
|
12
12
|
|
|
13
13
|
hoespec = Hoe.spec 'hoe-highline' do
|
|
14
14
|
self.developer 'Michael Granger', 'ged@FaerieMUD.org'
|
|
15
|
+
self.license 'BSD'
|
|
15
16
|
|
|
16
17
|
self.readme_file = 'README.rdoc'
|
|
17
18
|
self.history_file = 'History.rdoc'
|
|
18
19
|
self.extra_rdoc_files = FileList[ '*.{rdoc,md}' ]
|
|
19
20
|
|
|
20
21
|
self.dependency 'highline', '~> 1.6'
|
|
21
|
-
self.dependency 'hoe', '~> 3.
|
|
22
|
+
self.dependency 'hoe', '~> 3.11'
|
|
22
23
|
|
|
23
|
-
self.
|
|
24
|
-
self.require_ruby_version( '>=1.8.7' )
|
|
24
|
+
self.require_ruby_version( '>=2.0.0' )
|
|
25
25
|
|
|
26
26
|
self.hg_sign_tags = true if self.respond_to?( :hg_sign_tags= )
|
|
27
27
|
self.rdoc_locations << "deveiate:/usr/local/www/public/code/#{remote_rdoc_dir}"
|
|
@@ -40,9 +40,9 @@ task :demo do
|
|
|
40
40
|
|
|
41
41
|
say "\n<%= color 'You can prompt for a yes-or-no answer with agree()', :subheader %>"
|
|
42
42
|
if agree "Know what I mean (nudge, nudge, wink, wink)? <%= color '[yn]', :values %> ", true
|
|
43
|
-
say "
|
|
43
|
+
say "\nWhat's it like?"
|
|
44
44
|
else
|
|
45
|
-
say "
|
|
45
|
+
say "\nAh, more's the pity."
|
|
46
46
|
end
|
|
47
47
|
|
|
48
48
|
say "\n<%= color 'You can ask for input with ask()', :subheader %>"
|
data/lib/hoe/highline.rb
CHANGED
|
@@ -9,10 +9,10 @@ module Hoe::Highline
|
|
|
9
9
|
extend Forwardable
|
|
10
10
|
|
|
11
11
|
# Library version constant
|
|
12
|
-
VERSION = '0.
|
|
12
|
+
VERSION = '0.2.0'
|
|
13
13
|
|
|
14
14
|
# Version-control revision constant
|
|
15
|
-
REVISION = %q$Revision:
|
|
15
|
+
REVISION = %q$Revision: 96a833abcc47 $
|
|
16
16
|
|
|
17
17
|
# HighLine color scheme
|
|
18
18
|
COLOR_SCHEME = {
|
|
@@ -34,7 +34,8 @@ module Hoe::Highline
|
|
|
34
34
|
HighLine.color_scheme = HighLine::ColorScheme.new( COLOR_SCHEME )
|
|
35
35
|
@highline = HighLine.new( $stdin, $stderr )
|
|
36
36
|
|
|
37
|
-
|
|
37
|
+
minor_version = VERSION[ /^\d+\.\d+/ ]
|
|
38
|
+
self.extra_dev_deps << ['hoe-highline', "~> #{minor_version}"] unless
|
|
38
39
|
self.name == 'hoe-highline'
|
|
39
40
|
end
|
|
40
41
|
|
metadata
CHANGED
|
@@ -1,47 +1,40 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: hoe-highline
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
5
|
-
prerelease:
|
|
4
|
+
version: 0.2.0
|
|
6
5
|
platform: ruby
|
|
7
6
|
authors:
|
|
8
7
|
- Michael Granger
|
|
9
8
|
autorequire:
|
|
10
9
|
bindir: bin
|
|
11
10
|
cert_chain:
|
|
12
|
-
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
RGVyQ0FhZ01WdURRClUwQkxtV0RGelBHR1dsUGVRQ3JZSENyK0FjSnorTlJu
|
|
36
|
-
YUhDS0xaZFNLai9SSHVUT3QrZ2JsUmV4OEZBaDhOZUEKY21saFhlNDZwWk5K
|
|
37
|
-
Z1dLYnhaYWg4NWpJang5NWhSOHZPSStOQU01aUg5a09xSzEzRHJ4YWNUS1Bo
|
|
38
|
-
cWo1UGp3RgotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==
|
|
39
|
-
date: 2012-03-29 00:00:00.000000000 Z
|
|
11
|
+
- |
|
|
12
|
+
-----BEGIN CERTIFICATE-----
|
|
13
|
+
MIIDbDCCAlSgAwIBAgIBATANBgkqhkiG9w0BAQUFADA+MQwwCgYDVQQDDANnZWQx
|
|
14
|
+
GTAXBgoJkiaJk/IsZAEZFglGYWVyaWVNVUQxEzARBgoJkiaJk/IsZAEZFgNvcmcw
|
|
15
|
+
HhcNMTQwMzE5MDQzNTI2WhcNMTUwMzE5MDQzNTI2WjA+MQwwCgYDVQQDDANnZWQx
|
|
16
|
+
GTAXBgoJkiaJk/IsZAEZFglGYWVyaWVNVUQxEzARBgoJkiaJk/IsZAEZFgNvcmcw
|
|
17
|
+
ggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDb92mkyYwuGBg1oRxt2tkH
|
|
18
|
+
+Uo3LAsaL/APBfSLzy8o3+B3AUHKCjMUaVeBoZdWtMHB75X3VQlvXfZMyBxj59Vo
|
|
19
|
+
cDthr3zdao4HnyrzAIQf7BO5Y8KBwVD+yyXCD/N65TTwqsQnO3ie7U5/9ut1rnNr
|
|
20
|
+
OkOzAscMwkfQxBkXDzjvAWa6UF4c5c9kR/T79iA21kDx9+bUMentU59aCJtUcbxa
|
|
21
|
+
7kcKJhPEYsk4OdxR9q2dphNMFDQsIdRO8rywX5FRHvcb+qnXC17RvxLHtOjysPtp
|
|
22
|
+
EWsYoZMxyCDJpUqbwoeiM+tAHoz2ABMv3Ahie3Qeb6+MZNAtMmaWfBx3dg2u+/WN
|
|
23
|
+
AgMBAAGjdTBzMAkGA1UdEwQCMAAwCwYDVR0PBAQDAgSwMB0GA1UdDgQWBBSZ0hCV
|
|
24
|
+
qoHr122fGKelqffzEQBhszAcBgNVHREEFTATgRFnZWRARmFlcmllTVVELm9yZzAc
|
|
25
|
+
BgNVHRIEFTATgRFnZWRARmFlcmllTVVELm9yZzANBgkqhkiG9w0BAQUFAAOCAQEA
|
|
26
|
+
TuL1Bzl6TBs1YEzEubFHb9XAPgehWzzUudjDKzTRd+uyZmxnomBqTCQjT5ucNRph
|
|
27
|
+
3jZ6bhLNooLQxTjIuHodeGcEMHZdt4Yi7SyPmw5Nry12z6wrDp+5aGps3HsE5WsQ
|
|
28
|
+
Zq2EuyEOc96g31uoIvjNdieKs+1kE+K+dJDjtw+wTH2i63P7r6N/NfPPXpxsFquo
|
|
29
|
+
wcYRRrHdR7GhdJeT+V8Q8Bi5bglCUGdx+8scMgkkePc98k9osQHypbACmzO+Bqkv
|
|
30
|
+
c7ZKPJcWBv0sm81+FCZXNACn2f9jfF8OQinxVs0O052KbGuEQaaiGIYeuuwQE2q6
|
|
31
|
+
ggcrPfcYeTwWlfZPu2LrBg==
|
|
32
|
+
-----END CERTIFICATE-----
|
|
33
|
+
date: 2014-04-05 00:00:00.000000000 Z
|
|
40
34
|
dependencies:
|
|
41
35
|
- !ruby/object:Gem::Dependency
|
|
42
36
|
name: highline
|
|
43
37
|
requirement: !ruby/object:Gem::Requirement
|
|
44
|
-
none: false
|
|
45
38
|
requirements:
|
|
46
39
|
- - ~>
|
|
47
40
|
- !ruby/object:Gem::Version
|
|
@@ -49,7 +42,6 @@ dependencies:
|
|
|
49
42
|
type: :runtime
|
|
50
43
|
prerelease: false
|
|
51
44
|
version_requirements: !ruby/object:Gem::Requirement
|
|
52
|
-
none: false
|
|
53
45
|
requirements:
|
|
54
46
|
- - ~>
|
|
55
47
|
- !ruby/object:Gem::Version
|
|
@@ -57,62 +49,52 @@ dependencies:
|
|
|
57
49
|
- !ruby/object:Gem::Dependency
|
|
58
50
|
name: hoe
|
|
59
51
|
requirement: !ruby/object:Gem::Requirement
|
|
60
|
-
none: false
|
|
61
52
|
requirements:
|
|
62
53
|
- - ~>
|
|
63
54
|
- !ruby/object:Gem::Version
|
|
64
|
-
version: '3.
|
|
55
|
+
version: '3.11'
|
|
65
56
|
type: :runtime
|
|
66
57
|
prerelease: false
|
|
67
58
|
version_requirements: !ruby/object:Gem::Requirement
|
|
68
|
-
none: false
|
|
69
59
|
requirements:
|
|
70
60
|
- - ~>
|
|
71
61
|
- !ruby/object:Gem::Version
|
|
72
|
-
version: '3.
|
|
62
|
+
version: '3.11'
|
|
73
63
|
- !ruby/object:Gem::Dependency
|
|
74
64
|
name: hoe-mercurial
|
|
75
65
|
requirement: !ruby/object:Gem::Requirement
|
|
76
|
-
none: false
|
|
77
66
|
requirements:
|
|
78
67
|
- - ~>
|
|
79
68
|
- !ruby/object:Gem::Version
|
|
80
|
-
version: 1.
|
|
69
|
+
version: '1.4'
|
|
81
70
|
type: :development
|
|
82
71
|
prerelease: false
|
|
83
72
|
version_requirements: !ruby/object:Gem::Requirement
|
|
84
|
-
none: false
|
|
85
73
|
requirements:
|
|
86
74
|
- - ~>
|
|
87
75
|
- !ruby/object:Gem::Version
|
|
88
|
-
version: 1.
|
|
76
|
+
version: '1.4'
|
|
89
77
|
- !ruby/object:Gem::Dependency
|
|
90
78
|
name: rdoc
|
|
91
79
|
requirement: !ruby/object:Gem::Requirement
|
|
92
|
-
none: false
|
|
93
80
|
requirements:
|
|
94
81
|
- - ~>
|
|
95
82
|
- !ruby/object:Gem::Version
|
|
96
|
-
version: '
|
|
83
|
+
version: '4.0'
|
|
97
84
|
type: :development
|
|
98
85
|
prerelease: false
|
|
99
86
|
version_requirements: !ruby/object:Gem::Requirement
|
|
100
|
-
none: false
|
|
101
87
|
requirements:
|
|
102
88
|
- - ~>
|
|
103
89
|
- !ruby/object:Gem::Version
|
|
104
|
-
version: '
|
|
105
|
-
description:
|
|
106
|
-
|
|
90
|
+
version: '4.0'
|
|
91
|
+
description: |-
|
|
92
|
+
A Hoe plugin for building interactive Rake tasks.
|
|
107
93
|
|
|
108
94
|
Hoe-highline, as you might have guessed from the name, adds prompting and
|
|
109
|
-
|
|
110
|
-
displaying functions from the HighLine[http://highline.rubyforge.org/] gem to your
|
|
111
|
-
Rake
|
|
112
|
-
|
|
95
|
+
displaying functions from the HighLine[http://highline.rubyforge.org/] gem to your Rake
|
|
113
96
|
environment, allowing you to ask questions, prompt for passwords, build menus,
|
|
114
|
-
|
|
115
|
-
and other fun stuff.'
|
|
97
|
+
and other fun stuff.
|
|
116
98
|
email:
|
|
117
99
|
- ged@FaerieMUD.org
|
|
118
100
|
executables: []
|
|
@@ -131,6 +113,7 @@ files:
|
|
|
131
113
|
homepage: https://bitbucket.org/ged/hoe-highline
|
|
132
114
|
licenses:
|
|
133
115
|
- BSD
|
|
116
|
+
metadata: {}
|
|
134
117
|
post_install_message:
|
|
135
118
|
rdoc_options:
|
|
136
119
|
- --main
|
|
@@ -138,21 +121,19 @@ rdoc_options:
|
|
|
138
121
|
require_paths:
|
|
139
122
|
- lib
|
|
140
123
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
141
|
-
none: false
|
|
142
124
|
requirements:
|
|
143
|
-
- -
|
|
125
|
+
- - '>='
|
|
144
126
|
- !ruby/object:Gem::Version
|
|
145
|
-
version:
|
|
127
|
+
version: 2.0.0
|
|
146
128
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
147
|
-
none: false
|
|
148
129
|
requirements:
|
|
149
|
-
- -
|
|
130
|
+
- - '>='
|
|
150
131
|
- !ruby/object:Gem::Version
|
|
151
132
|
version: '0'
|
|
152
133
|
requirements: []
|
|
153
|
-
rubyforge_project:
|
|
154
|
-
rubygems_version:
|
|
134
|
+
rubyforge_project:
|
|
135
|
+
rubygems_version: 2.2.2
|
|
155
136
|
signing_key:
|
|
156
|
-
specification_version:
|
|
137
|
+
specification_version: 4
|
|
157
138
|
summary: A Hoe plugin for building interactive Rake tasks
|
|
158
139
|
test_files: []
|
metadata.gz.sig
CHANGED
|
Binary file
|