easy_params 0.1.1 → 0.1.2

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: 27e3c230f7d9f7bfb8c11883d8d840e88731de7447f69d9ffadcf30e9d635c6d
4
- data.tar.gz: 18ab9ceb9fed191c7018eae8241eff8828e8acc056b6e2978687226a4150a871
3
+ metadata.gz: 7fa1c9f8e4ce3f3c85ab3090eccf995ed0b0120cb43e09be1c0fcc2c4488df33
4
+ data.tar.gz: f4ec982d99cb8e9b44a0de2e486a1553d30280a45269b8e9dbc7e92c10bfadcf
5
5
  SHA512:
6
- metadata.gz: ceaa9ca4ac28478e3144951c6f1c9036f1f11bb19bfff6a7d2358697ab42b150b0048c88c8952283557fa660d38390da129b8a370f8d67b4878d47143bf58380
7
- data.tar.gz: 3b02340186d12f648919ed22a37f8844b91aa992b14e668704f49a78bc381a4de7235254d32bc40e86ca5661aeaef954e2f258bfa4ea09d36d4e0793bbb66305
6
+ metadata.gz: d7af631b094c9a728575079cf9f7b8056b8f80bf3a90450978aa91f14b5df5358a889ba8a345792155c9de8d7afb5d3b088809a3da520fd92a0480766d4bda94
7
+ data.tar.gz: 6cb3e0d9080a1f91f2422e7202c851adb0f98ad9c22fdde21d741e197a0bb69ff19e49ea53daf71b08bf86788511425dcb8f1af71f04f63a59dabf5438afb1c2
data/.gitignore CHANGED
File without changes
data/.rspec CHANGED
File without changes
data/.travis.yml CHANGED
File without changes
data/CODE_OF_CONDUCT.md CHANGED
File without changes
data/Gemfile CHANGED
File without changes
data/Gemfile.lock CHANGED
@@ -1,35 +1,34 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- easy_params (0.1.1)
5
- activemodel (>= 3.2, < 6.1)
4
+ easy_params (0.1.2)
5
+ activemodel (>= 3.2, < 8)
6
6
  dry-struct (~> 1.3.0)
7
7
  dry-types (~> 1.4.0)
8
8
 
9
9
  GEM
10
10
  remote: https://rubygems.org/
11
11
  specs:
12
- activemodel (6.0.3.5)
13
- activesupport (= 6.0.3.5)
14
- activesupport (6.0.3.5)
12
+ activemodel (7.0.1)
13
+ activesupport (= 7.0.1)
14
+ activesupport (7.0.1)
15
15
  concurrent-ruby (~> 1.0, >= 1.0.2)
16
- i18n (>= 0.7, < 2)
17
- minitest (~> 5.1)
18
- tzinfo (~> 1.1)
19
- zeitwerk (~> 2.2, >= 2.2.2)
20
- concurrent-ruby (1.1.8)
16
+ i18n (>= 1.6, < 2)
17
+ minitest (>= 5.1)
18
+ tzinfo (~> 2.0)
19
+ concurrent-ruby (1.1.9)
21
20
  diff-lcs (1.4.4)
22
- dry-configurable (0.12.1)
21
+ dry-configurable (0.14.0)
23
22
  concurrent-ruby (~> 1.0)
24
- dry-core (~> 0.5, >= 0.5.0)
25
- dry-container (0.7.2)
23
+ dry-core (~> 0.6)
24
+ dry-container (0.9.0)
26
25
  concurrent-ruby (~> 1.0)
27
- dry-configurable (~> 0.1, >= 0.1.3)
28
- dry-core (0.5.0)
26
+ dry-configurable (~> 0.13, >= 0.13.0)
27
+ dry-core (0.7.1)
29
28
  concurrent-ruby (~> 1.0)
30
29
  dry-equalizer (0.3.0)
31
- dry-inflector (0.2.0)
32
- dry-logic (1.1.0)
30
+ dry-inflector (0.2.1)
31
+ dry-logic (1.2.0)
33
32
  concurrent-ruby (~> 1.0)
34
33
  dry-core (~> 0.5, >= 0.5)
35
34
  dry-struct (1.3.0)
@@ -44,10 +43,10 @@ GEM
44
43
  dry-equalizer (~> 0.3)
45
44
  dry-inflector (~> 0.1, >= 0.1.2)
46
45
  dry-logic (~> 1.0, >= 1.0.2)
47
- i18n (1.8.9)
46
+ i18n (1.9.1)
48
47
  concurrent-ruby (~> 1.0)
49
48
  ice_nine (0.11.2)
50
- minitest (5.14.4)
49
+ minitest (5.15.0)
51
50
  rake (12.3.3)
52
51
  rspec (3.10.0)
53
52
  rspec-core (~> 3.10.0)
@@ -64,10 +63,8 @@ GEM
64
63
  rspec-support (3.10.0)
65
64
  rspec_vars_helper (0.1.0)
66
65
  rspec (>= 2.4)
67
- thread_safe (0.3.6)
68
- tzinfo (1.2.9)
69
- thread_safe (~> 0.1)
70
- zeitwerk (2.4.2)
66
+ tzinfo (2.0.4)
67
+ concurrent-ruby (~> 1.0)
71
68
 
72
69
  PLATFORMS
73
70
  ruby
@@ -79,4 +76,4 @@ DEPENDENCIES
79
76
  rspec_vars_helper (~> 0.1)
80
77
 
81
78
  BUNDLED WITH
82
- 2.1.4
79
+ 2.2.3
data/LICENSE.txt CHANGED
File without changes
data/README.md CHANGED
File without changes
data/Rakefile CHANGED
File without changes
data/easy_params.gemspec CHANGED
@@ -29,7 +29,7 @@ Gem::Specification.new do |spec|
29
29
 
30
30
  spec.required_ruby_version = '>= 2.4'
31
31
 
32
- version_string = ['>= 3.2', '< 6.1']
32
+ version_string = ['>= 3.2', '< 8']
33
33
 
34
34
  spec.add_runtime_dependency 'activemodel', version_string
35
35
 
File without changes
File without changes
File without changes
@@ -1,3 +1,3 @@
1
1
  module EasyParams
2
- VERSION = '0.1.1'.freeze
2
+ VERSION = '0.1.2'.freeze
3
3
  end
data/lib/easy_params.rb CHANGED
File without changes
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: easy_params
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrii Baran
8
- autorequire:
8
+ autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2021-03-23 00:00:00.000000000 Z
11
+ date: 2022-01-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activemodel
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3.2'
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
- version: '6.1'
22
+ version: '8'
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3.2'
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
- version: '6.1'
32
+ version: '8'
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: dry-struct
35
35
  requirement: !ruby/object:Gem::Requirement
@@ -118,7 +118,7 @@ metadata:
118
118
  allowed_push_host: https://rubygems.org
119
119
  homepage_uri: https://github.com/andriy-baran/easy_params
120
120
  source_code_uri: https://github.com/andriy-baran/easy_params
121
- post_install_message:
121
+ post_install_message:
122
122
  rdoc_options: []
123
123
  require_paths:
124
124
  - lib
@@ -133,8 +133,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
133
133
  - !ruby/object:Gem::Version
134
134
  version: '0'
135
135
  requirements: []
136
- rubygems_version: 3.1.4
137
- signing_key:
136
+ rubygems_version: 3.2.3
137
+ signing_key:
138
138
  specification_version: 4
139
139
  summary: A tool that handles common tasks needed when working with params in Rails
140
140
  test_files: []