twirp_rails 0.4.4 → 0.4.5

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: 974aa187c0fa4e596194362b3aafc3b34e12baacd05b502a1a09bb808cf3ab0c
4
- data.tar.gz: 9f121868824a0cda89c27a8e77d163640ae3b2b23f714c7122353abe2d39bd65
3
+ metadata.gz: 477944b4a12be7ec5c354f3e545be24ffbd562a9817acf0bd9235190bc90325e
4
+ data.tar.gz: 108ecd574533f26d780b02312940ed7ced9fd992b04e33effb9ac30d5d9e774a
5
5
  SHA512:
6
- metadata.gz: 8898c1ae5bae4e1f024a69a5a29ac71a1130d8198fc376f18a6647f49228b2bbfb9d9b998f16e967a5036c8543e6e373374822e440685b0d6bb14033ecc359b1
7
- data.tar.gz: 6515db4669525602ad53d090af51239ede7a7e2980981704751d210d6c8541e0405c1e8428dc0a13d9267e0140de95db4f93989c09b002185cb060e622627ac7
6
+ metadata.gz: 9d36af88586289fdcd24881e3da96ecd861410481a69452be77c378ffd08b025eedbb62cd5cb939bb967c01139dd7c4b29cd00498373c6caa5631f21a29d4923
7
+ data.tar.gz: 2807c0a3972dbda9867c750cc5acbaa64b0912eba7ff33e351edec650cc25d85b6e0841a9ba2bcb49499c94d5472246444dd787cdec1532c5d1ce8db72c085a0
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- twirp_rails (0.4.4)
4
+ twirp_rails (0.4.5)
5
5
  railties (~> 6.0)
6
6
  twirp (~> 1)
7
7
 
@@ -38,7 +38,7 @@ GEM
38
38
  generator_spec (0.9.4)
39
39
  activesupport (>= 3.0.0)
40
40
  railties (>= 3.0.0)
41
- google-protobuf (3.11.4-universal-darwin)
41
+ google-protobuf (3.12.0-universal-darwin)
42
42
  i18n (1.8.2)
43
43
  concurrent-ruby (~> 1.0)
44
44
  loofah (2.4.0)
@@ -91,8 +91,8 @@ GEM
91
91
  rspec-support (3.9.2)
92
92
  thor (1.0.1)
93
93
  thread_safe (0.3.6)
94
- twirp (1.4.1)
95
- faraday (~> 0)
94
+ twirp (1.5.0)
95
+ faraday (< 2)
96
96
  google-protobuf (~> 3.0, >= 3.0.0)
97
97
  tzinfo (1.2.6)
98
98
  thread_safe (~> 0.1)
@@ -16,8 +16,8 @@ module TwirpRails
16
16
  end
17
17
  # rubocop:enable Style/MethodMissingSuper
18
18
 
19
- def respond_to_missing?(method)
20
- handler.respond_to?(method)
19
+ def respond_to_missing?(method, include_all = false)
20
+ handler.respond_to?(method, include_all)
21
21
  end
22
22
  end
23
23
 
@@ -50,8 +50,8 @@ module TwirpRails
50
50
  end
51
51
  # rubocop:enable Style/MethodMissingSuper
52
52
 
53
- def respond_to_missing?(method)
54
- handler.respond_to?(method)
53
+ def respond_to_missing?(method, include_all = false)
54
+ handler.respond_to?(method, include_all)
55
55
  end
56
56
  end
57
57
 
@@ -1,3 +1,3 @@
1
1
  module TwirpRails
2
- VERSION = '0.4.4'.freeze
2
+ VERSION = '0.4.5'.freeze
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: twirp_rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.4
4
+ version: 0.4.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Alexandr Zimin
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2020-05-07 00:00:00.000000000 Z
11
+ date: 2020-05-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: twirp
@@ -182,7 +182,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
182
182
  - !ruby/object:Gem::Version
183
183
  version: '0'
184
184
  requirements: []
185
- rubygems_version: 3.0.6
185
+ rubygems_version: 3.1.2
186
186
  signing_key:
187
187
  specification_version: 4
188
188
  summary: Use twirp-ruby from rails.