meshtastic 0.0.15 → 0.0.17

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +11 -8
  3. data/lib/meshtastic/version.rb +1 -1
  4. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 30bc06e05d379eccb88bcfe31c8bb2b19848de314a7c20e306b4a62a413f23df
4
- data.tar.gz: 44db5ac947c5be185d118781e26f490157c5b5ac049424003a02bbcc66f4b9b3
3
+ metadata.gz: 63cee8d76ca09fb529de72c65e2c007c88548cddb0dc2aaab54e9f639f34a249
4
+ data.tar.gz: 0b0f3096cac30f1bdd9b63eacad170919f6bc2b2500f3ea925e1b21412b7b529
5
5
  SHA512:
6
- metadata.gz: 241f90ebe1893c6a44ff8361cb26f84be252f38261272bd6f754c05593df0c9bda4867a22a1d8491dfe3d17f2dad03bc58d6420a62a4ab213c272c3d35fc3418
7
- data.tar.gz: a5409c71edc54009888d55c475b764813bf6cb0889d5a1c84ef827c3b86413d78fa4b4f50297a0025f6a19edb6257c5b7851ac28ba52988ff50a7cab7de47413
6
+ metadata.gz: 29731a7957bd9bf288cd54d191629f9cc37613f9c66bf8b09eba8db4d9c288da043c31933cf4605eca723ea308885d7ff8355ea77b3d15ffac555ea117584cff
7
+ data.tar.gz: d9f633ded8596f38b41217cb3a5bf518c728d848d063eeb757e01a98d82ecc1920268a00df0cac34cc56082c70ba15a94aa8fa3d9248c7c97f99e9f57f16a37b
data/README.md CHANGED
@@ -1,13 +1,16 @@
1
1
  # Meshtastic
2
- Ruby gem for interfacing with Meshtastic nodes.
2
+
3
+ Ruby gem for interfacing with Meshtastic nodes / network.
3
4
 
4
5
  # Setting Expectations
5
- This gem was created to support alt-comm capabilities w/in a security research framework known as ('https://github.com/0dayInc/pwn')[PWN]. Contributors of this effort cannot guarantee full functionality or support for all Meshtastic features.
6
+
7
+ This gem was created to support alt-comm capabilities w/in a security research framework known as [PWN](https://github.com/0dayInc/pwn). Contributors of this effort cannot guarantee full functionality or support for all Meshtastic features.
6
8
 
7
9
  # Objectives
8
- - Consume the ('https://github.com/meshtastic/protobufs')[Meshtastic Protobufs] and ('https://github.com/0dayInc/meshtastic/blob/master/AUTOGEN_meshtastic_protobufs.sh')[generate Ruby protobuf modules for Meshtastic] using the protoc command: Complete
9
- - Integrate a working gem that can interface with the automatically generated Ruby protobuf modules: Complete
10
- - Scale out Meshtastic Ruby Modules for their respective protobufs within the meshtastic gem (e.g. Meshtastic::MQTTPB is auto-generated based on latest Meshtastic protobuf specs and extended via Meshtastic::MQTT for more MQTT interaction as desired): Continued Effort
10
+
11
+ - Consume the latest [Meshtastic Protobof Specs](https://github.com/meshtastic/protobufs) and [auto-generate Ruby protobuf modules for Meshtastic](https://github.com/0dayInc/meshtastic/blob/master/AUTOGEN_meshtastic_protobufs.sh) using the `protoc` command: `Complete`
12
+ - Integrate auto-generated Ruby protobuf modules into a working Ruby gem: `Complete`
13
+ - Scale out Meshtastic Ruby Modules for their respective protobufs within the meshtastic gem (e.g. Meshtastic::MQTTPB is auto-generated based on latest Meshtastic protobuf specs and extended via Meshtastic::MQTT for more MQTT interaction as desired): `Ongoing Effort`
11
14
 
12
15
  ## Installation
13
16
 
@@ -21,7 +24,7 @@ If bundler is not being used to manage dependencies, install the gem by executin
21
24
 
22
25
  ## Usage
23
26
 
24
- At the moment the only working module is `Meshtastic::MQTT`. To view MQTT messages, run the following:
27
+ At the moment the only module available is `Meshtastic::MQTT`. To view MQTT messages, run the following:
25
28
 
26
29
  ```ruby
27
30
  require 'meshtastic'
@@ -32,8 +35,8 @@ Meshtastic::MQTT.subscribe(mqtt_obj: mqtt_obj)
32
35
 
33
36
  ## Contributing
34
37
 
35
- Bug reports and pull requests are welcome on GitHub at https://github.com/0dayinc/meshtastic. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/[USERNAME]/meshtastic/blob/master/CODE_OF_CONDUCT.md).
38
+ Bug reports and pull requests are welcome on GitHub at https://github.com/0dayinc/meshtastic. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/0dayinc/meshtastic/blob/master/CODE_OF_CONDUCT.md).
36
39
 
37
40
  ## Code of Conduct
38
41
 
39
- Everyone interacting in the Meshtastic project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/[USERNAME]/meshtastic/blob/master/CODE_OF_CONDUCT.md).
42
+ Everyone interacting in the Meshtastic project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/0dayinc/meshtastic/blob/master/CODE_OF_CONDUCT.md).
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Meshtastic
4
- VERSION = '0.0.15'
4
+ VERSION = '0.0.17'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: meshtastic
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.15
4
+ version: 0.0.17
5
5
  platform: ruby
6
6
  authors:
7
7
  - 0day Inc.