search_mac_address 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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b3b106ffae12c8fca2bee4f9a9935419e603bfef34d5e6334c52255ed8d34a8c
4
- data.tar.gz: 94ba2c2093020bd649a6853e869cc21548d4e883b6ac38186e08f94db43d6a8a
3
+ metadata.gz: 2a56bdb0bc8cfed272d642d5016e4ff7e35c5863d3a4dbb6eb66d2da109b87c5
4
+ data.tar.gz: 4b479bdefb0e6c67cdede16a5d717be50814dc6e62ff9370b564f01df6e5233b
5
5
  SHA512:
6
- metadata.gz: dd2a680447943090e86e96f926cdedf634c6b1ced0c6102a76c35e8163f3ed55ffd8c39840c84fbb920689ed6983dc93f6f77552280324b448630bb80c1ed3dc
7
- data.tar.gz: 3f3122f00a1a656820d13c4e484245765ca57682361c99cdfe62dce68b146a836abefafdfd51eef1e6207ab95f4d6667212966a266d8cb1496bc1ce3b3dd7f4f
6
+ metadata.gz: 1087aa0ede1051aea5c7596c0d0d5b366ce18c5208d5caf6e706bd9304a39b2ba2ef042372340b198abe5e35465c49d45e3eabba8aca8cf31dd8ef9674d6ddb8
7
+ data.tar.gz: 4dd36337c7e8e289ccca8d41a4160336d36decfe9f960c260c83d66ff4311cc4eb7f4c8e4ff1fec0d628373123b43b01edee2fb94824caf5aa557e43f4e9db24
data/README.md CHANGED
@@ -1,8 +1,5 @@
1
1
  # SearchMacAddress
2
-
3
- Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/search_mac_address`. To experiment with that code, run `bin/console` for an interactive prompt.
4
-
5
- TODO: Delete this and the text above, and describe your gem
2
+ SearchMacAddress gems helps you to get the lists of the Mac Address of your system. It also provides a way to get a Mac Address, encode and decode it.
6
3
 
7
4
  ## Installation
8
5
 
@@ -22,8 +19,6 @@ Or install it yourself as:
22
19
 
23
20
  ## Usage
24
21
 
25
- TODO: Write usage instructions here
26
-
27
22
  To get set of mac addresses available on your system, use following code
28
23
  ```
29
24
  SearchMacAddress::Filter.all_addr
@@ -44,12 +39,6 @@ To decode the mac address, supply encoded data to the decode()
44
39
  SearchMacAddress::Filter.decode(encoded_addr)
45
40
  ```
46
41
 
47
- ## Development
48
-
49
- After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
50
-
51
- To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
52
-
53
42
  ## Contributing
54
43
 
55
44
  Bug reports and pull requests are welcome on GitHub at https://github.com/userrails/search-mac-address. 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.
@@ -1,3 +1,3 @@
1
1
  module SearchMacAddress
2
- VERSION = "1.0.0"
2
+ VERSION = "1.0.1".freeze
3
3
  end
@@ -9,7 +9,7 @@ Gem::Specification.new do |spec|
9
9
  spec.authors = ["Shiv Raj Badu"]
10
10
  spec.email = ["shivrajbadu@gmail.com"]
11
11
 
12
- spec.summary = %q{Activate and deactivate the application under certain condition}
12
+ spec.summary = %q{Search mac address of your system, encode and decode mechanism}
13
13
  spec.description = %q{Get mac address, encode and save.}
14
14
  spec.homepage = "https://github.com/userrails/search-mac-address"
15
15
  spec.license = "MIT"
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: search_mac_address
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Shiv Raj Badu
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2018-05-10 00:00:00.000000000 Z
11
+ date: 2018-05-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -96,5 +96,5 @@ rubyforge_project:
96
96
  rubygems_version: 2.7.6
97
97
  signing_key:
98
98
  specification_version: 4
99
- summary: Activate and deactivate the application under certain condition
99
+ summary: Search mac address of your system, encode and decode mechanism
100
100
  test_files: []