moj_components 0.2.1 → 0.2.2
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/CHANGELOG.md +5 -0
- data/README.md +14 -1
- data/lib/moj_component/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: a745711c62e209c0963c446b7aad23f4a977925338b5ba74130fd869326a1bb9
|
|
4
|
+
data.tar.gz: 4aa605e6bdcc14faac5656cff6f31315763f9133ac7f77cb0db590f74c5b47a6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 28697f44d46d9a2cf411d68f121b12c392af9c416370dc8babdf480293a8887e281d75ffbc8db3d2b58fe1bc1b52a891fcac723271df613388dd7701cc8aebe0
|
|
7
|
+
data.tar.gz: c6b3a23aba051c9f369f4f068f388e3ee39c126a2d6e7239c4a7f4128621cb5d0fbce6791964f9e3fa878e05c5d75331dae11fdc8d87df8911274220c5c644a5
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
|
@@ -44,6 +44,8 @@ More [information about each of the components is available here.](https://moj-c
|
|
|
44
44
|
|
|
45
45
|
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
|
46
46
|
|
|
47
|
+
To install this gem onto your local machine, run `bundle exec rake install`.
|
|
48
|
+
|
|
47
49
|
### Ruby versions in this repo
|
|
48
50
|
|
|
49
51
|
- Local gem development uses the version in .ruby-version (currently 3.3.11).
|
|
@@ -53,7 +55,18 @@ After checking out the repo, run `bin/setup` to install dependencies. Then, run
|
|
|
53
55
|
- compatibility across supported Ruby versions for the gem
|
|
54
56
|
- production-style runtime smoke checks for the dummy app/Lookbook
|
|
55
57
|
|
|
56
|
-
|
|
58
|
+
## Releasing
|
|
59
|
+
|
|
60
|
+
Release a new version by running the ["Release gem" workflow](https://github.com/ministryofjustice/moj-components/actions/workflows/release.yml) and entering a version in `X.Y.Z` format (for example, `1.0.0`). The workflow creates a release branch and opens a PR to main for this new version.
|
|
61
|
+
|
|
62
|
+
The release PR updates:
|
|
63
|
+
|
|
64
|
+
- lib/moj_component/version.rb
|
|
65
|
+
- CHANGELOG.md
|
|
66
|
+
- Gemfile.lock
|
|
67
|
+
- spec/dummy/Gemfile.lock
|
|
68
|
+
|
|
69
|
+
After the PR is merged, publish.yml runs automatically, creates and pushes the version tag, and publishes the gem to RubyGems.
|
|
57
70
|
|
|
58
71
|
## Contributing
|
|
59
72
|
|