shields_up 0.20.0 → 0.21.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: e231b9b835565b412ece33c0df6b6e5002fb962e
4
- data.tar.gz: fe0ca1656af7ccd557b30654bac07d69cff56b30
3
+ metadata.gz: c9186517ecd6ae5e0a0b4e3f535355f0878c00f4
4
+ data.tar.gz: f83912c749035d75191ade3218e0660cfe5463c5
5
5
  SHA512:
6
- metadata.gz: 605ff86b64b0d916a3bfc767aabbdcabc801fb58ba5e7fbb2a501965611022323207cde611476ec50b43e2c443afbe83315fb53eaf748f29dc370a7b0e53c32a
7
- data.tar.gz: 24b74f02469248d30932434e307e6dd6685265fe74c5fcd0fd0163e425765e0e5d8ea8a7f9cec83ab93fedf0a9cffcc921aac2ea72c8c77fe0cc7cdf094d3748
6
+ metadata.gz: a55ad8b9ecd3e5d7dd24d1a7f52e8033f5c4adbb902145a1166af3161a2d7d6721e7267d1e6a7921af79a9c88e43b08a05df06b3b3f5f3a5804acf62d11ab3da
7
+ data.tar.gz: 13986895d2ca50e269f259171eee28ee1c16fdfcb601f0d94b26360fc0e450ff02bb375374825bb17e263c394a84c1b926b3cdf9001aa636210e99ec25fdfa16
data/Appraisals CHANGED
@@ -1,7 +1,20 @@
1
1
  appraise "activesupport-3.2" do
2
2
  gem 'activesupport', '~> 3.2.0'
3
+ gem 'test-unit', '~> 3.0'
4
+ gem 'minitest', '~> 4.0'
3
5
  end
4
6
 
5
7
  appraise "activesupport-4.0" do
6
8
  gem 'activesupport', '~> 4.0.0'
9
+ gem 'minitest', '~> 4.2'
10
+ end
11
+
12
+ appraise "activesupport-4.1" do
13
+ gem 'activesupport', '~> 4.1.0'
14
+ gem 'minitest', '~> 5.1'
15
+ end
16
+
17
+ appraise "activesupport-4.2" do
18
+ gem 'activesupport', '~> 4.2.4'
19
+ gem 'minitest', '~> 5.1'
7
20
  end
data/Gemfile CHANGED
@@ -6,5 +6,4 @@ gem 'appraisal'
6
6
  gem 'mocha'
7
7
  gem 'activemodel'
8
8
  gem 'rails'
9
- gem 'minitest', '~> 4.0'
10
9
  gem "codeclimate-test-reporter", :require => nil
data/Gemfile.lock CHANGED
@@ -1,8 +1,8 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- shields_up (0.19.0)
5
- activesupport (>= 3.2, < 4.2)
4
+ shields_up (0.21.0)
5
+ activesupport (>= 3.2, < 4.3)
6
6
 
7
7
  GEM
8
8
  remote: https://rubygems.org/
@@ -94,7 +94,6 @@ DEPENDENCIES
94
94
  activemodel
95
95
  appraisal
96
96
  codeclimate-test-reporter
97
- minitest
98
97
  mocha
99
98
  rails
100
99
  shields_up!
@@ -6,8 +6,9 @@ gem "appraisal"
6
6
  gem "mocha"
7
7
  gem "activemodel"
8
8
  gem "rails"
9
- gem "minitest", "~> 4.0"
10
9
  gem "codeclimate-test-reporter", :require => nil
11
10
  gem "activesupport", "~> 3.2.0"
11
+ gem "test-unit", "~> 3.0"
12
+ gem "minitest", "~> 4.0"
12
13
 
13
14
  gemspec :path => "../"
@@ -1,8 +1,8 @@
1
1
  PATH
2
2
  remote: ../
3
3
  specs:
4
- shields_up (0.19.0)
5
- activesupport (>= 3.2, < 4.2)
4
+ shields_up (0.20.0)
5
+ activesupport (>= 3.2, < 4.3)
6
6
 
7
7
  GEM
8
8
  remote: https://rubygems.org/
@@ -58,6 +58,7 @@ GEM
58
58
  metaclass (~> 0.0.1)
59
59
  multi_json (1.11.2)
60
60
  polyglot (0.3.5)
61
+ power_assert (0.2.3)
61
62
  rack (1.4.7)
62
63
  rack-cache (1.2)
63
64
  rack (>= 0.4)
@@ -93,6 +94,8 @@ GEM
93
94
  multi_json (~> 1.0)
94
95
  rack (~> 1.0)
95
96
  tilt (~> 1.1, != 1.3.0)
97
+ test-unit (3.1.3)
98
+ power_assert
96
99
  thor (0.19.1)
97
100
  tilt (1.4.1)
98
101
  treetop (1.4.15)
@@ -112,6 +115,7 @@ DEPENDENCIES
112
115
  mocha
113
116
  rails
114
117
  shields_up!
118
+ test-unit (~> 3.0)
115
119
 
116
120
  BUNDLED WITH
117
121
  1.10.4
@@ -6,8 +6,8 @@ gem "appraisal"
6
6
  gem "mocha"
7
7
  gem "activemodel"
8
8
  gem "rails"
9
- gem "minitest", "~> 4.0"
10
9
  gem "codeclimate-test-reporter", :require => nil
11
10
  gem "activesupport", "~> 4.0.0"
11
+ gem "minitest", "~> 4.2"
12
12
 
13
13
  gemspec :path => "../"
@@ -1,8 +1,8 @@
1
1
  PATH
2
2
  remote: ../
3
3
  specs:
4
- shields_up (0.19.0)
5
- activesupport (>= 3.2, < 4.2)
4
+ shields_up (0.20.0)
5
+ activesupport (>= 3.2, < 4.3)
6
6
 
7
7
  GEM
8
8
  remote: https://rubygems.org/
@@ -91,7 +91,7 @@ DEPENDENCIES
91
91
  activesupport (~> 4.0.0)
92
92
  appraisal
93
93
  codeclimate-test-reporter
94
- minitest (~> 4.0)
94
+ minitest (~> 4.2)
95
95
  mocha
96
96
  rails
97
97
  shields_up!
@@ -6,8 +6,8 @@ gem "appraisal"
6
6
  gem "mocha"
7
7
  gem "activemodel"
8
8
  gem "rails"
9
- gem "minitest", "~> 5.0"
10
9
  gem "codeclimate-test-reporter", :require => nil
11
10
  gem "activesupport", "~> 4.1.0"
11
+ gem "minitest", "~> 5.1"
12
12
 
13
13
  gemspec :path => "../"
@@ -1,8 +1,8 @@
1
1
  PATH
2
2
  remote: ../
3
3
  specs:
4
- shields_up (0.19.0)
5
- activesupport (>= 3.2, < 4.2)
4
+ shields_up (0.20.0)
5
+ activesupport (>= 3.2, < 4.3)
6
6
 
7
7
  GEM
8
8
  remote: https://rubygems.org/
@@ -92,10 +92,10 @@ PLATFORMS
92
92
 
93
93
  DEPENDENCIES
94
94
  activemodel
95
- activesupport (~> 4.1.12)
95
+ activesupport (~> 4.1.0)
96
96
  appraisal
97
97
  codeclimate-test-reporter
98
- minitest (~> 5.0)
98
+ minitest (~> 5.1)
99
99
  mocha
100
100
  rails
101
101
  shields_up!
@@ -0,0 +1,13 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "appraisal"
6
+ gem "mocha"
7
+ gem "activemodel"
8
+ gem "rails"
9
+ gem "codeclimate-test-reporter", :require => nil
10
+ gem "activesupport", "~> 4.2.4"
11
+ gem "minitest", "~> 5.1"
12
+
13
+ gemspec :path => "../"
@@ -0,0 +1,129 @@
1
+ PATH
2
+ remote: ../
3
+ specs:
4
+ shields_up (0.20.0)
5
+ activesupport (>= 3.2, < 4.3)
6
+
7
+ GEM
8
+ remote: https://rubygems.org/
9
+ specs:
10
+ actionmailer (4.2.4)
11
+ actionpack (= 4.2.4)
12
+ actionview (= 4.2.4)
13
+ activejob (= 4.2.4)
14
+ mail (~> 2.5, >= 2.5.4)
15
+ rails-dom-testing (~> 1.0, >= 1.0.5)
16
+ actionpack (4.2.4)
17
+ actionview (= 4.2.4)
18
+ activesupport (= 4.2.4)
19
+ rack (~> 1.6)
20
+ rack-test (~> 0.6.2)
21
+ rails-dom-testing (~> 1.0, >= 1.0.5)
22
+ rails-html-sanitizer (~> 1.0, >= 1.0.2)
23
+ actionview (4.2.4)
24
+ activesupport (= 4.2.4)
25
+ builder (~> 3.1)
26
+ erubis (~> 2.7.0)
27
+ rails-dom-testing (~> 1.0, >= 1.0.5)
28
+ rails-html-sanitizer (~> 1.0, >= 1.0.2)
29
+ activejob (4.2.4)
30
+ activesupport (= 4.2.4)
31
+ globalid (>= 0.3.0)
32
+ activemodel (4.2.4)
33
+ activesupport (= 4.2.4)
34
+ builder (~> 3.1)
35
+ activerecord (4.2.4)
36
+ activemodel (= 4.2.4)
37
+ activesupport (= 4.2.4)
38
+ arel (~> 6.0)
39
+ activesupport (4.2.4)
40
+ i18n (~> 0.7)
41
+ json (~> 1.7, >= 1.7.7)
42
+ minitest (~> 5.1)
43
+ thread_safe (~> 0.3, >= 0.3.4)
44
+ tzinfo (~> 1.1)
45
+ appraisal (2.1.0)
46
+ bundler
47
+ rake
48
+ thor (>= 0.14.0)
49
+ arel (6.0.3)
50
+ builder (3.2.2)
51
+ codeclimate-test-reporter (0.4.8)
52
+ simplecov (>= 0.7.1, < 1.0.0)
53
+ docile (1.1.5)
54
+ erubis (2.7.0)
55
+ globalid (0.3.6)
56
+ activesupport (>= 4.1.0)
57
+ i18n (0.7.0)
58
+ json (1.8.3)
59
+ loofah (2.0.3)
60
+ nokogiri (>= 1.5.9)
61
+ mail (2.6.3)
62
+ mime-types (>= 1.16, < 3)
63
+ metaclass (0.0.4)
64
+ mime-types (2.6.2)
65
+ mini_portile (0.6.2)
66
+ minitest (5.8.1)
67
+ mocha (1.1.0)
68
+ metaclass (~> 0.0.1)
69
+ nokogiri (1.6.6.2)
70
+ mini_portile (~> 0.6.0)
71
+ rack (1.6.4)
72
+ rack-test (0.6.3)
73
+ rack (>= 1.0)
74
+ rails (4.2.4)
75
+ actionmailer (= 4.2.4)
76
+ actionpack (= 4.2.4)
77
+ actionview (= 4.2.4)
78
+ activejob (= 4.2.4)
79
+ activemodel (= 4.2.4)
80
+ activerecord (= 4.2.4)
81
+ activesupport (= 4.2.4)
82
+ bundler (>= 1.3.0, < 2.0)
83
+ railties (= 4.2.4)
84
+ sprockets-rails
85
+ rails-deprecated_sanitizer (1.0.3)
86
+ activesupport (>= 4.2.0.alpha)
87
+ rails-dom-testing (1.0.7)
88
+ activesupport (>= 4.2.0.beta, < 5.0)
89
+ nokogiri (~> 1.6.0)
90
+ rails-deprecated_sanitizer (>= 1.0.1)
91
+ rails-html-sanitizer (1.0.2)
92
+ loofah (~> 2.0)
93
+ railties (4.2.4)
94
+ actionpack (= 4.2.4)
95
+ activesupport (= 4.2.4)
96
+ rake (>= 0.8.7)
97
+ thor (>= 0.18.1, < 2.0)
98
+ rake (10.4.2)
99
+ simplecov (0.10.0)
100
+ docile (~> 1.1.0)
101
+ json (~> 1.8)
102
+ simplecov-html (~> 0.10.0)
103
+ simplecov-html (0.10.0)
104
+ sprockets (3.4.0)
105
+ rack (> 1, < 3)
106
+ sprockets-rails (2.3.3)
107
+ actionpack (>= 3.0)
108
+ activesupport (>= 3.0)
109
+ sprockets (>= 2.8, < 4.0)
110
+ thor (0.19.1)
111
+ thread_safe (0.3.5)
112
+ tzinfo (1.2.2)
113
+ thread_safe (~> 0.1)
114
+
115
+ PLATFORMS
116
+ ruby
117
+
118
+ DEPENDENCIES
119
+ activemodel
120
+ activesupport (~> 4.2.4)
121
+ appraisal
122
+ codeclimate-test-reporter
123
+ minitest (~> 5.1)
124
+ mocha
125
+ rails
126
+ shields_up!
127
+
128
+ BUNDLED WITH
129
+ 1.10.4
@@ -1,3 +1,3 @@
1
1
  module ShieldsUp
2
- VERSION = '0.20.0'.freeze
2
+ VERSION = '0.21.0'.freeze
3
3
  end
data/shields_up.gemspec CHANGED
@@ -17,5 +17,5 @@ Gem::Specification.new do |s|
17
17
  s.files = Dir['**/*'].reject{ |f| f[%r{^pkg/}] || f[%r{^test/}] }
18
18
  s.executables = s.files.grep(%r{^bin/}) { |f| File.basename(f) }
19
19
  s.require_paths = ['lib']
20
- s.add_dependency('activesupport', ['>= 3.2', '< 4.2'])
20
+ s.add_dependency('activesupport', ['>= 3.2', '< 4.3'])
21
21
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: shields_up
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.20.0
4
+ version: 0.21.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - AppFolio
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-09-14 00:00:00.000000000 Z
11
+ date: 2015-10-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3.2'
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
- version: '4.2'
22
+ version: '4.3'
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: '4.2'
32
+ version: '4.3'
33
33
  description: Mass assignment Protection made by AppFolio Inc., inspired by strong_parameters.
34
34
  email: dev@appfolio.com
35
35
  executables: []
@@ -48,6 +48,8 @@ files:
48
48
  - gemfiles/activesupport_4.0.gemfile.lock
49
49
  - gemfiles/activesupport_4.1.gemfile
50
50
  - gemfiles/activesupport_4.1.gemfile.lock
51
+ - gemfiles/activesupport_4.2.gemfile
52
+ - gemfiles/activesupport_4.2.gemfile.lock
51
53
  - lib/shields_up.rb
52
54
  - lib/shields_up/exceptions.rb
53
55
  - lib/shields_up/parameters.rb