explicit-parameters 0.2.0 → 0.3.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
  SHA1:
3
- metadata.gz: 40398cce3128c89367609acaba917403bcdb5016
4
- data.tar.gz: 71262a6bbc997abcdc385f91d8eeefb73989098b
3
+ metadata.gz: 8007f1c3362222d21bc09f01d1d3ce1406f176ba
4
+ data.tar.gz: 1542bd6f3733ebd9caa701aac35220789b584459
5
5
  SHA512:
6
- metadata.gz: d3cd1f16c5eaf0fef10669a363ce3f739174f0223de527e03f350579a88e1193a01d52ef9c33707925d4f17046f775827bdf8d33ef2dc2670edd1131a9135c79
7
- data.tar.gz: 8193ca84de290b2f55585eafb4455552eeca5272d1c35cc5940c742345652f6aeeeda160c601c6ce6270f7aa4f5f22afd6ddaa38df4c549b1fa544de019cd14e
6
+ metadata.gz: 61b2789a592f1f1f38515a811617547715a69e5bc218cc443696d47f128dc249b1c995bfdacb968d6ae5c92b9ebcde771af7e578753b36606f48d95b88f15740
7
+ data.tar.gz: f298ac5df2438dab73eda4b5d5f1c3255657747f8ac79141d580c46ab0e537f0dbc40ea7b7809d688411f8214c40eb8f6b39f84576f5bf6eacbb7fe8ecd7e637
@@ -3,5 +3,5 @@ cache: bundler
3
3
  rvm:
4
4
  2.2.3
5
5
  gemfile:
6
- - gemfiles/Gemfile.rails-4.2
7
6
  - gemfiles/Gemfile.rails-5.0
7
+ - gemfiles/Gemfile.rails-5.1
@@ -17,8 +17,8 @@ Gem::Specification.new do |spec|
17
17
  spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
18
18
  spec.require_paths = ['lib']
19
19
 
20
- spec.add_dependency 'actionpack', '>= 4.2', '< 5.1'
21
- spec.add_dependency 'activemodel', '>= 4.2', '< 5.1'
20
+ spec.add_dependency 'actionpack', '>= 5.0', '< 5.3'
21
+ spec.add_dependency 'activemodel', '>= 5.0', '< 5.3'
22
22
  spec.add_dependency 'virtus', '~> 1.0'
23
23
 
24
24
  spec.add_development_dependency 'bundler', '~> 1.7'
@@ -1,7 +1,7 @@
1
1
  source 'https://rubygems.org'
2
2
 
3
- gem 'actionpack', '~> 5.0.0'
4
- gem 'activemodel', '~> 5.0.0'
3
+ gem 'actionpack', '~> 5.0'
4
+ gem 'activemodel', '~> 5.0'
5
5
  gem 'virtus', '~> 1.0'
6
6
  gem 'rake', '~> 10.0'
7
7
  gem 'rspec', '~> 3.0'
@@ -1,7 +1,7 @@
1
1
  source 'https://rubygems.org'
2
2
 
3
- gem 'actionpack', '~> 4.2.0'
4
- gem 'activemodel', '~> 4.2.0'
3
+ gem 'actionpack', '~> 5.1'
4
+ gem 'activemodel', '~> 5.1'
5
5
  gem 'virtus', '~> 1.0'
6
6
  gem 'rake', '~> 10.0'
7
7
  gem 'rspec', '~> 3.0'
@@ -1,60 +1,53 @@
1
1
  GEM
2
2
  remote: https://rubygems.org/
3
3
  specs:
4
- actionpack (4.2.7)
5
- actionview (= 4.2.7)
6
- activesupport (= 4.2.7)
7
- rack (~> 1.6)
8
- rack-test (~> 0.6.2)
9
- rails-dom-testing (~> 1.0, >= 1.0.5)
4
+ actionpack (5.1.0)
5
+ actionview (= 5.1.0)
6
+ activesupport (= 5.1.0)
7
+ rack (~> 2.0)
8
+ rack-test (~> 0.6.3)
9
+ rails-dom-testing (~> 2.0)
10
10
  rails-html-sanitizer (~> 1.0, >= 1.0.2)
11
- actionview (4.2.7)
12
- activesupport (= 4.2.7)
11
+ actionview (5.1.0)
12
+ activesupport (= 5.1.0)
13
13
  builder (~> 3.1)
14
- erubis (~> 2.7.0)
15
- rails-dom-testing (~> 1.0, >= 1.0.5)
16
- rails-html-sanitizer (~> 1.0, >= 1.0.2)
17
- activemodel (4.2.7)
18
- activesupport (= 4.2.7)
19
- builder (~> 3.1)
20
- activesupport (4.2.7)
14
+ erubi (~> 1.4)
15
+ rails-dom-testing (~> 2.0)
16
+ rails-html-sanitizer (~> 1.0, >= 1.0.3)
17
+ activemodel (5.1.0)
18
+ activesupport (= 5.1.0)
19
+ activesupport (5.1.0)
20
+ concurrent-ruby (~> 1.0, >= 1.0.2)
21
21
  i18n (~> 0.7)
22
- json (~> 1.7, >= 1.7.7)
23
22
  minitest (~> 5.1)
24
- thread_safe (~> 0.3, >= 0.3.4)
25
23
  tzinfo (~> 1.1)
26
24
  axiom-types (0.1.1)
27
25
  descendants_tracker (~> 0.0.4)
28
26
  ice_nine (~> 0.11.0)
29
27
  thread_safe (~> 0.3, >= 0.3.1)
30
- builder (3.2.2)
28
+ builder (3.2.3)
31
29
  coercible (1.0.0)
32
30
  descendants_tracker (~> 0.0.1)
31
+ concurrent-ruby (1.0.5)
33
32
  descendants_tracker (0.0.4)
34
33
  thread_safe (~> 0.3, >= 0.3.1)
35
- diff-lcs (1.2.5)
34
+ diff-lcs (1.3)
36
35
  equalizer (0.0.11)
37
- erubis (2.7.0)
38
- i18n (0.7.0)
36
+ erubi (1.6.0)
37
+ i18n (0.8.1)
39
38
  ice_nine (0.11.2)
40
- json (1.8.3)
41
39
  loofah (2.0.3)
42
40
  nokogiri (>= 1.5.9)
43
41
  mini_portile2 (2.1.0)
44
- minitest (5.9.0)
45
- nokogiri (1.6.8)
42
+ minitest (5.10.1)
43
+ nokogiri (1.7.1)
46
44
  mini_portile2 (~> 2.1.0)
47
- pkg-config (~> 1.1.7)
48
- pkg-config (1.1.7)
49
- rack (1.6.4)
45
+ rack (2.0.1)
50
46
  rack-test (0.6.3)
51
47
  rack (>= 1.0)
52
- rails-deprecated_sanitizer (1.0.3)
53
- activesupport (>= 4.2.0.alpha)
54
- rails-dom-testing (1.0.7)
55
- activesupport (>= 4.2.0.beta, < 5.0)
56
- nokogiri (~> 1.6.0)
57
- rails-deprecated_sanitizer (>= 1.0.1)
48
+ rails-dom-testing (2.0.2)
49
+ activesupport (>= 4.2.0, < 6.0)
50
+ nokogiri (~> 1.6)
58
51
  rails-html-sanitizer (1.0.3)
59
52
  loofah (~> 2.0)
60
53
  rake (10.5.0)
@@ -62,7 +55,7 @@ GEM
62
55
  rspec-core (~> 3.5.0)
63
56
  rspec-expectations (~> 3.5.0)
64
57
  rspec-mocks (~> 3.5.0)
65
- rspec-core (3.5.1)
58
+ rspec-core (3.5.4)
66
59
  rspec-support (~> 3.5.0)
67
60
  rspec-expectations (3.5.0)
68
61
  diff-lcs (>= 1.2.0, < 2.0)
@@ -71,8 +64,8 @@ GEM
71
64
  diff-lcs (>= 1.2.0, < 2.0)
72
65
  rspec-support (~> 3.5.0)
73
66
  rspec-support (3.5.0)
74
- thread_safe (0.3.5)
75
- tzinfo (1.2.2)
67
+ thread_safe (0.3.6)
68
+ tzinfo (1.2.3)
76
69
  thread_safe (~> 0.1)
77
70
  virtus (1.0.5)
78
71
  axiom-types (~> 0.1)
@@ -84,11 +77,11 @@ PLATFORMS
84
77
  ruby
85
78
 
86
79
  DEPENDENCIES
87
- actionpack (~> 4.2.0)
88
- activemodel (~> 4.2.0)
80
+ actionpack (~> 5.1)
81
+ activemodel (~> 5.1)
89
82
  rake (~> 10.0)
90
83
  rspec (~> 3.0)
91
84
  virtus (~> 1.0)
92
85
 
93
86
  BUNDLED WITH
94
- 1.12.3
87
+ 1.14.6
@@ -1,3 +1,3 @@
1
1
  module ExplicitParameters
2
- VERSION = '0.2.0'
2
+ VERSION = '0.3.0'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: explicit-parameters
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jean Boussier
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-07-18 00:00:00.000000000 Z
11
+ date: 2017-05-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: actionpack
@@ -16,40 +16,40 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: '4.2'
19
+ version: '5.0'
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
- version: '5.1'
22
+ version: '5.3'
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
26
26
  requirements:
27
27
  - - ">="
28
28
  - !ruby/object:Gem::Version
29
- version: '4.2'
29
+ version: '5.0'
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
- version: '5.1'
32
+ version: '5.3'
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: activemodel
35
35
  requirement: !ruby/object:Gem::Requirement
36
36
  requirements:
37
37
  - - ">="
38
38
  - !ruby/object:Gem::Version
39
- version: '4.2'
39
+ version: '5.0'
40
40
  - - "<"
41
41
  - !ruby/object:Gem::Version
42
- version: '5.1'
42
+ version: '5.3'
43
43
  type: :runtime
44
44
  prerelease: false
45
45
  version_requirements: !ruby/object:Gem::Requirement
46
46
  requirements:
47
47
  - - ">="
48
48
  - !ruby/object:Gem::Version
49
- version: '4.2'
49
+ version: '5.0'
50
50
  - - "<"
51
51
  - !ruby/object:Gem::Version
52
- version: '5.1'
52
+ version: '5.3'
53
53
  - !ruby/object:Gem::Dependency
54
54
  name: virtus
55
55
  requirement: !ruby/object:Gem::Requirement
@@ -121,10 +121,10 @@ files:
121
121
  - README.md
122
122
  - Rakefile
123
123
  - explicit-parameters.gemspec
124
- - gemfiles/Gemfile.rails-4.2
125
- - gemfiles/Gemfile.rails-4.2.lock
126
124
  - gemfiles/Gemfile.rails-5.0
127
125
  - gemfiles/Gemfile.rails-5.0.lock
126
+ - gemfiles/Gemfile.rails-5.1
127
+ - gemfiles/Gemfile.rails-5.1.lock
128
128
  - lib/explicit-parameters.rb
129
129
  - lib/explicit_parameters.rb
130
130
  - lib/explicit_parameters/controller.rb