rux-rails 1.0.0 → 1.1.0
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/CHANGELOG.md +5 -0
- data/README.md +3 -1
- data/lib/rux-rails.rb +2 -2
- data/lib/rux-rails/safe_buffer.rb +13 -0
- data/lib/rux-rails/version.rb +1 -1
- data/spec/dummy/log/test.log +27 -0
- metadata +4 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 698758e997b3a5940f124dc08e0b2846ba6615c2e8596ed05262b87974a1aa66
|
4
|
+
data.tar.gz: e9418ca9e2d146f99f16f803bb83cb4e11bb5595338368946e404db1a24c0ba0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a3ebfa53191c9abb957db5ca1696171a290d6bfb3f5ae382158422ca49d2720cc2d6f77c728b584f67b56905908d9e7047f5a5727d0e0a7f27696788594c75ac
|
7
|
+
data.tar.gz: 964d4722675dc47d496cc62542b5972ab28bc93f301da41a0ce160f63d41b43eac8486cb2d34b815ec7eceabaf6a24e82813dec3ec8c983e55415a24c49169a2
|
data/CHANGELOG.md
ADDED
data/README.md
CHANGED
@@ -1,4 +1,6 @@
|
|
1
|
-
## rux-rails
|
1
|
+
## rux-rails
|
2
|
+
|
3
|
+

|
2
4
|
|
3
5
|
Easily write [rux](https://github.com/camertron/rux) view components in Rails.
|
4
6
|
|
data/lib/rux-rails.rb
CHANGED
@@ -1,5 +1,6 @@
|
|
1
1
|
module RuxRails
|
2
2
|
autoload :Components, 'rux-rails/components'
|
3
|
+
autoload :SafeBuffer, 'rux-rails/safe_buffer'
|
3
4
|
autoload :TagBuilder, 'rux-rails/tag_builder'
|
4
5
|
autoload :TemplateHandler, 'rux-rails/template_handler'
|
5
6
|
autoload :Visitor, 'rux-rails/visitor'
|
@@ -48,8 +49,7 @@ end
|
|
48
49
|
require 'rux'
|
49
50
|
require 'rux-rails/railtie'
|
50
51
|
require 'view_component/engine'
|
51
|
-
require 'active_support'
|
52
52
|
|
53
53
|
ViewComponent::Base.send(:include, RuxRails::Components)
|
54
54
|
Rux.tag_builder = RuxRails.tag_builder
|
55
|
-
Rux.buffer =
|
55
|
+
Rux.buffer = RuxRails::SafeBuffer
|
data/lib/rux-rails/version.rb
CHANGED
data/spec/dummy/log/test.log
CHANGED
@@ -2116,3 +2116,30 @@ Processing by HomeController#index as HTML
|
|
2116
2116
|
Rendered home/index.html.ruxt within layouts/application (Duration: 74.7ms | Allocations: 46030)
|
2117
2117
|
Rendered layout layouts/application.html.erb (Duration: 75.1ms | Allocations: 46175)
|
2118
2118
|
Completed 200 OK in 85ms (Views: 80.5ms | Allocations: 52169)
|
2119
|
+
Started GET "/" for 127.0.0.1 at 2021-06-11 11:29:47 -0700
|
2120
|
+
Processing by HomeController#index as HTML
|
2121
|
+
Rendering home/index.html.ruxt within layouts/application
|
2122
|
+
Rendered home/index.html.ruxt within layouts/application (128.8ms)
|
2123
|
+
Completed 200 OK in 141ms (Views: 139.6ms)
|
2124
|
+
Started GET "/" for 127.0.0.1 at 2021-06-11 11:29:51 -0700
|
2125
|
+
Processing by HomeController#index as HTML
|
2126
|
+
Rendering home/index.html.ruxt within layouts/application
|
2127
|
+
Rendered home/index.html.ruxt within layouts/application (93.7ms)
|
2128
|
+
Completed 200 OK in 101ms (Views: 101.0ms)
|
2129
|
+
Started GET "/" for 127.0.0.1 at 2021-06-11 11:29:55 -0700
|
2130
|
+
Processing by HomeController#index as HTML
|
2131
|
+
Rendering home/index.html.ruxt within layouts/application
|
2132
|
+
Rendered home/index.html.ruxt within layouts/application (95.6ms)
|
2133
|
+
Completed 200 OK in 105ms (Views: 104.0ms)
|
2134
|
+
Started GET "/" for 127.0.0.1 at 2021-06-11 11:29:59 -0700
|
2135
|
+
Processing by HomeController#index as HTML
|
2136
|
+
Rendering home/index.html.ruxt within layouts/application
|
2137
|
+
Rendered home/index.html.ruxt within layouts/application (Duration: 69.9ms | Allocations: 46408)
|
2138
|
+
Completed 200 OK in 90ms (Views: 77.5ms | Allocations: 53004)
|
2139
|
+
Started GET "/" for 127.0.0.1 at 2021-06-11 11:30:02 -0700
|
2140
|
+
Processing by HomeController#index as HTML
|
2141
|
+
Rendering layout layouts/application.html.erb
|
2142
|
+
Rendering home/index.html.ruxt within layouts/application
|
2143
|
+
Rendered home/index.html.ruxt within layouts/application (Duration: 71.3ms | Allocations: 46024)
|
2144
|
+
Rendered layout layouts/application.html.erb (Duration: 71.7ms | Allocations: 46168)
|
2145
|
+
Completed 200 OK in 84ms (Views: 78.3ms | Allocations: 52164)
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rux-rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.1.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Cameron Dutro
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-
|
11
|
+
date: 2021-06-11 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rux
|
@@ -59,6 +59,7 @@ executables: []
|
|
59
59
|
extensions: []
|
60
60
|
extra_rdoc_files: []
|
61
61
|
files:
|
62
|
+
- CHANGELOG.md
|
62
63
|
- Gemfile
|
63
64
|
- LICENSE
|
64
65
|
- README.md
|
@@ -74,6 +75,7 @@ files:
|
|
74
75
|
- lib/rux-rails/ext/bootsnap/autoload.rb
|
75
76
|
- lib/rux-rails/ext/zeitwerk/loader.rb
|
76
77
|
- lib/rux-rails/railtie.rb
|
78
|
+
- lib/rux-rails/safe_buffer.rb
|
77
79
|
- lib/rux-rails/tag_builder.rb
|
78
80
|
- lib/rux-rails/tasks/transpile.rake
|
79
81
|
- lib/rux-rails/template_handler.rb
|