vulpix 0.1.0 → 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +3 -5
- data/lib/vulpix/cli.rb +1 -1
- data/lib/vulpix/version.rb +1 -1
- data/vulpix.gemspec +2 -2
- 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: 31aa456c37c910196d5619d2c91cd590ecc3f414
|
4
|
+
data.tar.gz: d80760608250a64dc06d39b0c6e752bddf8806e9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9a845c8de0b0689d4d99276fbff7e2a0f7b22a0a59fb1ad7b94775848e2c47b3a4575f9c050857f05637e814a598bd414bee8ea627b09db6ba588b69fe5e8146
|
7
|
+
data.tar.gz: 7ed950dd1c0ce339e8bfff90025903d6a9ea783787937b90d5a1907cdeb4083315df685b00850d1551498af8c188fa47e05405164619c8359245b35e4b79a37d
|
data/README.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# Vulpix
|
2
2
|
|
3
|
-
Pretty print your
|
3
|
+
Pretty print your network information.
|
4
4
|
|
5
5
|
## Installation
|
6
6
|
|
@@ -13,8 +13,6 @@ Run:
|
|
13
13
|
Go to your terminal, and type vulpix and press enter.
|
14
14
|
|
15
15
|
$ vulpix
|
16
|
-
$ vulpix --verbose
|
17
|
-
|
18
16
|
|
19
17
|
## Development
|
20
18
|
|
@@ -24,7 +22,7 @@ To install this gem onto your local machine, run `bundle exec rake install`. To
|
|
24
22
|
|
25
23
|
## Contributing
|
26
24
|
|
27
|
-
Bug reports and pull requests are welcome on GitHub at https://github.com/
|
25
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/aoozdemir/vulpix. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
|
28
26
|
|
29
27
|
## License
|
30
28
|
|
@@ -32,4 +30,4 @@ The gem is available as open source under the terms of the [MIT License](https:/
|
|
32
30
|
|
33
31
|
## Code of Conduct
|
34
32
|
|
35
|
-
Everyone interacting in the Vulpix project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/
|
33
|
+
Everyone interacting in the Vulpix project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/aoozdemir/vulpix/blob/master/CODE_OF_CONDUCT.md).
|
data/lib/vulpix/cli.rb
CHANGED
@@ -9,7 +9,7 @@ module Vulpix
|
|
9
9
|
data_length = nw.map(&:values).flatten.max_by(&:length)
|
10
10
|
|
11
11
|
nw.each do |item|
|
12
|
-
printf "
|
12
|
+
printf "%-6s %-#{data_length.length}s :: %s\n", item[:name], item[:name_info], item[:addr]
|
13
13
|
end
|
14
14
|
end
|
15
15
|
|
data/lib/vulpix/version.rb
CHANGED
data/vulpix.gemspec
CHANGED
@@ -9,8 +9,8 @@ Gem::Specification.new do |spec|
|
|
9
9
|
spec.authors = ["Oguzhan Ozdemir"]
|
10
10
|
spec.email = ["aoozdemir@live.com"]
|
11
11
|
|
12
|
-
spec.summary = %q{Pretty print your
|
13
|
-
spec.description = %q{Pretty print your
|
12
|
+
spec.summary = %q{Pretty print your network information.}
|
13
|
+
spec.description = %q{Pretty print your network information.}
|
14
14
|
spec.homepage = "https://github.com/aoozdemir/vulpix"
|
15
15
|
spec.license = "MIT"
|
16
16
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: vulpix
|
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
|
- Oguzhan Ozdemir
|
@@ -66,7 +66,7 @@ dependencies:
|
|
66
66
|
- - ">="
|
67
67
|
- !ruby/object:Gem::Version
|
68
68
|
version: '0'
|
69
|
-
description: Pretty print your
|
69
|
+
description: Pretty print your network information.
|
70
70
|
email:
|
71
71
|
- aoozdemir@live.com
|
72
72
|
executables:
|
@@ -114,5 +114,5 @@ rubyforge_project:
|
|
114
114
|
rubygems_version: 2.6.14
|
115
115
|
signing_key:
|
116
116
|
specification_version: 4
|
117
|
-
summary: Pretty print your
|
117
|
+
summary: Pretty print your network information.
|
118
118
|
test_files: []
|