omg-actionview 8.0.0.alpha8 → 8.0.0.alpha9
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/lib/action_view/dependency_tracker/erb_tracker.rb +18 -15
- data/lib/action_view/gem_version.rb +1 -1
- metadata +11 -11
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d8589dfe37da323a83cc439d65b5f6d6c7d91f41e8a874bbe5b7c5e61bd9a605
|
4
|
+
data.tar.gz: b48ab48077204771decf4c56922bb59eecbf63375b3e61a5115c72eeb8c02073
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5881d5fad0c5c925a560e3618133ceef0f9cd88a77da4111e8b235cf621bb8955b00c8af18f5ecba68493e09a28b443a955eec8145c9d12c0cfd319882390418
|
7
|
+
data.tar.gz: b7a16396deb891e011525e09e0d3b5109bc893e4ae99696e1bf1fbbcf8a53cf5f403da79f4e5b90a464fd4a1ef19100107920334354c50257a3a082f8312bd0e
|
data/CHANGELOG.md
CHANGED
@@ -122,23 +122,26 @@ module ActionView
|
|
122
122
|
wildcard_dependency = +""
|
123
123
|
|
124
124
|
while !scanner.eos?
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
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
|
-
|
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
|
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.
|
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-
|
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.
|
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.
|
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.
|
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.
|
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.
|
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.
|
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.
|
251
|
-
documentation_uri: https://api.rubyonrails.org/v8.0.0.
|
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.
|
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: []
|