omg-actionview 8.0.0.alpha8 → 8.0.0.alpha9

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: 780bc3210c28dffd4cf0b5eae76f13774c47fbf3119f1db2f9719e2ec1394ee0
4
- data.tar.gz: 0d5f6ce414b86a6244859c00a40ea2d791af14b06a5446b517fb172c1a7ae290
3
+ metadata.gz: d8589dfe37da323a83cc439d65b5f6d6c7d91f41e8a874bbe5b7c5e61bd9a605
4
+ data.tar.gz: b48ab48077204771decf4c56922bb59eecbf63375b3e61a5115c72eeb8c02073
5
5
  SHA512:
6
- metadata.gz: c610c548780160768a02967fa870f49e2b73afda4634bfe1020e062a5a2afe6f67570174e7b434c9bf7f3e151bba9d8a6c981d816ef20afebb3c66b7e6b175db
7
- data.tar.gz: a1ef0fe9563eb6e68823b167d999a8f57a7d083851e6528f0dc6c48dc27815a85d61489799ca1a6a868daca78557fe761944010815a5e1927cf7c474266d11de
6
+ metadata.gz: 5881d5fad0c5c925a560e3618133ceef0f9cd88a77da4111e8b235cf621bb8955b00c8af18f5ecba68493e09a28b443a955eec8145c9d12c0cfd319882390418
7
+ data.tar.gz: b7a16396deb891e011525e09e0d3b5109bc893e4ae99696e1bf1fbbcf8a53cf5f403da79f4e5b90a464fd4a1ef19100107920334354c50257a3a082f8312bd0e
data/CHANGELOG.md CHANGED
@@ -1,3 +1,8 @@
1
+ ## Rails 8.0.0.alpha9 (September 25, 2024) ##
2
+
3
+ * No changes.
4
+
5
+
1
6
  ## Rails 8.0.0.alpha8 (September 18, 2024) ##
2
7
 
3
8
  * No changes.
@@ -122,23 +122,26 @@ module ActionView
122
122
  wildcard_dependency = +""
123
123
 
124
124
  while !scanner.eos?
125
- next unless scanner.scan_until(/\#{/)
126
-
127
- unmatched_brackets = 1
128
- wildcard_dependency << scanner.pre_match
129
-
130
- while unmatched_brackets > 0 && !scanner.eos?
131
- scanner.scan_until(/[{}]/)
132
-
133
- case scanner.matched
134
- when "{"
135
- unmatched_brackets += 1
136
- when "}"
137
- unmatched_brackets -= 1
125
+ if scanner.scan_until(/\#{/)
126
+ unmatched_brackets = 1
127
+ wildcard_dependency << scanner.pre_match
128
+
129
+ while unmatched_brackets > 0 && !scanner.eos?
130
+ scanner.scan_until(/[{}]/)
131
+
132
+ case scanner.matched
133
+ when "{"
134
+ unmatched_brackets += 1
135
+ when "}"
136
+ unmatched_brackets -= 1
137
+ end
138
138
  end
139
- end
140
139
 
141
- wildcard_dependency << "*"
140
+ wildcard_dependency << "*"
141
+ else
142
+ wildcard_dependency << scanner.rest
143
+ scanner.terminate
144
+ end
142
145
  end
143
146
 
144
147
  dependencies << wildcard_dependency
@@ -10,7 +10,7 @@ module ActionView
10
10
  MAJOR = 8
11
11
  MINOR = 0
12
12
  TINY = 0
13
- PRE = "alpha8"
13
+ PRE = "alpha9"
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: omg-actionview
3
3
  version: !ruby/object:Gem::Version
4
- version: 8.0.0.alpha8
4
+ version: 8.0.0.alpha9
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: 2024-09-18 00:00:00.000000000 Z
11
+ date: 2024-09-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: omg-activesupport
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - '='
18
18
  - !ruby/object:Gem::Version
19
- version: 8.0.0.alpha8
19
+ version: 8.0.0.alpha9
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: 8.0.0.alpha8
26
+ version: 8.0.0.alpha9
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: builder
29
29
  requirement: !ruby/object:Gem::Requirement
@@ -86,28 +86,28 @@ dependencies:
86
86
  requirements:
87
87
  - - '='
88
88
  - !ruby/object:Gem::Version
89
- version: 8.0.0.alpha8
89
+ version: 8.0.0.alpha9
90
90
  type: :development
91
91
  prerelease: false
92
92
  version_requirements: !ruby/object:Gem::Requirement
93
93
  requirements:
94
94
  - - '='
95
95
  - !ruby/object:Gem::Version
96
- version: 8.0.0.alpha8
96
+ version: 8.0.0.alpha9
97
97
  - !ruby/object:Gem::Dependency
98
98
  name: omg-activemodel
99
99
  requirement: !ruby/object:Gem::Requirement
100
100
  requirements:
101
101
  - - '='
102
102
  - !ruby/object:Gem::Version
103
- version: 8.0.0.alpha8
103
+ version: 8.0.0.alpha9
104
104
  type: :development
105
105
  prerelease: false
106
106
  version_requirements: !ruby/object:Gem::Requirement
107
107
  requirements:
108
108
  - - '='
109
109
  - !ruby/object:Gem::Version
110
- version: 8.0.0.alpha8
110
+ version: 8.0.0.alpha9
111
111
  description: Simple, battle-tested conventions and helpers for building web pages.
112
112
  email: david@loudthinking.com
113
113
  executables: []
@@ -247,10 +247,10 @@ licenses:
247
247
  - MIT
248
248
  metadata:
249
249
  bug_tracker_uri: https://github.com/rails/rails/issues
250
- changelog_uri: https://github.com/rails/rails/blob/v8.0.0.alpha8/actionview/CHANGELOG.md
251
- documentation_uri: https://api.rubyonrails.org/v8.0.0.alpha8/
250
+ changelog_uri: https://github.com/rails/rails/blob/v8.0.0.alpha9/actionview/CHANGELOG.md
251
+ documentation_uri: https://api.rubyonrails.org/v8.0.0.alpha9/
252
252
  mailing_list_uri: https://discuss.rubyonrails.org/c/rubyonrails-talk
253
- source_code_uri: https://github.com/rails/rails/tree/v8.0.0.alpha8/actionview
253
+ source_code_uri: https://github.com/rails/rails/tree/v8.0.0.alpha9/actionview
254
254
  rubygems_mfa_required: 'true'
255
255
  post_install_message:
256
256
  rdoc_options: []