specs_for 0.3.0 → 0.3.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 +8 -0
- data/lib/specs_for/version.rb +2 -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: b1f0ffc2e168d03afb6c22dd7d97baa1ed42897f489dc42a94c035930696c204
|
|
4
|
+
data.tar.gz: 5b3bc0461602fcb93b206d41213820ffbd2357a9e2c51de24e997fe375f37f99
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 92bcc8d52110a20b642b3f896827d08bc838f7d19dcac0206f45b6452c8417d7e630fc5479cee80cbec87b1ead761815054745e20579b200bb7b871d230e4aa1
|
|
7
|
+
data.tar.gz: a3bc97a285ddd2856da9bc31c6be50eac7845a0759f14d1004448d6491dcd428623383afcd25aa205cf33168298c51cc9a4185df140b6e7365de553e5a83cb82
|
data/README.md
CHANGED
|
@@ -18,6 +18,14 @@ executing:
|
|
|
18
18
|
gem install specs_for
|
|
19
19
|
```
|
|
20
20
|
|
|
21
|
+
If your environment uses a private gem proxy/cache and the newest published
|
|
22
|
+
version is not yet visible, install from a local built gem file:
|
|
23
|
+
|
|
24
|
+
```bash
|
|
25
|
+
bundle exec rake build
|
|
26
|
+
gem install --local pkg/specs_for-<version>.gem --bindir bin
|
|
27
|
+
```
|
|
28
|
+
|
|
21
29
|
## Usage
|
|
22
30
|
|
|
23
31
|
### Command line
|
data/lib/specs_for/version.rb
CHANGED
|
@@ -5,7 +5,8 @@ class SpecsFor
|
|
|
5
5
|
["0.1.0", "2026-03-25", "Initial release"],
|
|
6
6
|
["0.2.0", "2026-05-06", "Add support for tags and improved file search"],
|
|
7
7
|
["0.2.1", "2026-05-06", "Replace specs-for with specs_for in the url"],
|
|
8
|
-
["0.3.0", "2026-05-06", "Make specs-for be independent of bundler"]
|
|
8
|
+
["0.3.0", "2026-05-06", "Make specs-for be independent of bundler"],
|
|
9
|
+
["0.3.1", "2026-05-06", "Update README.md with local install info"]
|
|
9
10
|
]
|
|
10
11
|
VERSION = RELEASES.last.first
|
|
11
12
|
end
|