sysexits 1.1.0 → 1.2.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 90e2a532b00661937b3ea2a8e64eab5fb23aa6fb
4
+ data.tar.gz: a28624e04fef79b4067a4f86388c2fb3bf65dc30
5
+ SHA512:
6
+ metadata.gz: a565cc4130447651acec8fc10606ece3c2efffb3bf8b39b0489926bbda6dc664f5202c4981a6dfe2cdf5c3c4873d7c0ec29e45bf5dc97c72e0e3d5719712dd19
7
+ data.tar.gz: 12296344dca09c520d2119996941d46a28f62e31924bd4f7cc7f1431cceaa923db2dba45be69ef53b259e169ce60675a938e4aa9f68c25748602e01809c7f52a
Binary file
data.tar.gz.sig CHANGED
Binary file
data/ChangeLog CHANGED
@@ -1,12 +1,51 @@
1
+ 2014-08-08 Michael Granger <ged@FaerieMUD.org>
2
+
3
+ * Rakefile:
4
+ Remove the post-install message. 😢
5
+ [6395823d3d92] [tip]
6
+
7
+ * History.md, README.md, Rakefile, project.yml:
8
+ Merged with 9696db8c5bf9
9
+ [1cbfa89d296d]
10
+
11
+ 2012-09-18 Michael Granger <ged@FaerieMUD.org>
12
+
13
+ * .hgtags:
14
+ Added tag v1.1.0 for changeset 2be7ed2d3669
15
+ [bbe65e080037]
16
+
17
+ * .hgsigs:
18
+ Added signature for changeset 2b88de1e7380
19
+ [2be7ed2d3669] [v1.1.0]
20
+
21
+ * .hgtags:
22
+ Added tag semver for changeset d0f0419db01c
23
+ [2b88de1e7380]
24
+
25
+ * .hgignore, .rvm.gems, .rvmrc, History.md, History.rdoc,
26
+ Manifest.txt, README.md, README.rdoc, Rakefile, lib/sysexits.rb,
27
+ project.yml:
28
+ Update docs, add exit!.
29
+ [003b25c84462]
30
+
31
+ 2014-08-08 Michael Granger <ged@FaerieMUD.org>
32
+
33
+ * Rakefile:
34
+ Critical bugfix.
35
+
36
+ Thanks to Matt Greensmith for spotting this! I'm clearly not ready
37
+ to Exit Like a Pro™ yet.
38
+ [9696db8c5bf9]
39
+
1
40
  2010-12-22 Michael Granger <ged@FaerieMUD.org>
2
41
 
3
42
  * .hgtags:
4
43
  Added tag v1.0.2 for changeset d0f0419db01c
5
- [f4502cd6a855] [tip]
44
+ [f4502cd6a855]
6
45
 
7
46
  * .hgsigs:
8
47
  Added signature for changeset 2baa1e0251b7
9
- [d0f0419db01c] [v1.0.2]
48
+ [d0f0419db01c] [semver, v1.0.2]
10
49
 
11
50
  * README.md:
12
51
  Point to the Bitbucket page for project stuff.
@@ -1,3 +1,8 @@
1
+ == v1.2.0 [2014-08-08] Michael Granger <ged@FaerieMUD.org>
2
+
3
+ Remove the post-install message. 😢
4
+
5
+
1
6
  == v1.1.0 [2012-09-18] Michael Granger <ged@FaerieMUD.org>
2
7
 
3
8
  Updated docs, added Sysexits::exit!, removed YARD cruft (ick!).
data/Rakefile CHANGED
@@ -21,21 +21,6 @@ hoespec = Hoe.spec 'sysexits' do
21
21
  self.dependency 'simplecov', '~> 0.6', :developer
22
22
 
23
23
  self.spec_extras[:licenses] = ["BSD"]
24
- self.spec_extras[:post_install_message] = %{
25
- Get ready to be amazed. I'll bet you can't wait to Exit Like
26
- a Pro®!
27
-
28
- Well, if you want, you can do it right from the command-line! Check
29
- this out:
30
-
31
- ruby -rubygems -e \\
32
- 'require "sysexits"; include Sysexits; exit :software_error' \\
33
- || echo $?
34
-
35
- I know, I know: so awesome right? Okay, I'll let you bask in the
36
- warn glow of superior systems-programming now.
37
-
38
- }.gsub( /^\t+/m, '' )
39
24
 
40
25
  self.require_ruby_version( '>=1.8.7' )
41
26
  self.hg_sign_tags = true if self.respond_to?( :hg_sign_tags )
@@ -71,10 +71,10 @@
71
71
  module Sysexits
72
72
 
73
73
  # The library version
74
- VERSION = '1.1.0'
74
+ VERSION = '1.2.0'
75
75
 
76
76
  # The library's revision id
77
- REVISION = %q$Revision: 003b25c84462 $
77
+ REVISION = %q$Revision: 8d7b699637cf $
78
78
 
79
79
 
80
80
  #
@@ -100,11 +100,11 @@ module Sysexits
100
100
  # like "No message" to a mailer (if it cared to catch it).
101
101
  EX_NOINPUT = 66
102
102
 
103
- # <b>:nouser,</b> <b>:no_such_user</b> - The user specified did not exist.
103
+ # <b>:nouser,</b> <b>:no_such_user</b> - The user specified did not exist.
104
104
  # This might be used for mail addresses or remote logins.
105
105
  EX_NOUSER = 67
106
106
 
107
- # <b>:nohost,</b> <b>:no_such_host</b> - The host specified did not exist.
107
+ # <b>:nohost,</b> <b>:no_such_host</b> - The host specified did not exist.
108
108
  # This is used in mail addresses or network requests.
109
109
  EX_NOHOST = 68
110
110
 
metadata CHANGED
@@ -1,178 +1,182 @@
1
- --- !ruby/object:Gem::Specification
1
+ --- !ruby/object:Gem::Specification
2
2
  name: sysexits
3
- version: !ruby/object:Gem::Version
4
- hash: 19
5
- prerelease:
6
- segments:
7
- - 1
8
- - 1
9
- - 0
10
- version: 1.1.0
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.2.0
11
5
  platform: ruby
12
- authors:
6
+ authors:
13
7
  - Michael Granger
14
8
  autorequire:
15
9
  bindir: bin
16
- cert_chain:
10
+ cert_chain:
17
11
  - |
18
12
  -----BEGIN CERTIFICATE-----
19
- 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
- FzAVBgoJkiaJk/IsZAEZFgdfYWVyaWVfMRMwEQYKCZImiZPyLGQBGRYDb3JnMB4X
21
- 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
- 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
- DQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALy//BFxC1f/cPSnwtJBWoFiFrir
24
- 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
- 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
- KGue/BFb67KflqyApPmPeb3Vdd9clspzqeFqp7cUBMEpFS6LWxy4Gk+qvFFJBJLB
27
- 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
- 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
- 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
- +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
- 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
- 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
- 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
- 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
- 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
31
+ ggcrPfcYeTwWlfZPu2LrBg==
36
32
  -----END CERTIFICATE-----
37
-
38
- date: 2012-09-18 00:00:00 Z
39
- dependencies:
40
- - !ruby/object:Gem::Dependency
33
+ date: 2014-08-08 00:00:00.000000000 Z
34
+ dependencies:
35
+ - !ruby/object:Gem::Dependency
41
36
  name: hoe-mercurial
42
- prerelease: false
43
- requirement: &id001 !ruby/object:Gem::Requirement
44
- none: false
45
- requirements:
46
- - - ~>
47
- - !ruby/object:Gem::Version
48
- hash: 7
49
- segments:
50
- - 1
51
- - 4
52
- - 0
37
+ requirement: !ruby/object:Gem::Requirement
38
+ requirements:
39
+ - - "~>"
40
+ - !ruby/object:Gem::Version
53
41
  version: 1.4.0
54
42
  type: :development
55
- version_requirements: *id001
56
- - !ruby/object:Gem::Dependency
57
- name: hoe-highline
58
43
  prerelease: false
59
- requirement: &id002 !ruby/object:Gem::Requirement
60
- none: false
61
- requirements:
62
- - - ~>
63
- - !ruby/object:Gem::Version
64
- hash: 29
65
- segments:
66
- - 0
67
- - 0
68
- - 1
69
- version: 0.0.1
44
+ version_requirements: !ruby/object:Gem::Requirement
45
+ requirements:
46
+ - - "~>"
47
+ - !ruby/object:Gem::Version
48
+ version: 1.4.0
49
+ - !ruby/object:Gem::Dependency
50
+ name: hoe-highline
51
+ requirement: !ruby/object:Gem::Requirement
52
+ requirements:
53
+ - - "~>"
54
+ - !ruby/object:Gem::Version
55
+ version: 0.1.0
70
56
  type: :development
71
- version_requirements: *id002
72
- - !ruby/object:Gem::Dependency
73
- name: rdoc
74
57
  prerelease: false
75
- requirement: &id003 !ruby/object:Gem::Requirement
76
- none: false
77
- requirements:
78
- - - ~>
79
- - !ruby/object:Gem::Version
80
- hash: 19
81
- segments:
82
- - 3
83
- - 10
84
- version: "3.10"
58
+ version_requirements: !ruby/object:Gem::Requirement
59
+ requirements:
60
+ - - "~>"
61
+ - !ruby/object:Gem::Version
62
+ version: 0.1.0
63
+ - !ruby/object:Gem::Dependency
64
+ name: rdoc
65
+ requirement: !ruby/object:Gem::Requirement
66
+ requirements:
67
+ - - "~>"
68
+ - !ruby/object:Gem::Version
69
+ version: '4.0'
85
70
  type: :development
86
- version_requirements: *id003
87
- - !ruby/object:Gem::Dependency
88
- name: rspec
89
71
  prerelease: false
90
- requirement: &id004 !ruby/object:Gem::Requirement
91
- none: false
92
- requirements:
93
- - - ~>
94
- - !ruby/object:Gem::Version
95
- hash: 21
96
- segments:
97
- - 2
98
- - 11
99
- version: "2.11"
72
+ version_requirements: !ruby/object:Gem::Requirement
73
+ requirements:
74
+ - - "~>"
75
+ - !ruby/object:Gem::Version
76
+ version: '4.0'
77
+ - !ruby/object:Gem::Dependency
78
+ name: rspec
79
+ requirement: !ruby/object:Gem::Requirement
80
+ requirements:
81
+ - - "~>"
82
+ - !ruby/object:Gem::Version
83
+ version: '2.11'
100
84
  type: :development
101
- version_requirements: *id004
102
- - !ruby/object:Gem::Dependency
103
- name: simplecov
104
85
  prerelease: false
105
- requirement: &id005 !ruby/object:Gem::Requirement
106
- none: false
107
- requirements:
108
- - - ~>
109
- - !ruby/object:Gem::Version
110
- hash: 7
111
- segments:
112
- - 0
113
- - 6
114
- version: "0.6"
86
+ version_requirements: !ruby/object:Gem::Requirement
87
+ requirements:
88
+ - - "~>"
89
+ - !ruby/object:Gem::Version
90
+ version: '2.11'
91
+ - !ruby/object:Gem::Dependency
92
+ name: simplecov
93
+ requirement: !ruby/object:Gem::Requirement
94
+ requirements:
95
+ - - "~>"
96
+ - !ruby/object:Gem::Version
97
+ version: '0.6'
115
98
  type: :development
116
- version_requirements: *id005
117
- - !ruby/object:Gem::Dependency
118
- name: hoe
119
99
  prerelease: false
120
- requirement: &id006 !ruby/object:Gem::Requirement
121
- none: false
122
- requirements:
123
- - - ~>
124
- - !ruby/object:Gem::Version
125
- hash: 7
126
- segments:
127
- - 3
128
- - 0
129
- version: "3.0"
100
+ version_requirements: !ruby/object:Gem::Requirement
101
+ requirements:
102
+ - - "~>"
103
+ - !ruby/object:Gem::Version
104
+ version: '0.6'
105
+ - !ruby/object:Gem::Dependency
106
+ name: hoe
107
+ requirement: !ruby/object:Gem::Requirement
108
+ requirements:
109
+ - - "~>"
110
+ - !ruby/object:Gem::Version
111
+ version: '3.9'
130
112
  type: :development
131
- version_requirements: *id006
132
- description: "Have you ever wanted to call <code>exit()</code> with an error condition, but\n\
133
- weren't sure what exit status to use? No? Maybe it's just me, then.\n\n\
134
- Anyway, I was reading manpages late one evening before retiring to bed in my\n\
135
- palatial estate in rural Oregon, and I stumbled across\n\
136
- <code>sysexits(3)</code>. Much to my chagrin, I couldn't find a +sysexits+ for\n\
137
- Ruby! Well, for the other 2 people that actually care about\n\
138
- <code>style(9)</code> as it applies to Ruby code, now there is one!\n\n\
139
- Sysexits is a *completely* *awesome* collection of human-readable constants for\n\
140
- the standard (BSDish) exit codes, used as arguments to +exit+ to\n\
141
- indicate a specific error condition to the parent process.\n\n\
142
- It's so fantastically fabulous that you'll want to fork it right away to avoid\n\
143
- being thought of as that guy that's still using Webrick for his blog. I mean,\n\
144
- <code>exit(1)</code> is so pass\xC3\xA9! This is like the 14-point font of Systems\n\
145
- Programming.\n\n\
146
- Like the C header file from which this was derived (I mean forked, naturally),\n\
147
- error numbers begin at <code>Sysexits::EX__BASE</code> (which is way more cool\n\
148
- than plain old +64+) to reduce the possibility of clashing with other exit\n\
149
- statuses that other programs may already return.\n\n\
150
- The codes are available in two forms: as constants which can be imported into\n\
151
- your own namespace via <code>include Sysexits</code>, or as\n\
152
- <code>Sysexits::STATUS_CODES</code>, a Hash keyed by Symbols derived from the\n\
153
- constant names.\n\n\
154
- Allow me to demonstrate. First, the old way:\n\n exit( 69 )\n\n\
155
- Whaaa...? Is that a euphemism? What's going on? See how unattractive and...\n\
156
- well, 1970 that is? We're not changing vaccuum tubes here, people, we're\n\
157
- <em>building a totally-awesome future in the Cloud\xE2\x84\xA2!</em>\n\n include Sysexits\n exit EX_UNAVAILABLE\n\n\
158
- Okay, at least this is readable to people who have used <code>fork()</code>\n\
159
- more than twice, but you could do so much better!\n\n include Sysexits\n exit :unavailable\n\n\
160
- Holy Toledo! It's like we're writing Ruby, but our own made-up dialect in\n\
161
- which variable++ is possible! Well, okay, it's not quite that cool. But it\n\
162
- does look more Rubyish. And no monkeys were patched in the filming of this\n\
163
- episode! All the simpletons still exiting with icky _numbers_ can still\n\
164
- continue blithely along, none the wiser."
165
- email:
113
+ prerelease: false
114
+ version_requirements: !ruby/object:Gem::Requirement
115
+ requirements:
116
+ - - "~>"
117
+ - !ruby/object:Gem::Version
118
+ version: '3.9'
119
+ description: |-
120
+ Have you ever wanted to call <code>exit()</code> with an error condition, but
121
+ weren't sure what exit status to use? No? Maybe it's just me, then.
122
+
123
+ Anyway, I was reading manpages late one evening before retiring to bed in my
124
+ palatial estate in rural Oregon, and I stumbled across
125
+ <code>sysexits(3)</code>. Much to my chagrin, I couldn't find a +sysexits+ for
126
+ Ruby! Well, for the other 2 people that actually care about
127
+ <code>style(9)</code> as it applies to Ruby code, now there is one!
128
+
129
+ Sysexits is a *completely* *awesome* collection of human-readable constants for
130
+ the standard (BSDish) exit codes, used as arguments to +exit+ to
131
+ indicate a specific error condition to the parent process.
132
+
133
+ It's so fantastically fabulous that you'll want to fork it right away to avoid
134
+ being thought of as that guy that's still using Webrick for his blog. I mean,
135
+ <code>exit(1)</code> is so passé! This is like the 14-point font of Systems
136
+ Programming.
137
+
138
+ Like the C header file from which this was derived (I mean forked, naturally),
139
+ error numbers begin at <code>Sysexits::EX__BASE</code> (which is way more cool
140
+ than plain old +64+) to reduce the possibility of clashing with other exit
141
+ statuses that other programs may already return.
142
+
143
+ The codes are available in two forms: as constants which can be imported into
144
+ your own namespace via <code>include Sysexits</code>, or as
145
+ <code>Sysexits::STATUS_CODES</code>, a Hash keyed by Symbols derived from the
146
+ constant names.
147
+
148
+ Allow me to demonstrate. First, the old way:
149
+
150
+ exit( 69 )
151
+
152
+ Whaaa...? Is that a euphemism? What's going on? See how unattractive and...
153
+ well, 1970 that is? We're not changing vaccuum tubes here, people, we're
154
+ <em>building a totally-awesome future in the Cloud™!</em>
155
+
156
+ include Sysexits
157
+ exit EX_UNAVAILABLE
158
+
159
+ Okay, at least this is readable to people who have used <code>fork()</code>
160
+ more than twice, but you could do so much better!
161
+
162
+ include Sysexits
163
+ exit :unavailable
164
+
165
+ Holy Toledo! It's like we're writing Ruby, but our own made-up dialect in
166
+ which variable++ is possible! Well, okay, it's not quite that cool. But it
167
+ does look more Rubyish. And no monkeys were patched in the filming of this
168
+ episode! All the simpletons still exiting with icky _numbers_ can still
169
+ continue blithely along, none the wiser.
170
+ email:
166
171
  - ged@FaerieMUD.org
167
172
  executables: []
168
-
169
173
  extensions: []
170
-
171
- extra_rdoc_files:
174
+ extra_rdoc_files:
172
175
  - History.rdoc
173
176
  - Manifest.txt
174
177
  - README.rdoc
175
- files:
178
+ files:
179
+ - ".gemtest"
176
180
  - ChangeLog
177
181
  - History.rdoc
178
182
  - LICENSE
@@ -181,50 +185,33 @@ files:
181
185
  - Rakefile
182
186
  - lib/sysexits.rb
183
187
  - spec/sysexits_spec.rb
184
- - .gemtest
185
188
  homepage: https://bitbucket.org/ged/sysexits
186
- licenses:
189
+ licenses:
187
190
  - BSD
188
- post_install_message: "\n\
189
- Get ready to be amazed. I'll bet you can't wait to Exit Like \n\
190
- a Pro\xC2\xAE!\n\n\
191
- Well, if you want, you can do it right from the command-line! Check \n\
192
- this out:\n\n ruby -rubygems -e \\\n 'require \"sysexits\"; include Sysexits; exit :software_error' \\\n || echo $?\n\n\
193
- I know, I know: so awesome right? Okay, I'll let you bask in the\n\
194
- warn glow of superior systems-programming now.\n\n"
195
- rdoc_options:
196
- - -f
191
+ metadata: {}
192
+ post_install_message:
193
+ rdoc_options:
194
+ - "-f"
197
195
  - fivefish
198
- - -t
196
+ - "-t"
199
197
  - Sysexits
200
- require_paths:
198
+ require_paths:
201
199
  - lib
202
- required_ruby_version: !ruby/object:Gem::Requirement
203
- none: false
204
- requirements:
200
+ required_ruby_version: !ruby/object:Gem::Requirement
201
+ requirements:
205
202
  - - ">="
206
- - !ruby/object:Gem::Version
207
- hash: 57
208
- segments:
209
- - 1
210
- - 8
211
- - 7
203
+ - !ruby/object:Gem::Version
212
204
  version: 1.8.7
213
- required_rubygems_version: !ruby/object:Gem::Requirement
214
- none: false
215
- requirements:
205
+ required_rubygems_version: !ruby/object:Gem::Requirement
206
+ requirements:
216
207
  - - ">="
217
- - !ruby/object:Gem::Version
218
- hash: 3
219
- segments:
220
- - 0
221
- version: "0"
208
+ - !ruby/object:Gem::Version
209
+ version: '0'
222
210
  requirements: []
223
-
224
211
  rubyforge_project: sysexits
225
- rubygems_version: 1.8.24
212
+ rubygems_version: 2.2.2
226
213
  signing_key:
227
- specification_version: 3
228
- summary: Have you ever wanted to call <code>exit()</code> with an error condition, but weren't sure what exit status to use? No? Maybe it's just me, then
214
+ specification_version: 4
215
+ summary: Have you ever wanted to call <code>exit()</code> with an error condition,
216
+ but weren't sure what exit status to use? No? Maybe it's just me, then
229
217
  test_files: []
230
-
metadata.gz.sig CHANGED
Binary file