https://github.com/userrails/search-mac-address
Get the mac address of your system
https://github.com/userrails/search-mac-address
Last synced: 3 months ago
JSON representation
Get the mac address of your system
- Host: GitHub
- URL: https://github.com/userrails/search-mac-address
- Owner: userrails
- License: mit
- Created: 2018-05-10T09:43:58.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2018-05-11T03:55:30.000Z (about 7 years ago)
- Last Synced: 2025-02-11T23:54:10.276Z (3 months ago)
- Language: Ruby
- Homepage:
- Size: 19.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# SearchMacAddress
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.## Installation
Add this line to your application's Gemfile:
```ruby
gem 'search_mac_address'
```And then execute:
$ bundle
Or install it yourself as:
$ gem install search_mac_address
## Usage
To get set of mac addresses available on your system, use following code
```
SearchMacAddress::Filter.all_addr
```To get the mac address of your system, use following code
```
SearchMacAddress::Filter.mac_addr
```To get encoded mac address inoder to keep it secure somewhere, use following code
```
SearchMacAddress::Filter.encode
```To decode the mac address, supply encoded data to the decode()
```
SearchMacAddress::Filter.decode(encoded_addr)
```## Contributing
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.
## License
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
## Code of Conduct
Everyone interacting in the SearchMacAddress project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/userrails/search-mac-address/blob/master/CODE_OF_CONDUCT.md).