snapcher 0.1.3 → 0.1.5

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
  SHA256:
3
- metadata.gz: bb0219dbda7b283ffdb480ba262e9606b5862d2b59586957a009b0fbd43f989b
4
- data.tar.gz: ce243b98bbd148518ea544bdc199f6b74d675a3377068ea9d64ae838dc19fb85
3
+ metadata.gz: bae931c7528d7bffe91dec097d6ead260efd735ab12382162b4e8882b7d8e8c4
4
+ data.tar.gz: 9d53f6a77bfef51b30fff83a3f462534a8f3fea9832af6c1bb4eb4e56baaf5f8
5
5
  SHA512:
6
- metadata.gz: ac50bb5725d7ee862152e43cd4939c8ec5e6922d8cbddb265730f7c5119d85e20d149aeb29d6df312020006b3b6593d99c82bd8292c4b10f20fc9fb910563aec
7
- data.tar.gz: d3298d3a7b839c5a9e47a1ee98c5ea1926b5d5fdb77b636a99892eecc8031560c094ab5704616d79bab66d54b808cf96eadc201e49a1780bbb40fbbc96aaa0ae
6
+ metadata.gz: 37f7bf0ef0bbef1bf9a9891586305680f3af12041511c9ab019fa7950eb0a0ef26751200514823bc3f2b3eb735521c5f8f3b95ef307630f99776509da0c70aff
7
+ data.tar.gz: e92d5dffce405f03d8b832ad8dc32fcd18ece0bb6e2dc99379509cfe7b46c15978fa61fb379463786e78a4a6c01312efa3946a287cda030606d909487fa19d23
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- snapcher (0.1.3)
4
+ snapcher (0.1.5)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
@@ -72,7 +72,6 @@ GEM
72
72
  minitest (>= 5.1)
73
73
  tzinfo (~> 2.0)
74
74
  ast (2.4.2)
75
- base64 (0.1.1)
76
75
  builder (3.2.4)
77
76
  concurrent-ruby (1.2.2)
78
77
  crass (1.0.6)
@@ -185,8 +184,7 @@ GEM
185
184
  rspec-mocks (~> 3.12)
186
185
  rspec-support (~> 3.12)
187
186
  rspec-support (3.12.1)
188
- rubocop (1.57.1)
189
- base64 (~> 0.1.1)
187
+ rubocop (1.57.2)
190
188
  json (~> 2.3)
191
189
  language_server-protocol (>= 3.17.0)
192
190
  parallel (~> 1.10)
@@ -197,7 +195,7 @@ GEM
197
195
  rubocop-ast (>= 1.28.1, < 2.0)
198
196
  ruby-progressbar (~> 1.7)
199
197
  unicode-display_width (>= 2.4.0, < 3.0)
200
- rubocop-ast (1.29.0)
198
+ rubocop-ast (1.30.0)
201
199
  parser (>= 3.2.1.0)
202
200
  rubocop-capybara (2.19.0)
203
201
  rubocop (~> 1.41)
@@ -10,7 +10,7 @@ class <%= migration_class_name %> < <%= migration_parent %>
10
10
  t.column :before_params, :string
11
11
  t.column :after_params, :string
12
12
  t.column :action, :string
13
- t.column :created_at, :datetime
13
+ t.timestamps null: false
14
14
  end
15
15
  end
16
16
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Snapcher
4
- VERSION = "0.1.3"
4
+ VERSION = "0.1.5"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: snapcher
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.3
4
+ version: 0.1.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - ryosk7
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-10-25 00:00:00.000000000 Z
11
+ date: 2023-10-27 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: |
14
14
  Snapcher is an ORM extension that logs changes to specific columns to your model.