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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9a179a34a78178c7a695d637e8ff9479d016258a2d7d69cb62e3b8ac33b557b7
4
- data.tar.gz: 6c8cce01a8857dd1d3e50d32bdffe0a2f8d603460018d1aa70d59e01367496f4
3
+ metadata.gz: '0682485277e9e078eceb31b466c6c8e3afe96b0e699c395cfb9dbf57642714e4'
4
+ data.tar.gz: 4f1547e6bbb073b2c1bcec604a99642d1588c1afcf4e189cf712179e9ff373f9
5
5
  SHA512:
6
- metadata.gz: 50022c1e1011ad9143446c28f3b23a4563d1fc47251985e6bb81070f3f39793f898f42a83ffaf85d22cfad256fbbcef7e03b3e8fc163733fedaedabd4d80b620
7
- data.tar.gz: 165a918cfeccc962b3f86342e3306b6efb8c54c7891103d674527192760442469888e553ffc38ec11f83e76c8a69433197bd7a1db2c057ef65f551d360fa9bfe
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.0...HEAD
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.)
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module RakeAudit
4
- VERSION = '0.1.0'
4
+ VERSION = '0.1.1'
5
5
  end
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.0
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-03 00:00:00.000000000 Z
11
+ date: 2026-06-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: kaminari