routes-analyzer 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/README.md +24 -0
- data/lib/routes/analyzer/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e0df5dfa530f0ff7771563a035f35bd225a1b7d20e01c87aa626c87fa60a94a4
|
|
4
|
+
data.tar.gz: 1683d8d3a06202ce56e266bdd20b0d8805a08fc9eac68d9041be507fe78b367a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ddec876f42e606cca4f39b24ff3c2d442ae1d4ec635de8e6abba2434be1ca22629abe98a24750c048559ce67de9ec7c6042bb8481f8a87790508fcda5e28165d
|
|
7
|
+
data.tar.gz: 867674e3c3c49f0ed810d78b6871092261b815e5f6fe696de450973cadd9de6dd8ecdf7e759af0867245a8a2e92bba5612657f0f623110744d4db72dd5ea3f0e
|
data/README.md
CHANGED
|
@@ -142,6 +142,30 @@ For each tracked route, the following data is stored in Redis:
|
|
|
142
142
|
4. Push to the branch (`git push origin my-new-feature`)
|
|
143
143
|
5. Create a Pull Request
|
|
144
144
|
|
|
145
|
+
## Testing
|
|
146
|
+
|
|
147
|
+
Run the test suite to ensure everything is working correctly:
|
|
148
|
+
|
|
149
|
+
```bash
|
|
150
|
+
ruby bin/test
|
|
151
|
+
```
|
|
152
|
+
|
|
153
|
+
## Rubocop check
|
|
154
|
+
|
|
155
|
+
Run Rubocop to check code style:
|
|
156
|
+
|
|
157
|
+
```bash
|
|
158
|
+
ruby bin/rubocop
|
|
159
|
+
```
|
|
160
|
+
|
|
161
|
+
## Publishing
|
|
162
|
+
|
|
163
|
+
To publish a new version of the gem, update the version number in `lib/routes/analyzer/version.rb` and run:
|
|
164
|
+
|
|
165
|
+
```bash
|
|
166
|
+
ruby bin/publish
|
|
167
|
+
```
|
|
168
|
+
|
|
145
169
|
## License
|
|
146
170
|
|
|
147
171
|
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|