shamu 0.0.14 → 0.0.15

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: c273a3ff9a688ea2ad15efb7f3136aa203fecda6
4
- data.tar.gz: a9f5d0e08e4cdda4e8147c0b58b4c8ab6b46ab63
3
+ metadata.gz: 7de984c9428165d200372dc8eb38e8a9cc48958e
4
+ data.tar.gz: 87b753cfa2ad1e214a6603cbf7d78d19ce7ada40
5
5
  SHA512:
6
- metadata.gz: 76c8c84815e68711e085d0a3f372e9b815ffadefb48c76606d3351539dd1ab6e85266f7b548963dd481f79362c8ddcd96d0e3c8e056602f4d8c110b9ec181b67
7
- data.tar.gz: 791dc7e9eb66fa9f45ea7fee32d7292e93e4faa24c6cf083b41570269251d450a3155997b894f9a1ec3cb50fd544b9a2322a0387e3a96fe2537a2d9919e67366
6
+ metadata.gz: d776c1c5812138503502f9d3f0e8ac0b9f4c1ccf0f14528153da942d1758d11c733e50aba1c6f98d1c94eaed655caf841c883f716b0ab4dd2ed45d0de7ec32a6
7
+ data.tar.gz: 881b98c5de187f163c58147b5090a7c73b1b9edd8755c5ddde163ba6955d6b097941fd27f435b9ce3f1af2f5795c1cc13cb891d5756285acb7c8277e2a4d128d
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- shamu (0.0.14)
4
+ shamu (0.0.15)
5
5
  activemodel (>= 5.0)
6
6
  activesupport (>= 5.0)
7
7
  crc32 (~> 1)
@@ -18,7 +18,7 @@ module Shamu
18
18
 
19
19
  # Records an auditable event in persistent storage.
20
20
  # @param [Transaction] transaction
21
- # @return [AuditRecord] the persisted record.
21
+ # @return [Result] indicates if logging was successful
22
22
  def commit( transaction )
23
23
  fail NotImplementedError
24
24
  end
@@ -19,4 +19,4 @@ module Shamu
19
19
 
20
20
  end
21
21
  end
22
- end
22
+ end
@@ -4,9 +4,7 @@ module Shamu
4
4
  # Writes audit logs to the {Shamu::Logger}.
5
5
  class LoggingAuditingService < Services::Service
6
6
 
7
- # Records an auditable event in persistent storage.
8
- # @param [Transaction] transaction
9
- # @return [AuditRecord] the persisted record.
7
+ # (see AuditingService#commit)
10
8
  def commit( transaction )
11
9
  logger.unknown "AUDIT TRANSACTION action: #{ transaction.action } entity: #{ transaction.entity_path } by user: #{ transaction.user_id_chain } changes: #{ transaction.changes }" # rubocop:disable Metrics/LineLength
12
10
  end
@@ -3,7 +3,6 @@ module Shamu
3
3
 
4
4
  # An audit record of a discrete change transaction.
5
5
  class Transaction < Services::Request
6
- include Shamu::Attributes
7
6
  include Entities::EntityPath
8
7
 
9
8
  # ============================================================================
@@ -55,4 +54,4 @@ module Shamu
55
54
 
56
55
  end
57
56
  end
58
- end
57
+ end
@@ -2,7 +2,6 @@ module Shamu
2
2
 
3
3
  # {include:file:lib/shamu/auditing/README.md}
4
4
  module Auditing
5
- require "shamu/auditing/audit_record"
6
5
  require "shamu/auditing/auditing_service"
7
6
  require "shamu/auditing/logging_auditing_service"
8
7
  require "shamu/auditing/list_scope"
data/lib/shamu/version.rb CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  module Shamu
4
4
  # The primary version number
5
- VERSION_NUMBER = "0.0.14"
5
+ VERSION_NUMBER = "0.0.15"
6
6
 
7
7
  # Version suffix such as 'beta' or 'alpha'
8
8
  VERSION_SUFFIX = ""
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: shamu
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.14
4
+ version: 0.0.15
5
5
  platform: ruby
6
6
  authors:
7
7
  - Paul Alexander
@@ -239,7 +239,6 @@ files:
239
239
  - lib/shamu/attributes/validators/valid_validator.rb
240
240
  - lib/shamu/auditing.rb
241
241
  - lib/shamu/auditing/README.md
242
- - lib/shamu/auditing/audit_record.rb
243
242
  - lib/shamu/auditing/auditing_service.rb
244
243
  - lib/shamu/auditing/list_scope.rb
245
244
  - lib/shamu/auditing/logging_auditing_service.rb
@@ -1,32 +0,0 @@
1
- module Shamu
2
- module Auditing
3
- class AuditRecord < Entities::Entity
4
-
5
- # ============================================================================
6
- # @!group Attributes
7
- #
8
-
9
- model :record
10
-
11
- # @!attribute
12
- # @return [Integer]
13
- attribute :id, on: :record
14
-
15
- # @!attribute
16
- # @return [String] an {EntityPath} from the root to the target entity.
17
- attribute :entity_path, on: :record
18
-
19
- # @!attribute
20
- # @return [Time] when the transaction occured.
21
- attribute :timestamp, on: :record
22
-
23
- # @!attribute
24
- # @return [Hash] the changes requested.
25
- attribute :changes, on: :record
26
-
27
- #
28
- # @!endgroup Attributes
29
-
30
- end
31
- end
32
- end