snmp4em 1.0.0 → 1.0.1
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.
data/README.rdoc
CHANGED
@@ -2,7 +2,6 @@ module SNMP
|
|
2
2
|
|
3
3
|
class ResponseError
|
4
4
|
attr_reader :error_status
|
5
|
-
alias :rubify :error_status
|
6
5
|
|
7
6
|
# Accepts either a string (from SNMP::PDU.error_status) or one of SNMP::EndOfMibView, SNMP::NoSuchObject, or SNMP::NoSuchInstance
|
8
7
|
def initialize(error)
|
@@ -17,6 +16,9 @@ module SNMP
|
|
17
16
|
def to_s
|
18
17
|
@error_status.to_s
|
19
18
|
end
|
20
|
-
end
|
21
19
|
|
20
|
+
def rubify
|
21
|
+
return nil
|
22
|
+
end
|
23
|
+
end
|
22
24
|
end
|
data/lib/snmp4em/extensions.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: snmp4em
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.1
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -84,6 +84,7 @@ extra_rdoc_files:
|
|
84
84
|
files:
|
85
85
|
- lib/snmp4em/extensions/snmp/integer.rb
|
86
86
|
- lib/snmp4em/extensions/snmp/ip_address.rb
|
87
|
+
- lib/snmp4em/extensions/snmp/no_such_instance.rb
|
87
88
|
- lib/snmp4em/extensions/snmp/null.rb
|
88
89
|
- lib/snmp4em/extensions/snmp/object_id.rb
|
89
90
|
- lib/snmp4em/extensions/snmp/octet_string.rb
|
@@ -130,8 +131,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
130
131
|
version: '1.2'
|
131
132
|
requirements: []
|
132
133
|
rubyforge_project: snmp4em
|
133
|
-
rubygems_version: 1.8.
|
134
|
+
rubygems_version: 1.8.25
|
134
135
|
signing_key:
|
135
136
|
specification_version: 3
|
136
137
|
summary: A high-performance SNMP engine built on EventMachine and Ruby-SNMP
|
137
138
|
test_files: []
|
139
|
+
has_rdoc:
|