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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7f58db787f3f902a902e91e34159d5f3faec5df6716e2003f643228d322effad
4
- data.tar.gz: 07ddd074b8305ac9af28a058c5ed718ea1016829047a725f1f74628e26ea83c6
3
+ metadata.gz: e0df5dfa530f0ff7771563a035f35bd225a1b7d20e01c87aa626c87fa60a94a4
4
+ data.tar.gz: 1683d8d3a06202ce56e266bdd20b0d8805a08fc9eac68d9041be507fe78b367a
5
5
  SHA512:
6
- metadata.gz: a186755509cd04163bb0c58140970e23613c8f8fae77191f6061c412a5aa479fc99ead4a83f79a5a05178aca51c746973eb8bd51b965fba2c48c8f08c4b0a990
7
- data.tar.gz: 2b6fe9f6d24e3937bbab1ebbebe1db3043dbe0af90705a717e0a6507c19d78d39363812a6f3c3d48459e5ef577bb947edc70f893b63fe954d8ae52cd38309b95
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).
@@ -1,5 +1,5 @@
1
1
  module Routes
2
2
  module Analyzer
3
- VERSION = "0.1.0"
3
+ VERSION = "0.1.1"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: routes-analyzer
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Gregorio Galante