barefoot_js 0.18.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 +7 -0
- data/lib/barefoot_js/backend/erb.rb +123 -0
- data/lib/barefoot_js/dev_reload.rb +159 -0
- data/lib/barefoot_js/evaluator.rb +714 -0
- data/lib/barefoot_js/search_params.rb +63 -0
- data/lib/barefoot_js.rb +1155 -0
- metadata +51 -0
metadata
ADDED
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: barefoot_js
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.18.0
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- kobaken
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: bin
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2026-07-07 00:00:00.000000000 Z
|
|
12
|
+
dependencies: []
|
|
13
|
+
description: Engine-agnostic BarefootJS server runtime targeting ERB, ported from
|
|
14
|
+
packages/adapter-perl/lib/BarefootJS.pm.
|
|
15
|
+
email:
|
|
16
|
+
- kentafly88@gmail.com
|
|
17
|
+
executables: []
|
|
18
|
+
extensions: []
|
|
19
|
+
extra_rdoc_files: []
|
|
20
|
+
files:
|
|
21
|
+
- lib/barefoot_js.rb
|
|
22
|
+
- lib/barefoot_js/backend/erb.rb
|
|
23
|
+
- lib/barefoot_js/dev_reload.rb
|
|
24
|
+
- lib/barefoot_js/evaluator.rb
|
|
25
|
+
- lib/barefoot_js/search_params.rb
|
|
26
|
+
homepage: https://github.com/piconic-ai/barefootjs
|
|
27
|
+
licenses:
|
|
28
|
+
- MIT
|
|
29
|
+
metadata:
|
|
30
|
+
source_code_uri: https://github.com/piconic-ai/barefootjs/tree/main/packages/adapter-erb
|
|
31
|
+
rubygems_mfa_required: 'true'
|
|
32
|
+
post_install_message:
|
|
33
|
+
rdoc_options: []
|
|
34
|
+
require_paths:
|
|
35
|
+
- lib
|
|
36
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
37
|
+
requirements:
|
|
38
|
+
- - ">="
|
|
39
|
+
- !ruby/object:Gem::Version
|
|
40
|
+
version: '3.1'
|
|
41
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
42
|
+
requirements:
|
|
43
|
+
- - ">="
|
|
44
|
+
- !ruby/object:Gem::Version
|
|
45
|
+
version: '0'
|
|
46
|
+
requirements: []
|
|
47
|
+
rubygems_version: 3.5.22
|
|
48
|
+
signing_key:
|
|
49
|
+
specification_version: 4
|
|
50
|
+
summary: Ruby runtime for the @barefootjs/erb adapter
|
|
51
|
+
test_files: []
|