protobuf-activerecord 5.0.0 → 6.1.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f1e41b32a91cbfc0050107de1897bd18162dae37b356988ee129c3da3790ad3b
4
- data.tar.gz: 2a6a93a9dd0b6e5cfd03ab61f237ec03d83257a34bb82515cbd0bd458ec25e4a
3
+ metadata.gz: ec09901cba008bbf89ef4ea81401c104661359dc974a8aa4b8413da0e2744c6d
4
+ data.tar.gz: 6665b1360ce3d1df807a0322af6e87e2bac403157b168149395659d955b7c1a9
5
5
  SHA512:
6
- metadata.gz: 50b705a5cc9ea7396689455ffd57ed96b1c52f1638eff4048cdef8b105b4f00ee6182508f2109f564f741832a7df1676efa1ce8107aa944a8d1154835c86e6ad
7
- data.tar.gz: 18ac80b623292c92b35eee65d7bc1fd07eb924d45a8bb6d36874a78166460c9bdb280b85d9a6ca2f53c8fa7a820118592fcc49bd1788f2226342dd5f918cc04c
6
+ metadata.gz: 7f4269f4137ee3aea4be82a6cac317e60a379f2e346eb503148434b9642a7d8e903b83d23a4cad92344d36f6efbd77c5b088363079904712c70516946e93202d
7
+ data.tar.gz: b611acfd204df5d73772ce5d95b6b19afe4a301456f426693aa7467fc791b7c48d6c7e1d04a9c5b80431426f819b9a5c7ff3ac19f09807244877c9fc4a922a70
@@ -1,4 +1,4 @@
1
1
  ---
2
2
  language: ruby
3
3
  rvm:
4
- - 2.3
4
+ - 2.5
data/README.md CHANGED
@@ -158,7 +158,7 @@ end
158
158
 
159
159
  ### Attribute transformers
160
160
 
161
- Protobuf Active Record handles mapping protobuf message fields to object attributes, but what happens when an attribute doesn't have a matching field? Using the `attribute_from_proto` method, you can define custom attribute transformations. Simply call `attribute_from_prot`, passing it the name of the attribute and a method name or callable (lambda or proc). When creating or updating objects, the transformer will be called and passed the protobuf message.
161
+ Protobuf Active Record handles mapping protobuf message fields to object attributes, but what happens when an attribute doesn't have a matching field? Using the `attribute_from_proto` method, you can define custom attribute transformations. Simply call `attribute_from_proto`, passing it the name of the attribute and a method name or callable (lambda or proc). When creating or updating objects, the transformer will be called and passed the protobuf message.
162
162
 
163
163
  ```Ruby
164
164
  class User < ActiveRecord::Base
@@ -38,14 +38,14 @@ module Protobuf
38
38
  end
39
39
 
40
40
  # :nodoc:
41
- def update_attributes(attributes)
41
+ def update(attributes)
42
42
  attributes = attributes_from_proto(attributes) if attributes.is_a?(::Protobuf::Message)
43
43
 
44
44
  super(attributes)
45
45
  end
46
46
 
47
47
  # :nodoc:
48
- def update_attributes!(attributes)
48
+ def update!(attributes)
49
49
  attributes = attributes_from_proto(attributes) if attributes.is_a?(::Protobuf::Message)
50
50
 
51
51
  super(attributes)
@@ -1,5 +1,5 @@
1
1
  module Protobuf
2
2
  module ActiveRecord
3
- VERSION = "5.0.0"
3
+ VERSION = "6.1.0"
4
4
  end
5
5
  end
@@ -22,8 +22,8 @@ Gem::Specification.new do |spec|
22
22
  ##
23
23
  # Dependencies
24
24
  #
25
- spec.add_dependency "activerecord", "~> 5.0.0"
26
- spec.add_dependency "activesupport", "~> 5.0.0"
25
+ spec.add_dependency "activerecord", "~> 6.1.0"
26
+ spec.add_dependency "activesupport", "~> 6.1.0"
27
27
  spec.add_dependency "concurrent-ruby"
28
28
  spec.add_dependency "heredity", ">= 0.1.1"
29
29
  spec.add_dependency "protobuf", ">= 3.0"
@@ -38,6 +38,6 @@ Gem::Specification.new do |spec|
38
38
  spec.add_development_dependency "rspec-pride", ">= 3.1.0"
39
39
  spec.add_development_dependency "pry-nav"
40
40
  spec.add_development_dependency "simplecov"
41
- spec.add_development_dependency "sqlite3", "~> 1.3.6"
41
+ spec.add_development_dependency "sqlite3", ">= 1.4"
42
42
  spec.add_development_dependency "timecop"
43
43
  end
@@ -44,27 +44,27 @@ describe Protobuf::ActiveRecord::Persistence do
44
44
  end
45
45
  end
46
46
 
47
- describe "#update_attributes" do
47
+ describe "#update" do
48
48
  it "accepts a protobuf message" do
49
49
  expect_any_instance_of(User).to receive(:save)
50
- user.update_attributes(proto)
50
+ user.update(proto)
51
51
  end
52
52
 
53
53
  it "accepts a hash" do
54
54
  expect_any_instance_of(User).to receive(:save)
55
- user.update_attributes(user_attributes)
55
+ user.update(user_attributes)
56
56
  end
57
57
  end
58
58
 
59
- describe "#update_attributes!" do
59
+ describe "#update!" do
60
60
  it "accepts a protobuf message" do
61
61
  expect_any_instance_of(User).to receive(:save!)
62
- user.update_attributes!(proto)
62
+ user.update!(proto)
63
63
  end
64
64
 
65
65
  it "accepts a hash" do
66
66
  expect_any_instance_of(User).to receive(:save!)
67
- user.update_attributes!(user_attributes)
67
+ user.update!(user_attributes)
68
68
  end
69
69
  end
70
70
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: protobuf-activerecord
3
3
  version: !ruby/object:Gem::Version
4
- version: 5.0.0
4
+ version: 6.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Adam Hutchison
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-06-11 00:00:00.000000000 Z
11
+ date: 2020-12-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activerecord
@@ -16,28 +16,28 @@ dependencies:
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: 5.0.0
19
+ version: 6.1.0
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
- version: 5.0.0
26
+ version: 6.1.0
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: activesupport
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
31
  - - "~>"
32
32
  - !ruby/object:Gem::Version
33
- version: 5.0.0
33
+ version: 6.1.0
34
34
  type: :runtime
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
38
  - - "~>"
39
39
  - !ruby/object:Gem::Version
40
- version: 5.0.0
40
+ version: 6.1.0
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: concurrent-ruby
43
43
  requirement: !ruby/object:Gem::Requirement
@@ -182,16 +182,16 @@ dependencies:
182
182
  name: sqlite3
183
183
  requirement: !ruby/object:Gem::Requirement
184
184
  requirements:
185
- - - "~>"
185
+ - - ">="
186
186
  - !ruby/object:Gem::Version
187
- version: 1.3.6
187
+ version: '1.4'
188
188
  type: :development
189
189
  prerelease: false
190
190
  version_requirements: !ruby/object:Gem::Requirement
191
191
  requirements:
192
- - - "~>"
192
+ - - ">="
193
193
  - !ruby/object:Gem::Version
194
- version: 1.3.6
194
+ version: '1.4'
195
195
  - !ruby/object:Gem::Dependency
196
196
  name: timecop
197
197
  requirement: !ruby/object:Gem::Requirement
@@ -260,7 +260,7 @@ homepage: http://github.com/liveh2o/protobuf-activerecord
260
260
  licenses:
261
261
  - MIT
262
262
  metadata: {}
263
- post_install_message:
263
+ post_install_message:
264
264
  rdoc_options: []
265
265
  require_paths:
266
266
  - lib
@@ -275,8 +275,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
275
275
  - !ruby/object:Gem::Version
276
276
  version: '0'
277
277
  requirements: []
278
- rubygems_version: 3.0.3
279
- signing_key:
278
+ rubygems_version: 3.1.2
279
+ signing_key:
280
280
  specification_version: 4
281
281
  summary: Google Protocol Buffers integration for Active Record
282
282
  test_files: