activerecord_defer_persist 0.1.0 → 0.2.0
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 +6 -0
- data/lib/activerecord_defer_persist/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: 62b2098541b780cdee8c7ccf0d62476503c19d4cb179f62a2736ec89e0750d71
|
4
|
+
data.tar.gz: c9c43a9bc9454ebb572d06f4210073e5f4d721ad292aff8beb1f519c6e06deb9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1e59eed85dd008b76e0266c4f4184d18069b7136e3c6c68e6d31cd75020806e334bf013df3622b3dac908d8aae1d653459500715653020e78c80fd9c392c2a12
|
7
|
+
data.tar.gz: 68dfe124c8d8bb25221b39624f2706234535b2feeb4444748c4664ab17c15026fd467eaa32f7268995478c46e490843f7d542e77389bdfa2e2b05aeca758bec6
|
data/README.md
CHANGED
@@ -53,6 +53,12 @@ After checking out the repo, run `bin/setup` to install dependencies. You can al
|
|
53
53
|
|
54
54
|
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and the created tag, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
55
55
|
|
56
|
+
### Deploy to rubygems
|
57
|
+
|
58
|
+
```sh
|
59
|
+
VERSION=0.2.0 make deploy_gem
|
60
|
+
```
|
61
|
+
|
56
62
|
## Contributing
|
57
63
|
|
58
64
|
Bug reports and pull requests are welcome on GitHub at https://github.com/betagouv/activerecord_defer_persist.
|