rails_node_module_linker 0.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 +7 -0
- data/.rspec +3 -0
- data/.rubocop.yml +33 -0
- data/.vscode/settings.json +10 -0
- data/CHANGELOG.md +6 -0
- data/CODE_OF_CONDUCT.md +132 -0
- data/LICENSE.txt +21 -0
- data/README.md +68 -0
- data/Rakefile +12 -0
- data/lib/rails_node_module_linker/config.rb +15 -0
- data/lib/rails_node_module_linker/middleware.rb +63 -0
- data/lib/rails_node_module_linker/railtie.rb +22 -0
- data/lib/rails_node_module_linker/version.rb +5 -0
- data/lib/rails_node_module_linker.rb +18 -0
- data/lib/tasks/rails_node_module_linker/link.rake +84 -0
- metadata +59 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: efa0c86a806e4d35422ea07120daf7f367abca2d6c73cbcde246998105b9a1cc
|
4
|
+
data.tar.gz: fdbe50d3ffc2172e9e3af29de662c2e0967a6de86402c87e9e5203327a28d1fb
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: f70181d3e52b413fe3296dc4da448bb0a09a5aa0119048a234bcfc90a2770cba9b39445fa455ca5f295bf231109dde43bf22230382d3a4d815319b30605c60e1
|
7
|
+
data.tar.gz: e3b076fdc840c1b944ab829b989c2303832fb6e8a8ec711e37a78e7e4b38afbef8f205abbf086d0aa260daffe283be201a971f32fd3e1db67c63002193bf6ea1
|
data/.rspec
ADDED
data/.rubocop.yml
ADDED
@@ -0,0 +1,33 @@
|
|
1
|
+
require:
|
2
|
+
- rubocop-rake # * Rake-specific analysis. (Official)
|
3
|
+
- rubocop-rspec # * RSpec-specific analysis. (Official)
|
4
|
+
|
5
|
+
AllCops:
|
6
|
+
TargetRubyVersion: 3.1
|
7
|
+
SuggestExtensions: true
|
8
|
+
NewCops: 'enable'
|
9
|
+
|
10
|
+
Layout/LineLength:
|
11
|
+
Enabled: true
|
12
|
+
Max: 250
|
13
|
+
|
14
|
+
Metrics/AbcSize:
|
15
|
+
Enabled: false # * Keeping these off due to complexity of refactoring existing code
|
16
|
+
|
17
|
+
Metrics/BlockLength:
|
18
|
+
Enabled: true
|
19
|
+
CountAsOne: ["array", "heredoc", "method_call"]
|
20
|
+
AllowedMethods: ["included"]
|
21
|
+
Max: 50
|
22
|
+
|
23
|
+
Metrics/MethodLength:
|
24
|
+
Enabled: true
|
25
|
+
CountAsOne: ["array", "heredoc", "method_call"]
|
26
|
+
Max: 50
|
27
|
+
|
28
|
+
Style/Documentation:
|
29
|
+
Enabled: false
|
30
|
+
|
31
|
+
Style/ClassAndModuleChildren:
|
32
|
+
Enabled: true
|
33
|
+
EnforcedStyle: 'compact'
|
data/CHANGELOG.md
ADDED
data/CODE_OF_CONDUCT.md
ADDED
@@ -0,0 +1,132 @@
|
|
1
|
+
# Contributor Covenant Code of Conduct
|
2
|
+
|
3
|
+
## Our Pledge
|
4
|
+
|
5
|
+
We as members, contributors, and leaders pledge to make participation in our
|
6
|
+
community a harassment-free experience for everyone, regardless of age, body
|
7
|
+
size, visible or invisible disability, ethnicity, sex characteristics, gender
|
8
|
+
identity and expression, level of experience, education, socio-economic status,
|
9
|
+
nationality, personal appearance, race, caste, color, religion, or sexual
|
10
|
+
identity and orientation.
|
11
|
+
|
12
|
+
We pledge to act and interact in ways that contribute to an open, welcoming,
|
13
|
+
diverse, inclusive, and healthy community.
|
14
|
+
|
15
|
+
## Our Standards
|
16
|
+
|
17
|
+
Examples of behavior that contributes to a positive environment for our
|
18
|
+
community include:
|
19
|
+
|
20
|
+
* Demonstrating empathy and kindness toward other people
|
21
|
+
* Being respectful of differing opinions, viewpoints, and experiences
|
22
|
+
* Giving and gracefully accepting constructive feedback
|
23
|
+
* Accepting responsibility and apologizing to those affected by our mistakes,
|
24
|
+
and learning from the experience
|
25
|
+
* Focusing on what is best not just for us as individuals, but for the overall
|
26
|
+
community
|
27
|
+
|
28
|
+
Examples of unacceptable behavior include:
|
29
|
+
|
30
|
+
* The use of sexualized language or imagery, and sexual attention or advances of
|
31
|
+
any kind
|
32
|
+
* Trolling, insulting or derogatory comments, and personal or political attacks
|
33
|
+
* Public or private harassment
|
34
|
+
* Publishing others' private information, such as a physical or email address,
|
35
|
+
without their explicit permission
|
36
|
+
* Other conduct which could reasonably be considered inappropriate in a
|
37
|
+
professional setting
|
38
|
+
|
39
|
+
## Enforcement Responsibilities
|
40
|
+
|
41
|
+
Community leaders are responsible for clarifying and enforcing our standards of
|
42
|
+
acceptable behavior and will take appropriate and fair corrective action in
|
43
|
+
response to any behavior that they deem inappropriate, threatening, offensive,
|
44
|
+
or harmful.
|
45
|
+
|
46
|
+
Community leaders have the right and responsibility to remove, edit, or reject
|
47
|
+
comments, commits, code, wiki edits, issues, and other contributions that are
|
48
|
+
not aligned to this Code of Conduct, and will communicate reasons for moderation
|
49
|
+
decisions when appropriate.
|
50
|
+
|
51
|
+
## Scope
|
52
|
+
|
53
|
+
This Code of Conduct applies within all community spaces, and also applies when
|
54
|
+
an individual is officially representing the community in public spaces.
|
55
|
+
Examples of representing our community include using an official email address,
|
56
|
+
posting via an official social media account, or acting as an appointed
|
57
|
+
representative at an online or offline event.
|
58
|
+
|
59
|
+
## Enforcement
|
60
|
+
|
61
|
+
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
62
|
+
reported to the community leaders responsible for enforcement at
|
63
|
+
[INSERT CONTACT METHOD].
|
64
|
+
All complaints will be reviewed and investigated promptly and fairly.
|
65
|
+
|
66
|
+
All community leaders are obligated to respect the privacy and security of the
|
67
|
+
reporter of any incident.
|
68
|
+
|
69
|
+
## Enforcement Guidelines
|
70
|
+
|
71
|
+
Community leaders will follow these Community Impact Guidelines in determining
|
72
|
+
the consequences for any action they deem in violation of this Code of Conduct:
|
73
|
+
|
74
|
+
### 1. Correction
|
75
|
+
|
76
|
+
**Community Impact**: Use of inappropriate language or other behavior deemed
|
77
|
+
unprofessional or unwelcome in the community.
|
78
|
+
|
79
|
+
**Consequence**: A private, written warning from community leaders, providing
|
80
|
+
clarity around the nature of the violation and an explanation of why the
|
81
|
+
behavior was inappropriate. A public apology may be requested.
|
82
|
+
|
83
|
+
### 2. Warning
|
84
|
+
|
85
|
+
**Community Impact**: A violation through a single incident or series of
|
86
|
+
actions.
|
87
|
+
|
88
|
+
**Consequence**: A warning with consequences for continued behavior. No
|
89
|
+
interaction with the people involved, including unsolicited interaction with
|
90
|
+
those enforcing the Code of Conduct, for a specified period of time. This
|
91
|
+
includes avoiding interactions in community spaces as well as external channels
|
92
|
+
like social media. Violating these terms may lead to a temporary or permanent
|
93
|
+
ban.
|
94
|
+
|
95
|
+
### 3. Temporary Ban
|
96
|
+
|
97
|
+
**Community Impact**: A serious violation of community standards, including
|
98
|
+
sustained inappropriate behavior.
|
99
|
+
|
100
|
+
**Consequence**: A temporary ban from any sort of interaction or public
|
101
|
+
communication with the community for a specified period of time. No public or
|
102
|
+
private interaction with the people involved, including unsolicited interaction
|
103
|
+
with those enforcing the Code of Conduct, is allowed during this period.
|
104
|
+
Violating these terms may lead to a permanent ban.
|
105
|
+
|
106
|
+
### 4. Permanent Ban
|
107
|
+
|
108
|
+
**Community Impact**: Demonstrating a pattern of violation of community
|
109
|
+
standards, including sustained inappropriate behavior, harassment of an
|
110
|
+
individual, or aggression toward or disparagement of classes of individuals.
|
111
|
+
|
112
|
+
**Consequence**: A permanent ban from any sort of public interaction within the
|
113
|
+
community.
|
114
|
+
|
115
|
+
## Attribution
|
116
|
+
|
117
|
+
This Code of Conduct is adapted from the [Contributor Covenant][homepage],
|
118
|
+
version 2.1, available at
|
119
|
+
[https://www.contributor-covenant.org/version/2/1/code_of_conduct.html][v2.1].
|
120
|
+
|
121
|
+
Community Impact Guidelines were inspired by
|
122
|
+
[Mozilla's code of conduct enforcement ladder][Mozilla CoC].
|
123
|
+
|
124
|
+
For answers to common questions about this code of conduct, see the FAQ at
|
125
|
+
[https://www.contributor-covenant.org/faq][FAQ]. Translations are available at
|
126
|
+
[https://www.contributor-covenant.org/translations][translations].
|
127
|
+
|
128
|
+
[homepage]: https://www.contributor-covenant.org
|
129
|
+
[v2.1]: https://www.contributor-covenant.org/version/2/1/code_of_conduct.html
|
130
|
+
[Mozilla CoC]: https://github.com/mozilla/diversity
|
131
|
+
[FAQ]: https://www.contributor-covenant.org/faq
|
132
|
+
[translations]: https://www.contributor-covenant.org/translations
|
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2025 Anthony Veaudry
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
13
|
+
all copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
+
THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,68 @@
|
|
1
|
+
# RailsNodeModuleLinker
|
2
|
+
|
3
|
+
Helps expose selected node_modules into the public directory for use in Rails apps that have transitioned from Sprockets to Propshaft.
|
4
|
+
|
5
|
+
## Installation
|
6
|
+
|
7
|
+
Install the gem and add to the application's Gemfile by executing:
|
8
|
+
|
9
|
+
```bash
|
10
|
+
bundle add rails_node_module_linker
|
11
|
+
```
|
12
|
+
|
13
|
+
If bundler is not being used to manage dependencies, install the gem by executing:
|
14
|
+
|
15
|
+
```bash
|
16
|
+
gem install rails_node_module_linker
|
17
|
+
```
|
18
|
+
|
19
|
+
## Usage
|
20
|
+
|
21
|
+
```ruby
|
22
|
+
# config/initializers/rails_node_module_linker.rb
|
23
|
+
|
24
|
+
Rails.application.config.to_prepare do
|
25
|
+
RailsNodeModuleLinker.config.config_file_path = Rails.root.join("config/symlinked_node_modules.yml")
|
26
|
+
RailsNodeModuleLinker.config.use_emojis = true
|
27
|
+
end
|
28
|
+
```
|
29
|
+
|
30
|
+
```yaml
|
31
|
+
# config/symlinked_node_modules.yml
|
32
|
+
|
33
|
+
---
|
34
|
+
packages:
|
35
|
+
- "@melloware/coloris"
|
36
|
+
- bootstrap
|
37
|
+
- flag-icons
|
38
|
+
- intl-tel-input
|
39
|
+
- mapbox-gl
|
40
|
+
```
|
41
|
+
|
42
|
+
### Rake Tasks
|
43
|
+
|
44
|
+
#### Link Node Modules
|
45
|
+
|
46
|
+
Run the following command to link selected node_modules to the public directory:
|
47
|
+
|
48
|
+
```bash
|
49
|
+
rails rails_node_module_linker:link
|
50
|
+
```
|
51
|
+
|
52
|
+
## Development
|
53
|
+
|
54
|
+
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
55
|
+
|
56
|
+
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and the created tag, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
57
|
+
|
58
|
+
## Contributing
|
59
|
+
|
60
|
+
Bug reports and pull requests are welcome on GitHub [here](https://github.com/anthony0030/rails_node_module_linker). This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/anthony0030/rails_node_module_linker/blob/master/CODE_OF_CONDUCT.md).
|
61
|
+
|
62
|
+
## License
|
63
|
+
|
64
|
+
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
65
|
+
|
66
|
+
## Code of Conduct
|
67
|
+
|
68
|
+
Everyone interacting in the RailsNodeModuleLinker project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/anthony0030/rails_node_module_linker/blob/master/CODE_OF_CONDUCT.md).
|
data/Rakefile
ADDED
@@ -0,0 +1,15 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
class RailsNodeModuleLinker::Config
|
4
|
+
attr_accessor :config_file_path, :use_emojis
|
5
|
+
|
6
|
+
def initialize
|
7
|
+
# * Default configuration values
|
8
|
+
@config_file_path = Rails.root.join('config/symlinked_node_modules.yml')
|
9
|
+
@use_emojis = true
|
10
|
+
|
11
|
+
# TODO: make desitination folder customizable
|
12
|
+
# TODO make source folder customizable
|
13
|
+
# TODO make middleware enablement configurable
|
14
|
+
end
|
15
|
+
end
|
@@ -0,0 +1,63 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'rails_node_module_linker/config'
|
4
|
+
|
5
|
+
class RailsNodeModuleLinker::Middleware
|
6
|
+
def initialize(app)
|
7
|
+
@app = app
|
8
|
+
end
|
9
|
+
|
10
|
+
def call(env)
|
11
|
+
path = env['PATH_INFO']
|
12
|
+
Rack::Utils.parse_query(env['QUERY_STRING'])
|
13
|
+
config_file_path = RailsNodeModuleLinker.config.config_file_path
|
14
|
+
|
15
|
+
if path.start_with?('/node_modules/')
|
16
|
+
status, _headers, _body = @app.call(env)
|
17
|
+
if status == 404
|
18
|
+
package = extract_package(path)
|
19
|
+
|
20
|
+
# * Ensure the config directory exists
|
21
|
+
FileUtils.mkdir_p(config_file_path.dirname)
|
22
|
+
|
23
|
+
# * Load existing config or initialize a new one
|
24
|
+
config = File.exist?(config_file_path) ? YAML.load_file(config_file_path) : { 'packages' => [] }
|
25
|
+
|
26
|
+
# * Add the package if not already listed
|
27
|
+
config['packages'] = (config['packages'] | [package]).sort
|
28
|
+
|
29
|
+
# * Save the updated config
|
30
|
+
File.write(config_file_path, config.to_yaml)
|
31
|
+
|
32
|
+
# * Call the rake task to create the symlink
|
33
|
+
system('bin/rails rails_node_module_linker:link')
|
34
|
+
|
35
|
+
return redirect_to_newly_linked_module(path)
|
36
|
+
end
|
37
|
+
end
|
38
|
+
|
39
|
+
@app.call(env)
|
40
|
+
end
|
41
|
+
|
42
|
+
private
|
43
|
+
|
44
|
+
def extract_package(path)
|
45
|
+
segments = path.split('/')
|
46
|
+
|
47
|
+
return nil unless segments[1] == 'node_modules'
|
48
|
+
|
49
|
+
if segments[2].start_with?('@')
|
50
|
+
"#{segments[2]}/#{segments[3]}"
|
51
|
+
else
|
52
|
+
segments[2]
|
53
|
+
end
|
54
|
+
end
|
55
|
+
|
56
|
+
def redirect_to_newly_linked_module(path)
|
57
|
+
[
|
58
|
+
302,
|
59
|
+
{ 'Location' => path },
|
60
|
+
[]
|
61
|
+
]
|
62
|
+
end
|
63
|
+
end
|
@@ -0,0 +1,22 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'rails'
|
4
|
+
require 'rails_node_module_linker'
|
5
|
+
|
6
|
+
class RailsNodeModuleLinker::Railtie < Rails::Railtie
|
7
|
+
railtie_name :rails_node_module_linker
|
8
|
+
|
9
|
+
rake_tasks do
|
10
|
+
path = File.expand_path(__dir__)
|
11
|
+
Dir.glob("#{path}/tasks/**/*.rake").each { |f| load f }
|
12
|
+
end
|
13
|
+
|
14
|
+
initializer 'rails_node_module_linker.insert_middleware' do |app|
|
15
|
+
if Rails.env.development?
|
16
|
+
app.middleware.insert_before ActionDispatch::Static, RailsNodeModuleLinker::Middleware
|
17
|
+
Rails.logger.info '[rails_node_module_linker] Middleware inserted'
|
18
|
+
else
|
19
|
+
Rails.logger.info '[rails_node_module_linker] Middleware skipped'
|
20
|
+
end
|
21
|
+
end
|
22
|
+
end
|
@@ -0,0 +1,18 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require_relative 'rails_node_module_linker/version'
|
4
|
+
require_relative 'rails_node_module_linker/config'
|
5
|
+
require_relative 'rails_node_module_linker/middleware'
|
6
|
+
require_relative 'rails_node_module_linker/railtie'
|
7
|
+
|
8
|
+
module RailsNodeModuleLinker
|
9
|
+
# * Configuration accessor for users to access and modify settings
|
10
|
+
mattr_accessor :config
|
11
|
+
|
12
|
+
class Engine < ::Rails::Engine
|
13
|
+
# * Initialize default configuration
|
14
|
+
initializer 'rails_node_module_linker.config' do
|
15
|
+
RailsNodeModuleLinker.config ||= RailsNodeModuleLinker::Config.new
|
16
|
+
end
|
17
|
+
end
|
18
|
+
end
|
@@ -0,0 +1,84 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'yaml'
|
4
|
+
require 'fileutils'
|
5
|
+
require 'rails_node_module_linker/config'
|
6
|
+
|
7
|
+
def log_with_emoji(message)
|
8
|
+
if RailsNodeModuleLinker.config.use_emojis
|
9
|
+
puts message
|
10
|
+
else
|
11
|
+
# * Removes non-ASCII characters, which includes emojis and the space from the beggining
|
12
|
+
puts message.gsub(/[[:^ascii:]]/, '').strip
|
13
|
+
end
|
14
|
+
end
|
15
|
+
|
16
|
+
namespace :rails_node_module_linker do
|
17
|
+
desc 'Symlink full packages from node_modules to public/node_modules'
|
18
|
+
task link: :environment do
|
19
|
+
config_file_path = RailsNodeModuleLinker.config.config_file_path
|
20
|
+
|
21
|
+
# * Ensure the config file exists with a default structure
|
22
|
+
unless File.exist?(config_file_path)
|
23
|
+
log_with_emoji("๐ Created missing config file at #{config_file_path}")
|
24
|
+
|
25
|
+
FileUtils.mkdir_p(config_file_path.dirname)
|
26
|
+
File.write(config_file_path, { 'packages' => [] }.to_yaml)
|
27
|
+
end
|
28
|
+
|
29
|
+
config = YAML.load_file(config_file_path)
|
30
|
+
node_modules_to_link = config['packages'] || []
|
31
|
+
|
32
|
+
log_with_emoji('๐ญ No node modules configured to link.') if node_modules_to_link.empty?
|
33
|
+
|
34
|
+
public_node_modules = Rails.root.join('public/node_modules')
|
35
|
+
FileUtils.mkdir_p(public_node_modules)
|
36
|
+
|
37
|
+
# * Clean up outdated symlinks
|
38
|
+
existing_symlinks = Dir.glob(public_node_modules.join('**/*'), File::FNM_DOTMATCH).select do |path|
|
39
|
+
File.symlink?(path)
|
40
|
+
end
|
41
|
+
existing_symlinks.each do |symlink_path|
|
42
|
+
relative_path = Pathname.new(symlink_path).relative_path_from(public_node_modules).to_s
|
43
|
+
next if node_modules_to_link.include?(relative_path)
|
44
|
+
|
45
|
+
log_with_emoji("๐งน Removing stale symlink: #{symlink_path}")
|
46
|
+
|
47
|
+
FileUtils.rm(symlink_path)
|
48
|
+
end
|
49
|
+
|
50
|
+
# * Add or update symlinks from config
|
51
|
+
node_modules_to_link.each do |package|
|
52
|
+
source = Rails.root.join('node_modules', package)
|
53
|
+
destination = public_node_modules.join(package)
|
54
|
+
|
55
|
+
unless source.exist?
|
56
|
+
log_with_emoji("๐ซ Source does not exist: #{source} (skipping)")
|
57
|
+
|
58
|
+
next
|
59
|
+
end
|
60
|
+
|
61
|
+
if destination.symlink?
|
62
|
+
if File.exist?(destination.readlink)
|
63
|
+
log_with_emoji("โ
Already linked: #{destination}")
|
64
|
+
next
|
65
|
+
else
|
66
|
+
log_with_emoji("โ Broken symlink detected: #{destination} (removing)")
|
67
|
+
|
68
|
+
FileUtils.rm(destination)
|
69
|
+
end
|
70
|
+
elsif destination.exist?
|
71
|
+
log_with_emoji("โ Destination exists but is not a symlink: #{destination} (skipping)")
|
72
|
+
next
|
73
|
+
end
|
74
|
+
|
75
|
+
FileUtils.mkdir_p(destination.parent)
|
76
|
+
FileUtils.ln_sf(source, destination)
|
77
|
+
|
78
|
+
log_with_emoji("๐ Linked: #{source} -> #{destination}")
|
79
|
+
end
|
80
|
+
end
|
81
|
+
|
82
|
+
desc 'Link node module packages before asset precompilation'
|
83
|
+
task precompile: :link_node_module_packages
|
84
|
+
end
|
metadata
ADDED
@@ -0,0 +1,59 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: rails_node_module_linker
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Anthony Veaudry
|
8
|
+
bindir: exe
|
9
|
+
cert_chain: []
|
10
|
+
date: 2025-05-06 00:00:00.000000000 Z
|
11
|
+
dependencies: []
|
12
|
+
description: Exposees wanted node_modules to the public directory for Rails apps that
|
13
|
+
have transitioned from Sprockets to Propshaft.
|
14
|
+
email:
|
15
|
+
- anthony@veaudry.pro
|
16
|
+
executables: []
|
17
|
+
extensions: []
|
18
|
+
extra_rdoc_files: []
|
19
|
+
files:
|
20
|
+
- ".rspec"
|
21
|
+
- ".rubocop.yml"
|
22
|
+
- ".vscode/settings.json"
|
23
|
+
- CHANGELOG.md
|
24
|
+
- CODE_OF_CONDUCT.md
|
25
|
+
- LICENSE.txt
|
26
|
+
- README.md
|
27
|
+
- Rakefile
|
28
|
+
- lib/rails_node_module_linker.rb
|
29
|
+
- lib/rails_node_module_linker/config.rb
|
30
|
+
- lib/rails_node_module_linker/middleware.rb
|
31
|
+
- lib/rails_node_module_linker/railtie.rb
|
32
|
+
- lib/rails_node_module_linker/version.rb
|
33
|
+
- lib/tasks/rails_node_module_linker/link.rake
|
34
|
+
homepage: https://github.com/anthony0030/rails_node_module_linker
|
35
|
+
licenses:
|
36
|
+
- MIT
|
37
|
+
metadata:
|
38
|
+
homepage_uri: https://github.com/anthony0030/rails_node_module_linker/wiki
|
39
|
+
source_code_uri: https://github.com/anthony0030/rails_node_module_linker
|
40
|
+
changelog_uri: https://github.com/anthony0030/rails_node_module_linker/blob/main/CHANGELOG.md
|
41
|
+
rubygems_mfa_required: 'true'
|
42
|
+
rdoc_options: []
|
43
|
+
require_paths:
|
44
|
+
- lib
|
45
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
46
|
+
requirements:
|
47
|
+
- - ">="
|
48
|
+
- !ruby/object:Gem::Version
|
49
|
+
version: 3.1.0
|
50
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - ">="
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '0'
|
55
|
+
requirements: []
|
56
|
+
rubygems_version: 3.6.5
|
57
|
+
specification_version: 4
|
58
|
+
summary: Link node modules into the public folder of a Rails app using Propshaft
|
59
|
+
test_files: []
|