proscenium 0.7.0-x86_64-darwin → 0.8.2-x86_64-darwin

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1fae3116f404a930293a5080e9a7dc859444b6407b443d64c0931a4825aa68e1
4
- data.tar.gz: 5639c06def32c33f46254a6fdfeb638711c9d2e6f1c61612be4860c5f0641363
3
+ metadata.gz: 2ac3f3096a849bd65210721f3b1308ecf9086e53372cf9df5ec835a85a0829d5
4
+ data.tar.gz: 8935915d8cf4eadbf58dda6e7fda74a56b2dd8011864527ea72d71b8bf210f50
5
5
  SHA512:
6
- metadata.gz: f9196d6c5e625a4346493ea0cbd75933a8bfd0c01a4d4a678388ed7f57b991c22c406be56e10df9f73dfedfb6bd98608773a826a2629b3e1a7b0f5ff8ee3d18e
7
- data.tar.gz: c3b4184767b68621aff62bda0c5ffc9c1f1cfefb7469825387345edb6d17e2cfd32ddca5f4f671e99008b511503514f0e2652c756c3bb96e435bbffe9601a30d
6
+ metadata.gz: aa552ed8a97a1dd146f415b2463b20a2bf73aea671889dbb60ad57e22252b20dc890a6419452b2449fb66403cc195ae99fd3fb77948129fb3a7cfbf23a88b0c4
7
+ data.tar.gz: 33f44fd85c89c02bf7afdb0d7c0aefa1e6acbcc283170b699853fbf3da0b1bf8ec6544521d48b0591dcdabb81db12f523ba58391bc9f7ddeb63aa5d92e5b3837
data/README.md CHANGED
@@ -19,10 +19,6 @@ configuration.
19
19
  - Source maps.
20
20
  - Phlex and ViewComponent integration.
21
21
 
22
- ## ⚠️ WORK IN PROGRESS ⚠️
23
-
24
- While my goal is to use Proscenium in production, I recommended that you **DO NOT** use Proscenium in production just yet! It has only been run for local development, and requires several improvements for optimal production use.
25
-
26
22
  ## Installation
27
23
 
28
24
  Add this line to your Rails application's Gemfile, and you're good to go:
@@ -12,7 +12,7 @@ module Proscenium
12
12
 
13
13
  module Request
14
14
  extend FFI::Library
15
- ffi_lib Pathname.new(__dir__).join('../../../bin/proscenium').to_s
15
+ ffi_lib Pathname.new(__dir__).join('../ext/proscenium').to_s
16
16
 
17
17
  enum :environment, [:development, 1, :test, :production]
18
18
 
@@ -90,10 +90,9 @@ extern "C" {
90
90
  // - baseUrl - base URL of the Rails app. eg. https://example.com
91
91
  // - env - The environment (1 = development, 2 = test, 3 = production)
92
92
  // - importMap - Path to the import map relative to `root`.
93
- // - bundle
94
93
  // - debug
95
94
  //
96
- extern struct Result build(char* filepath, char* root, char* baseUrl, unsigned int env, char* importMap, GoUint8 bundle, GoUint8 debug);
95
+ extern struct Result build(char* filepath, char* root, char* baseUrl, unsigned int env, char* importMap, GoUint8 debug);
97
96
 
98
97
  // Resolve the given `path` relative to the `root`.
99
98
  //
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Proscenium
4
- VERSION = '0.7.0'
4
+ VERSION = '0.8.2'
5
5
  end
data/lib/proscenium.rb CHANGED
@@ -58,8 +58,8 @@ module Proscenium
58
58
  sroot = "#{matched_gem[1][:root]}/"
59
59
  relpath = path.delete_prefix(sroot)
60
60
 
61
- if matched_gem[1][:package_name]
62
- return Esbuild::Golib.resolve("#{matched_gem[1][:package_name]}/#{relpath}")
61
+ if (package_name = matched_gem[1][:package_name] || matched_gem[0])
62
+ return Esbuild::Golib.resolve("#{package_name}/#{relpath}")
63
63
  end
64
64
 
65
65
  # TODO: manually resolve the path without esbuild
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: proscenium
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.0
4
+ version: 0.8.2
5
5
  platform: x86_64-darwin
6
6
  authors:
7
7
  - Joel Moss
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-05-31 00:00:00.000000000 Z
11
+ date: 2023-06-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport
@@ -123,17 +123,13 @@ dependencies:
123
123
  description:
124
124
  email:
125
125
  - joel@developwithstyle.com
126
- executables:
127
- - proscenium
126
+ executables: []
128
127
  extensions: []
129
128
  extra_rdoc_files: []
130
129
  files:
131
130
  - CODE_OF_CONDUCT.md
132
131
  - LICENSE.txt
133
132
  - README.md
134
- - bin/proscenium
135
- - bin/proscenium.h
136
- - config/routes.rb
137
133
  - lib/proscenium.rb
138
134
  - lib/proscenium/css_module.rb
139
135
  - lib/proscenium/css_module/class_names_resolver.rb
@@ -141,6 +137,8 @@ files:
141
137
  - lib/proscenium/current.rb
142
138
  - lib/proscenium/esbuild.rb
143
139
  - lib/proscenium/esbuild/golib.rb
140
+ - lib/proscenium/ext/proscenium
141
+ - lib/proscenium/ext/proscenium.h
144
142
  - lib/proscenium/helper.rb
145
143
  - lib/proscenium/log_subscriber.rb
146
144
  - lib/proscenium/middleware.rb
data/config/routes.rb DELETED
@@ -1,4 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- Proscenium::Railtie.routes.draw do
4
- end