actionview 5.1.4 → 5.1.5.rc1

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of actionview might be problematic. Click here for more details.

checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: 383c1479ecf3032a9bf3c400ab57ad0cf9ad66b3
4
- data.tar.gz: 3f804cfd08782238f8db66a3c8c3f93b3133d8b8
2
+ SHA256:
3
+ metadata.gz: 28bc600354995b9155816e2ceedfe07fd036b474323658db4db17995fc8f19f4
4
+ data.tar.gz: b62222be2e922c54d3f205c63af52b67d04c5710a275bcfb1b31c1209c45bd18
5
5
  SHA512:
6
- metadata.gz: 650539b8232d807eb9e8e55dec41eec06790de60e6cae435fa486b976220ca460945cf5bba02cbb2c3d5595f8c3db1ddc1a71ccc9e4d6584d2d46a1b6bea91f2
7
- data.tar.gz: f4c1c201a5e6ac6323ef315718385d470f34a3709bea6c5944698cd4e0f6b926bd320bbd8bb1cf576b0f3ac8e8b0fc3e7f9aded2dc114f61e8ccbf3953c7de94
6
+ metadata.gz: b70a5d2b5c03dac82ac96b36042b1392f813c7970785ffef943ac4e6ecbf12b30d295d1e0f56842ee043fd6158685c4810498595ea5e5a4e503d3885ae9cf296
7
+ data.tar.gz: 35392e328fc809ebaeb32de63b8359f55eceb0faf7ab2045cdbe834387adc71f372bd4085105d3a5c5191b2fe3df40034a276df6eb5bd6c76d5eb75ef1e9d66a
data/CHANGELOG.md CHANGED
@@ -1,3 +1,8 @@
1
+ ## Rails 5.1.5.rc1 (February 01, 2018) ##
2
+
3
+ * No changes.
4
+
5
+
1
6
  ## Rails 5.1.4 (September 07, 2017) ##
2
7
 
3
8
  * No changes.
@@ -7,8 +7,8 @@ module ActionView
7
7
  module VERSION
8
8
  MAJOR = 5
9
9
  MINOR = 1
10
- TINY = 4
11
- PRE = nil
10
+ TINY = 5
11
+ PRE = "rc1"
12
12
 
13
13
  STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
14
14
  end
@@ -181,13 +181,11 @@ Released under the MIT license
181
181
  }
182
182
  return typeof options.complete === "function" ? options.complete(xhr, xhr.statusText) : void 0;
183
183
  });
184
- if (typeof options.beforeSend === "function") {
185
- options.beforeSend(xhr, options);
184
+ if (!(typeof options.beforeSend === "function" ? options.beforeSend(xhr, options) : void 0)) {
185
+ return false;
186
186
  }
187
187
  if (xhr.readyState === XMLHttpRequest.OPENED) {
188
188
  return xhr.send(options.data);
189
- } else {
190
- return fire(document, 'ajaxStop');
191
189
  }
192
190
  };
193
191
 
@@ -290,7 +288,7 @@ Released under the MIT license
290
288
  }
291
289
  params = [];
292
290
  inputs.forEach(function(input) {
293
- if (!input.name) {
291
+ if (!input.name || input.disabled) {
294
292
  return;
295
293
  }
296
294
  if (matches(input, 'select')) {
@@ -552,7 +550,7 @@ Released under the MIT license
552
550
  return fire(element, 'ajax:send', [xhr]);
553
551
  } else {
554
552
  fire(element, 'ajax:stopped');
555
- return xhr.abort();
553
+ return false;
556
554
  }
557
555
  },
558
556
  success: function() {
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: actionview
3
3
  version: !ruby/object:Gem::Version
4
- version: 5.1.4
4
+ version: 5.1.5.rc1
5
5
  platform: ruby
6
6
  authors:
7
7
  - David Heinemeier Hansson
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-09-08 00:00:00.000000000 Z
11
+ date: 2018-02-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - '='
18
18
  - !ruby/object:Gem::Version
19
- version: 5.1.4
19
+ version: 5.1.5.rc1
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - '='
25
25
  - !ruby/object:Gem::Version
26
- version: 5.1.4
26
+ version: 5.1.5.rc1
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: builder
29
29
  requirement: !ruby/object:Gem::Requirement
@@ -92,28 +92,28 @@ dependencies:
92
92
  requirements:
93
93
  - - '='
94
94
  - !ruby/object:Gem::Version
95
- version: 5.1.4
95
+ version: 5.1.5.rc1
96
96
  type: :development
97
97
  prerelease: false
98
98
  version_requirements: !ruby/object:Gem::Requirement
99
99
  requirements:
100
100
  - - '='
101
101
  - !ruby/object:Gem::Version
102
- version: 5.1.4
102
+ version: 5.1.5.rc1
103
103
  - !ruby/object:Gem::Dependency
104
104
  name: activemodel
105
105
  requirement: !ruby/object:Gem::Requirement
106
106
  requirements:
107
107
  - - '='
108
108
  - !ruby/object:Gem::Version
109
- version: 5.1.4
109
+ version: 5.1.5.rc1
110
110
  type: :development
111
111
  prerelease: false
112
112
  version_requirements: !ruby/object:Gem::Requirement
113
113
  requirements:
114
114
  - - '='
115
115
  - !ruby/object:Gem::Version
116
- version: 5.1.4
116
+ version: 5.1.5.rc1
117
117
  description: Simple, battle-tested conventions and helpers for building web pages.
118
118
  email: david@loudthinking.com
119
119
  executables: []
@@ -230,7 +230,9 @@ files:
230
230
  homepage: http://rubyonrails.org
231
231
  licenses:
232
232
  - MIT
233
- metadata: {}
233
+ metadata:
234
+ source_code_uri: https://github.com/rails/rails/tree/v5.1.5.rc1/actionview
235
+ changelog_uri: https://github.com/rails/rails/blob/v5.1.5.rc1/actionview/CHANGELOG.md
234
236
  post_install_message:
235
237
  rdoc_options: []
236
238
  require_paths:
@@ -242,13 +244,13 @@ required_ruby_version: !ruby/object:Gem::Requirement
242
244
  version: 2.2.2
243
245
  required_rubygems_version: !ruby/object:Gem::Requirement
244
246
  requirements:
245
- - - ">="
247
+ - - ">"
246
248
  - !ruby/object:Gem::Version
247
- version: '0'
249
+ version: 1.3.1
248
250
  requirements:
249
251
  - none
250
252
  rubyforge_project:
251
- rubygems_version: 2.6.13
253
+ rubygems_version: 2.7.3
252
254
  signing_key:
253
255
  specification_version: 4
254
256
  summary: Rendering framework putting the V in MVC (part of Rails).