active_decorator 1.3.2 → 1.3.3

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: 3d00316b3198613b67dc2acc5cce77d11a47cf9910efd0a5e3d1eae040a466ed
4
- data.tar.gz: 56034e7c1ad34d076d8829fb69d6b41db1e8ecf0be5c1d2de59d445d9f2200ad
3
+ metadata.gz: '029394fb4c79f67fd71559154ad159840fd13e9635754f0748bf0e489cfdb411'
4
+ data.tar.gz: a668184bfb8b7e77e2b205af385b8d319f161f0a5eb6b98e395b18e91e2e89db
5
5
  SHA512:
6
- metadata.gz: 0c1e4341ac408a03d24a5ff0479d5127f175b4ffd42e3439441a3ce207e07ce8f54429b468c7b120bd2487562f8d76f70e0bab1928eadf311c082858c61e8c29
7
- data.tar.gz: 2c480cf0308dd867d108a152629bcd29b03cd28c43b632a664847149e527e459c3fd13830151064acce473ce2e4ebe2dcb96897c8bd0672ca470416b4fdabcb8
6
+ metadata.gz: 6207c58d396a6d465776ec79b74e20e59f3b04368c045cecaf5d075c13ba64717d3fd636e7ed0eb0106fc816068c3630abeb63561d431454e54913ddc55612ac
7
+ data.tar.gz: 3881e7bc7470797115cdbc7286afb3eff68b6c77ea36b16f1cb11bdc86232c8861cbf3c7df7cf45efa0f2293285a4a73fd8c01f1823b98c87815f9a676ae531c
@@ -11,8 +11,8 @@ before_install:
11
11
  cache: bundler
12
12
 
13
13
  # rvm:
14
- # - 2.6.3
15
- # - 2.5.5
14
+ # - 2.6.6
15
+ # - 2.5.8
16
16
  # - 2.4.6
17
17
  # - 2.3.8
18
18
  # - 2.2.10
@@ -26,34 +26,34 @@ cache: bundler
26
26
 
27
27
  matrix:
28
28
  include:
29
- - rvm: 2.7.0
29
+ - rvm: 2.7.1
30
30
  gemfile: gemfiles/Gemfile-rails.6.0.x
31
- - rvm: 2.7.0
31
+ - rvm: 2.7.1
32
32
  gemfile: gemfiles/Gemfile-rails.6.0.x
33
33
  env: API=1
34
34
 
35
- - rvm: 2.6.3
35
+ - rvm: 2.6.6
36
36
  gemfile: gemfiles/Gemfile-rails.6.0.x
37
- - rvm: 2.6.3
37
+ - rvm: 2.6.6
38
38
  gemfile: gemfiles/Gemfile-rails.6.0.x
39
39
  env: API=1
40
- - rvm: 2.6.3
40
+ - rvm: 2.6.6
41
41
  gemfile: gemfiles/Gemfile-rails.5.2.x
42
- - rvm: 2.6.3
42
+ - rvm: 2.6.6
43
43
  gemfile: gemfiles/Gemfile-rails.5.2.x
44
44
  env: API=1
45
- - rvm: 2.6.3
45
+ - rvm: 2.6.6
46
46
  gemfile: gemfiles/Gemfile-rails.5.1.x
47
- - rvm: 2.6.3
47
+ - rvm: 2.6.6
48
48
  gemfile: gemfiles/Gemfile-rails.5.1.x
49
49
  env: API=1
50
- - rvm: 2.6.3
50
+ - rvm: 2.6.6
51
51
  gemfile: gemfiles/Gemfile-rails.5.0.x
52
- - rvm: 2.6.3
52
+ - rvm: 2.6.6
53
53
  gemfile: gemfiles/Gemfile-rails.5.0.x
54
54
  env: API=1
55
55
 
56
- - rvm: 2.5.5
56
+ - rvm: 2.5.8
57
57
  gemfile: gemfiles/Gemfile-rails.5.2.x
58
58
 
59
59
  - rvm: 2.4.6
@@ -1,3 +1,7 @@
1
+ ## 1.3.3
2
+
3
+ * Fixed Ruby 2.7 keyword arguments warning [@pocke]
4
+
1
5
  ## 1.3.2
2
6
 
3
7
  * Fixed NameError on ActionController::API controllers without jbuilder enhancement [@kamillle]
@@ -25,5 +25,6 @@ module ActiveDecorator
25
25
  raise e1
26
26
  end
27
27
  end
28
+ ruby2_keywords :method_missing if respond_to?(:ruby2_keywords, true)
28
29
  end
29
30
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module ActiveDecorator
4
- VERSION = '1.3.2'
4
+ VERSION = '1.3.3'
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: active_decorator
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.2
4
+ version: 1.3.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Akira Matsuda
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-01-06 00:00:00.000000000 Z
11
+ date: 2020-09-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport
@@ -195,7 +195,7 @@ homepage: https://github.com/amatsuda/active_decorator
195
195
  licenses:
196
196
  - MIT
197
197
  metadata: {}
198
- post_install_message:
198
+ post_install_message:
199
199
  rdoc_options: []
200
200
  require_paths:
201
201
  - lib
@@ -210,8 +210,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
210
210
  - !ruby/object:Gem::Version
211
211
  version: '0'
212
212
  requirements: []
213
- rubygems_version: 3.0.3
214
- signing_key:
213
+ rubygems_version: 3.2.0.rc.1
214
+ signing_key:
215
215
  specification_version: 4
216
216
  summary: A simple and Rubyish view helper for Rails
217
217
  test_files: