rake_audit 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/CHANGELOG.md +8 -1
- data/README.md +22 -0
- data/lib/rake_audit/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: '0682485277e9e078eceb31b466c6c8e3afe96b0e699c395cfb9dbf57642714e4'
|
|
4
|
+
data.tar.gz: 4f1547e6bbb073b2c1bcec604a99642d1588c1afcf4e189cf712179e9ff373f9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ca35eb1ead0671fb6bf4fcb9649948fc27c494ad1d84cbfa88207030ba5787eb8bc01d6d97937ba2230da28f039e0b6306ead213bb2b102c26def203a7e3f38e
|
|
7
|
+
data.tar.gz: 53d52ea179f0672d67c9bd43e689b110d546fd0bc0f99d5b8502e0eba9178e7a25de710413751a76444f831dfb851ca6d369c036942e2c5ae1c1eb3808828dda
|
data/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.1.1] - 2026-06-04
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
|
|
14
|
+
- Example Rails app in `examples/dummy_app/` demonstrating full setup with SQLite and five demo Rake tasks.
|
|
15
|
+
|
|
10
16
|
## [0.1.0] - 2026-06-03
|
|
11
17
|
|
|
12
18
|
Initial public release.
|
|
@@ -34,5 +40,6 @@ Initial public release.
|
|
|
34
40
|
- **Rails-free operation** — the gem loads and records outside Rails; Kaminari's
|
|
35
41
|
ActiveRecord/ActionView integrations stay inert until those libraries are present.
|
|
36
42
|
|
|
37
|
-
[Unreleased]: https://github.com/eraxel-dev/rake_audit/compare/v0.1.
|
|
43
|
+
[Unreleased]: https://github.com/eraxel-dev/rake_audit/compare/v0.1.1...HEAD
|
|
44
|
+
[0.1.1]: https://github.com/eraxel-dev/rake_audit/compare/v0.1.0...v0.1.1
|
|
38
45
|
[0.1.0]: https://github.com/eraxel-dev/rake_audit/releases/tag/v0.1.0
|
data/README.md
CHANGED
|
@@ -20,6 +20,7 @@ Gain a complete historical record of your operational tasks without touching you
|
|
|
20
20
|
- [Web UI](#web-ui)
|
|
21
21
|
- [Custom Adapter](#custom-adapter)
|
|
22
22
|
- [Example Usages](#example-usages)
|
|
23
|
+
- [Try the Example App](#try-the-example-app)
|
|
23
24
|
|
|
24
25
|
---
|
|
25
26
|
|
|
@@ -233,3 +234,24 @@ RakeAudit.configure do |config|
|
|
|
233
234
|
config.web_ui_enabled = false
|
|
234
235
|
end
|
|
235
236
|
```
|
|
237
|
+
|
|
238
|
+
---
|
|
239
|
+
|
|
240
|
+
## Try the Example App
|
|
241
|
+
|
|
242
|
+
A complete, runnable Rails 7 example lives in
|
|
243
|
+
[`examples/dummy_app/`](examples/dummy_app/). It wires `rake_audit` into a real
|
|
244
|
+
app via a local path gem (`gem 'rake_audit', path: '../..'`), uses SQLite, and
|
|
245
|
+
ships five demo Rake tasks plus the mounted Web UI.
|
|
246
|
+
|
|
247
|
+
```sh
|
|
248
|
+
cd examples/dummy_app
|
|
249
|
+
bundle install
|
|
250
|
+
bin/rails db:setup
|
|
251
|
+
bin/rails demo:hello # records a success
|
|
252
|
+
bin/rails demo:flaky # records a failure
|
|
253
|
+
bin/rails server # then open http://localhost:3000/rake_audit
|
|
254
|
+
```
|
|
255
|
+
|
|
256
|
+
See [`examples/dummy_app/README.md`](examples/dummy_app/README.md) for the full
|
|
257
|
+
walkthrough. (The example is not included in the published gem.)
|
data/lib/rake_audit/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rake_audit
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Eraxel Dev
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-06-
|
|
11
|
+
date: 2026-06-04 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: kaminari
|