activesupport 7.0.8.4 → 7.0.8.5

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
  SHA256:
3
- metadata.gz: a87ae6f28ef1617cc29c8216acaef2f4464bc39655ba6f3e42a94c65c80bf18c
4
- data.tar.gz: 2aa8db945ae08bdd19add25e15b204bb189be9129b00a49e4f7b41383515c6d2
3
+ metadata.gz: c59d75f86f29af1e93f37bb9ad5b4ce6ebac3841fb5c777ea6c04749b417c336
4
+ data.tar.gz: 73b36b042ff84376615a157b2e0ab8f48a777eb4cd33fbd487510284845bd631
5
5
  SHA512:
6
- metadata.gz: 97c6bee1d63a0f4cfef73fdeb7acbcaf79de757a531673309de730fb1bfcee4a21c088928fac5f84e9ec5d95c506773a89c5c9661f3148727ec6ba44e621d015
7
- data.tar.gz: 06a94afa7ca017310fa56b1cf8117f28dad1e46a3c799b61dcf40c4763d305e201a7b7f7987ddac6c0166e5f508358d9c456bdb3e69ee9e32823aee2002c6813
6
+ metadata.gz: dcf89003cd7b4811ef8306757998343e291e011f8bbab9cf4e561caf8bf574d72ce5d291edbf669a3629f4844fafe9dac3f3b6c58402db561628dd9c83a212c6
7
+ data.tar.gz: 6adb0e5e259d48c55b7900a8dc575a176ff27be585749b51e4d9ef00837078aee80f6463cf56266a9f5241af03b540e1d077bded086913ceffc3df28b022f2bd
data/CHANGELOG.md CHANGED
@@ -1,3 +1,8 @@
1
+ ## Rails 7.0.8.5 (October 15, 2024) ##
2
+
3
+ * No changes.
4
+
5
+
1
6
  ## Rails 7.0.8.4 (June 04, 2024) ##
2
7
 
3
8
  * No changes.
@@ -28,23 +28,32 @@ class Object
28
28
  end
29
29
  end
30
30
 
31
- class Method
32
- # Methods are not duplicable:
33
- #
34
- # method(:puts).duplicable? # => false
35
- # method(:puts).dup # => TypeError: allocator undefined for Method
36
- def duplicable?
37
- false
38
- end
31
+ methods_are_duplicable = begin
32
+ Object.instance_method(:duplicable?).dup
33
+ true
34
+ rescue TypeError
35
+ false
39
36
  end
40
37
 
41
- class UnboundMethod
42
- # Unbound methods are not duplicable:
43
- #
44
- # method(:puts).unbind.duplicable? # => false
45
- # method(:puts).unbind.dup # => TypeError: allocator undefined for UnboundMethod
46
- def duplicable?
47
- false
38
+ unless methods_are_duplicable
39
+ class Method
40
+ # Methods are not duplicable:
41
+ #
42
+ # method(:puts).duplicable? # => false
43
+ # method(:puts).dup # => TypeError: allocator undefined for Method
44
+ def duplicable?
45
+ false
46
+ end
47
+ end
48
+
49
+ class UnboundMethod
50
+ # Unbound methods are not duplicable:
51
+ #
52
+ # method(:puts).unbind.duplicable? # => false
53
+ # method(:puts).unbind.dup # => TypeError: allocator undefined for UnboundMethod
54
+ def duplicable?
55
+ false
56
+ end
48
57
  end
49
58
  end
50
59
 
@@ -10,7 +10,7 @@ module ActiveSupport
10
10
  MAJOR = 7
11
11
  MINOR = 0
12
12
  TINY = 8
13
- PRE = "4"
13
+ PRE = "5"
14
14
 
15
15
  STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
16
16
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: activesupport
3
3
  version: !ruby/object:Gem::Version
4
- version: 7.0.8.4
4
+ version: 7.0.8.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - David Heinemeier Hansson
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-06-04 00:00:00.000000000 Z
11
+ date: 2024-10-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: i18n
@@ -359,12 +359,12 @@ licenses:
359
359
  - MIT
360
360
  metadata:
361
361
  bug_tracker_uri: https://github.com/rails/rails/issues
362
- changelog_uri: https://github.com/rails/rails/blob/v7.0.8.4/activesupport/CHANGELOG.md
363
- documentation_uri: https://api.rubyonrails.org/v7.0.8.4/
362
+ changelog_uri: https://github.com/rails/rails/blob/v7.0.8.5/activesupport/CHANGELOG.md
363
+ documentation_uri: https://api.rubyonrails.org/v7.0.8.5/
364
364
  mailing_list_uri: https://discuss.rubyonrails.org/c/rubyonrails-talk
365
- source_code_uri: https://github.com/rails/rails/tree/v7.0.8.4/activesupport
365
+ source_code_uri: https://github.com/rails/rails/tree/v7.0.8.5/activesupport
366
366
  rubygems_mfa_required: 'true'
367
- post_install_message:
367
+ post_install_message:
368
368
  rdoc_options:
369
369
  - "--encoding"
370
370
  - UTF-8
@@ -381,8 +381,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
381
381
  - !ruby/object:Gem::Version
382
382
  version: '0'
383
383
  requirements: []
384
- rubygems_version: 3.3.27
385
- signing_key:
384
+ rubygems_version: 3.5.16
385
+ signing_key:
386
386
  specification_version: 4
387
387
  summary: A toolkit of support libraries and Ruby core extensions extracted from the
388
388
  Rails framework.