proscenium-phlex 0.6.0 → 0.6.1
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 +4 -4
- data/gemfiles/phlex1_rails7.gemfile.lock +189 -188
- data/gemfiles/phlex1_rails8.gemfile.lock +192 -192
- data/gemfiles/phlex2_rails7.gemfile.lock +189 -188
- data/gemfiles/phlex2_rails8.gemfile.lock +192 -192
- data/lib/proscenium/phlex/css_modules.rb +3 -4
- data/lib/proscenium/phlex/version.rb +1 -1
- metadata +4 -4
|
@@ -71,11 +71,10 @@ module Proscenium::Phlex
|
|
|
71
71
|
if attributes.key?(:class) && (attributes[:class] = tokens(attributes[:class])).include?('@')
|
|
72
72
|
names = attributes[:class].is_a?(Array) ? attributes[:class] : attributes[:class].split
|
|
73
73
|
|
|
74
|
-
self.class.resolved_css_module_paths ||= Concurrent::Set.new
|
|
74
|
+
paths = self.class.resolved_css_module_paths ||= Concurrent::Set.new
|
|
75
75
|
|
|
76
|
-
attributes[:class] = cssm.class_names(*names)
|
|
77
|
-
|
|
78
|
-
name
|
|
76
|
+
attributes[:class] = cssm.class_names(*names) do |_name, path|
|
|
77
|
+
paths << path if path
|
|
79
78
|
end
|
|
80
79
|
end
|
|
81
80
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: proscenium-phlex
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.6.
|
|
4
|
+
version: 0.6.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Joel Moss
|
|
@@ -63,14 +63,14 @@ dependencies:
|
|
|
63
63
|
requirements:
|
|
64
64
|
- - ">="
|
|
65
65
|
- !ruby/object:Gem::Version
|
|
66
|
-
version: 0.
|
|
66
|
+
version: 0.24.1
|
|
67
67
|
type: :runtime
|
|
68
68
|
prerelease: false
|
|
69
69
|
version_requirements: !ruby/object:Gem::Requirement
|
|
70
70
|
requirements:
|
|
71
71
|
- - ">="
|
|
72
72
|
- !ruby/object:Gem::Version
|
|
73
|
-
version: 0.
|
|
73
|
+
version: 0.24.1
|
|
74
74
|
- !ruby/object:Gem::Dependency
|
|
75
75
|
name: rails
|
|
76
76
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -158,7 +158,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
158
158
|
- !ruby/object:Gem::Version
|
|
159
159
|
version: '0'
|
|
160
160
|
requirements: []
|
|
161
|
-
rubygems_version: 4.0.
|
|
161
|
+
rubygems_version: 4.0.6
|
|
162
162
|
specification_version: 4
|
|
163
163
|
summary: Proscenium integration for Phlex
|
|
164
164
|
test_files: []
|