windows_error 0.0.1 → 0.0.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +1 -1
- data/lib/windows_error/version.rb +1 -1
- data/windows_error.gemspec +2 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f7075b71656b5eec535a33fe0b0fe9843631c2f2
|
4
|
+
data.tar.gz: 89c78c6b5c914a1852753d86e458ebf6018b1523
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a22e867cfaeaea3115f6bd192ff4d285af1d09b2dcd16234aa705af34cd062219ddf81f9ce7f576e7ebb08c87e28e8c197e1533e23e848fcacbe137141554eb3
|
7
|
+
data.tar.gz: 93ac2dc922d2cc043c8ec355092a0e215213f93bd27ec91dcc25b7de156bff6b14864b6a3c3b62f4b22ae381556ebc1934395d42082af4d4b186453234a88f2a
|
data/README.md
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
[![Build Status](https://travis-ci.org/rapid7/windows_error.svg)](https://travis-ci.org/rapid7/windows_error)
|
3
3
|
[![Code Climate](https://codeclimate.com/github/rapid7/windows_error/badges/gpa.svg)](https://codeclimate.com/github/rapid7/windows_error)
|
4
4
|
|
5
|
-
The WindowsError gem provides an easily accessible reference for standard Windows API Error Codes. It allows you to do comparisons as well as direct lookups of error codes to translate the numerical value returned by the API, into a
|
5
|
+
The WindowsError gem provides an easily accessible reference for standard Windows API Error Codes. It allows you to do comparisons as well as direct lookups of error codes to translate the numerical value returned by the API, into a meaningful and human readable message. WindowsError currently supports [NTSTATUS](https://msdn.microsoft.com/en-us/library/cc231200.aspx) and [Win32 Error Codes](https://msdn.microsoft.com/en-us/library/cc231199.aspx). See [Windows Error Codes](https://msdn.microsoft.com/en-us/library/cc231196.aspx) for more details on all Windows Error Codes.
|
6
6
|
|
7
7
|
## Installation
|
8
8
|
|
@@ -6,7 +6,7 @@ module WindowsError
|
|
6
6
|
# The minor version number, scoped to the {MAJOR} version number.
|
7
7
|
MINOR = 0
|
8
8
|
# The patch number, scoped to the {MINOR} version number.
|
9
|
-
PATCH =
|
9
|
+
PATCH = 2
|
10
10
|
|
11
11
|
# The full version string, including the {MAJOR}, {MINOR}, {PATCH}, and optionally, the `PRERELEASE` in the
|
12
12
|
# {http://semver.org/spec/v2.0.0.html semantic versioning v2.0.0} format.
|
data/windows_error.gemspec
CHANGED
@@ -12,9 +12,10 @@ Gem::Specification.new do |spec|
|
|
12
12
|
spec.description = %q{The WindowsError gem provides an easily accessible reference for
|
13
13
|
standard Windows API Error Codes. It allows you to do comparisons
|
14
14
|
as well as direct lookups of error codes to translate the numerical
|
15
|
-
value returned by the API, into a
|
15
|
+
value returned by the API, into a meaningful and human readable message.}
|
16
16
|
spec.homepage = "https://github.com/rapid7/windows_error"
|
17
17
|
spec.license = "BSD"
|
18
|
+
spec.required_ruby_version = '>= 2.1'
|
18
19
|
|
19
20
|
spec.files = `git ls-files -z`.split("\x0")
|
20
21
|
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: windows_error
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- David Maloney
|
@@ -70,7 +70,7 @@ description: |-
|
|
70
70
|
The WindowsError gem provides an easily accessible reference for
|
71
71
|
standard Windows API Error Codes. It allows you to do comparisons
|
72
72
|
as well as direct lookups of error codes to translate the numerical
|
73
|
-
value returned by the API, into a
|
73
|
+
value returned by the API, into a meaningful and human readable message.
|
74
74
|
email:
|
75
75
|
- DMaloney@rapid7.com
|
76
76
|
executables: []
|
@@ -110,7 +110,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
110
110
|
requirements:
|
111
111
|
- - ">="
|
112
112
|
- !ruby/object:Gem::Version
|
113
|
-
version: '
|
113
|
+
version: '2.1'
|
114
114
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
115
115
|
requirements:
|
116
116
|
- - ">="
|