netstack 0.1.0 → 0.1.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.
- checksums.yaml +4 -4
- data/lib/netstack/version.rb +1 -1
- metadata +2 -3
- data/netstack.gemspec +0 -39
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: eddd468b051e3a6fb12facd3f3089ba029bbc6c021adbe3578abfc3c8b50f48e
|
|
4
|
+
data.tar.gz: 656e01f7922ea127b8c839b4aeaeb26763d27205326861ca13a4a362e4710196
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0e78a867a0c0a80c2d01e29198fe2aafe3520d49ddac6f4ab7b07996451db9d539b65573089d281197ab4f93008a41a92699c1b3e491b00b97e631c37d382cd7
|
|
7
|
+
data.tar.gz: 6ee7a999af13ba478903aaa5a36fbb250f75840a897934fc32450bb78cb3f824f02ea28d3af356128e4b9ab040da88c8b2b8a093d77e493ea7ade1f6173b21ea
|
data/lib/netstack/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: netstack
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- WENWU YAN
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-
|
|
11
|
+
date: 2021-12-17 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
13
|
description: Write a longer description or delete this line.
|
|
14
14
|
email:
|
|
@@ -29,7 +29,6 @@ files:
|
|
|
29
29
|
- bin/setup
|
|
30
30
|
- lib/netstack.rb
|
|
31
31
|
- lib/netstack/version.rb
|
|
32
|
-
- netstack.gemspec
|
|
33
32
|
homepage: https://github.com/snmpd/netstack
|
|
34
33
|
licenses:
|
|
35
34
|
- MIT
|
data/netstack.gemspec
DELETED
|
@@ -1,39 +0,0 @@
|
|
|
1
|
-
# frozen_string_literal: true
|
|
2
|
-
|
|
3
|
-
require_relative "lib/netstack/version"
|
|
4
|
-
|
|
5
|
-
Gem::Specification.new do |spec|
|
|
6
|
-
spec.name = "netstack"
|
|
7
|
-
spec.version = Netstack::VERSION
|
|
8
|
-
spec.authors = ["WENWU YAN"]
|
|
9
|
-
spec.email = ["careline@foxmail.com"]
|
|
10
|
-
|
|
11
|
-
spec.summary = "Write a short summary, because RubyGems requires one."
|
|
12
|
-
spec.description = "Write a longer description or delete this line."
|
|
13
|
-
spec.homepage = "https://github.com/snmpd/netstack"
|
|
14
|
-
spec.license = "MIT"
|
|
15
|
-
spec.required_ruby_version = ">= 2.4.0"
|
|
16
|
-
|
|
17
|
-
spec.metadata["allowed_push_host"] = "https://rubygems.org"
|
|
18
|
-
|
|
19
|
-
spec.metadata["homepage_uri"] = spec.homepage
|
|
20
|
-
spec.metadata["source_code_uri"] = "https://github.com/snmpd/netstack"
|
|
21
|
-
spec.metadata["changelog_uri"] = "https://github.com/snmpd/netstack"
|
|
22
|
-
|
|
23
|
-
# Specify which files should be added to the gem when it is released.
|
|
24
|
-
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
|
25
|
-
spec.files = Dir.chdir(File.expand_path(__dir__)) do
|
|
26
|
-
`git ls-files -z`.split("\x0").reject do |f|
|
|
27
|
-
(f == __FILE__) || f.match(%r{\A(?:(?:test|spec|features)/|\.(?:git|travis|circleci)|appveyor)})
|
|
28
|
-
end
|
|
29
|
-
end
|
|
30
|
-
spec.bindir = "exe"
|
|
31
|
-
spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
|
|
32
|
-
spec.require_paths = ["lib"]
|
|
33
|
-
|
|
34
|
-
# Uncomment to register a new dependency of your gem
|
|
35
|
-
# spec.add_dependency "example-gem", "~> 1.0"
|
|
36
|
-
|
|
37
|
-
# For more information and examples about making a new gem, checkout our
|
|
38
|
-
# guide at: https://bundler.io/guides/creating_gem.html
|
|
39
|
-
end
|