npm_ext 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/.gitignore +8 -0
- data/Gemfile +12 -0
- data/Gemfile.lock +52 -0
- data/README.md +29 -0
- data/Rakefile +16 -0
- data/lib/npm_ext/mkmf.rb +80 -0
- data/lib/npm_ext/version.rb +5 -0
- data/lib/npm_ext.rb +8 -0
- data/npm_ext.gemspec +25 -0
- data/sig/npm_ext.rbs +4 -0
- metadata +69 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: e5702f247f1016652758c2e9bb04d04facde9fab3059825f0762d6b7dbd3cea0
|
4
|
+
data.tar.gz: 1fe3355f069f3d85c70a966767eb35f151505b84b1dfd71d1f8257e3636f35cb
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: a7f89d25ba4c1d9a935ec6fa17ff4fd07fc5c7743d6738dd3b50b50177cae898cb244f1c759a81bc326b4ee80841940ed255a5565392b73b7fe1f441411935b3
|
7
|
+
data.tar.gz: 618a0569dbc858ad42d8887443e642ee7f80cbe340b674ca1ff22f1071ab86add46fd8c65f719ebae7dd5e798c0af25a90eaeb887cecd73c813510ad4dc86c68
|
data/.gitignore
ADDED
data/Gemfile
ADDED
data/Gemfile.lock
ADDED
@@ -0,0 +1,52 @@
|
|
1
|
+
PATH
|
2
|
+
remote: .
|
3
|
+
specs:
|
4
|
+
npm_ext (0.1.0)
|
5
|
+
mini_racer (= 0.6.2)
|
6
|
+
|
7
|
+
GEM
|
8
|
+
remote: https://rubygems.org/
|
9
|
+
specs:
|
10
|
+
ast (2.4.2)
|
11
|
+
json (2.9.1)
|
12
|
+
language_server-protocol (3.17.0.3)
|
13
|
+
libv8-node (16.10.0.0-x86_64-linux)
|
14
|
+
mini_racer (0.6.2)
|
15
|
+
libv8-node (~> 16.10.0.0)
|
16
|
+
minitest (5.25.4)
|
17
|
+
parallel (1.26.3)
|
18
|
+
parser (3.3.6.0)
|
19
|
+
ast (~> 2.4.1)
|
20
|
+
racc
|
21
|
+
racc (1.8.1)
|
22
|
+
rainbow (3.1.1)
|
23
|
+
rake (13.2.1)
|
24
|
+
regexp_parser (2.9.3)
|
25
|
+
rubocop (1.69.2)
|
26
|
+
json (~> 2.3)
|
27
|
+
language_server-protocol (>= 3.17.0)
|
28
|
+
parallel (~> 1.10)
|
29
|
+
parser (>= 3.3.0.2)
|
30
|
+
rainbow (>= 2.2.2, < 4.0)
|
31
|
+
regexp_parser (>= 2.9.3, < 3.0)
|
32
|
+
rubocop-ast (>= 1.36.2, < 2.0)
|
33
|
+
ruby-progressbar (~> 1.7)
|
34
|
+
unicode-display_width (>= 2.4.0, < 4.0)
|
35
|
+
rubocop-ast (1.37.0)
|
36
|
+
parser (>= 3.3.1.0)
|
37
|
+
ruby-progressbar (1.13.0)
|
38
|
+
unicode-display_width (3.1.2)
|
39
|
+
unicode-emoji (~> 4.0, >= 4.0.4)
|
40
|
+
unicode-emoji (4.0.4)
|
41
|
+
|
42
|
+
PLATFORMS
|
43
|
+
x86_64-linux
|
44
|
+
|
45
|
+
DEPENDENCIES
|
46
|
+
minitest (~> 5.0)
|
47
|
+
npm_ext!
|
48
|
+
rake (~> 13.0)
|
49
|
+
rubocop (~> 1.21)
|
50
|
+
|
51
|
+
BUNDLED WITH
|
52
|
+
2.3.27
|
data/README.md
ADDED
@@ -0,0 +1,29 @@
|
|
1
|
+
# NpmExt
|
2
|
+
|
3
|
+
Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/npm_ext`. To experiment with that code, run `bin/console` for an interactive prompt.
|
4
|
+
|
5
|
+
TODO: Delete this and the text above, and describe your gem
|
6
|
+
|
7
|
+
## Installation
|
8
|
+
|
9
|
+
Install the gem and add to the application's Gemfile by executing:
|
10
|
+
|
11
|
+
$ bundle add npm_ext
|
12
|
+
|
13
|
+
If bundler is not being used to manage dependencies, install the gem by executing:
|
14
|
+
|
15
|
+
$ gem install npm_ext
|
16
|
+
|
17
|
+
## Usage
|
18
|
+
|
19
|
+
TODO: Write usage instructions here
|
20
|
+
|
21
|
+
## Development
|
22
|
+
|
23
|
+
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake test` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
24
|
+
|
25
|
+
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).
|
26
|
+
|
27
|
+
## Contributing
|
28
|
+
|
29
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/npm_ext.
|
data/Rakefile
ADDED
@@ -0,0 +1,16 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require "bundler/gem_tasks"
|
4
|
+
require "rake/testtask"
|
5
|
+
|
6
|
+
Rake::TestTask.new(:test) do |t|
|
7
|
+
t.libs << "test"
|
8
|
+
t.libs << "lib"
|
9
|
+
t.test_files = FileList["test/**/test_*.rb"]
|
10
|
+
end
|
11
|
+
|
12
|
+
require "rubocop/rake_task"
|
13
|
+
|
14
|
+
RuboCop::RakeTask.new
|
15
|
+
|
16
|
+
task default: %i[test rubocop]
|
data/lib/npm_ext/mkmf.rb
ADDED
@@ -0,0 +1,80 @@
|
|
1
|
+
require "digest"
|
2
|
+
require "json"
|
3
|
+
require "mkmf"
|
4
|
+
|
5
|
+
module NpmExt
|
6
|
+
module Mkmf
|
7
|
+
class RollupConfigPlugin
|
8
|
+
def initialize(name)
|
9
|
+
@name = name
|
10
|
+
end
|
11
|
+
|
12
|
+
def to_json(*_args)
|
13
|
+
<<~JS
|
14
|
+
require("#{@name}")()
|
15
|
+
JS
|
16
|
+
end
|
17
|
+
end
|
18
|
+
|
19
|
+
PackageEntry = Struct.new(
|
20
|
+
:name,
|
21
|
+
:file_to_bundle,
|
22
|
+
keyword_init: true,
|
23
|
+
)
|
24
|
+
|
25
|
+
ROLLUP_PLUGINS = %i[
|
26
|
+
@rollup/plugin-commonjs
|
27
|
+
@rollup/plugin-node-resolve
|
28
|
+
@rollup/plugin-json
|
29
|
+
@rollup/plugin-terser
|
30
|
+
].freeze
|
31
|
+
|
32
|
+
ROLLUP_PACKAGES = (ROLLUP_PLUGINS + %i[rollup]).freeze
|
33
|
+
|
34
|
+
def parse_package_json(dir)
|
35
|
+
packages = JSON.parse(File.read("#{dir}/package.json"), symbolize_names: true)
|
36
|
+
packages[:dependencies].map do |x, _|
|
37
|
+
PackageEntry.new(
|
38
|
+
name: x,
|
39
|
+
file_to_bundle: packages[:fileToBundle][x],
|
40
|
+
)
|
41
|
+
end
|
42
|
+
end
|
43
|
+
|
44
|
+
def create_rollup_config(dir)
|
45
|
+
parse_package_json(dir).map do |package|
|
46
|
+
configs = "rollup.config.#{Digest::MD5.hexdigest(package.name.to_s)}.js"
|
47
|
+
File.write(configs, "module.exports = #{JSON.generate(
|
48
|
+
{
|
49
|
+
# TODO: if no file provided get the input file from package.json
|
50
|
+
input: "node_modules/#{package.name}/#{package.file_to_bundle}",
|
51
|
+
output: {
|
52
|
+
file: "#{package.name}.npm_ext.js",
|
53
|
+
name: package.name,
|
54
|
+
format: "iife",
|
55
|
+
},
|
56
|
+
plugins: ROLLUP_PLUGINS.map do |x|
|
57
|
+
RollupConfigPlugin.new x
|
58
|
+
end,
|
59
|
+
},
|
60
|
+
)}")
|
61
|
+
configs
|
62
|
+
end
|
63
|
+
end
|
64
|
+
|
65
|
+
def create_npm_makefile(dir)
|
66
|
+
configs = create_rollup_config(dir)
|
67
|
+
File.write("Makefile", <<~MAKE)
|
68
|
+
install:
|
69
|
+
\tcp #{dir}/package*.json ./
|
70
|
+
\tnpm ci
|
71
|
+
\tnpm i #{ROLLUP_PACKAGES.join(" ")}
|
72
|
+
#{configs.map { |x| "\tnpx rollup --config #{x}" }.join("\n")}
|
73
|
+
\tcat *.npm_ext.js > npm_ext.so
|
74
|
+
\tcp *.npm_ext.js ../../../../lib/
|
75
|
+
MAKE
|
76
|
+
end
|
77
|
+
end
|
78
|
+
end
|
79
|
+
|
80
|
+
include NpmExt::Mkmf # rubocop:disable Style/MixinUsage
|
data/lib/npm_ext.rb
ADDED
data/npm_ext.gemspec
ADDED
@@ -0,0 +1,25 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require_relative "lib/npm_ext/version"
|
4
|
+
|
5
|
+
Gem::Specification.new do |spec|
|
6
|
+
spec.name = "npm_ext"
|
7
|
+
spec.version = NpmExt::VERSION
|
8
|
+
spec.authors = ["Alexandra Østermark"]
|
9
|
+
spec.email = ["alex.cramt@gmail.com"]
|
10
|
+
|
11
|
+
spec.summary = ""
|
12
|
+
spec.description = ""
|
13
|
+
spec.homepage = "https://github.com/cramt/npm_ext"
|
14
|
+
spec.required_ruby_version = ">= 2.6.0"
|
15
|
+
spec.metadata["homepage_uri"] = spec.homepage
|
16
|
+
spec.metadata["source_code_uri"] = spec.homepage
|
17
|
+
spec.metadata["changelog_uri"] = spec.homepage
|
18
|
+
|
19
|
+
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
20
|
+
|
21
|
+
spec.executables = []
|
22
|
+
spec.require_paths = ["lib"]
|
23
|
+
|
24
|
+
spec.add_dependency "mini_racer", "0.6.2"
|
25
|
+
end
|
data/sig/npm_ext.rbs
ADDED
metadata
ADDED
@@ -0,0 +1,69 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: npm_ext
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Alexandra Østermark
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2024-12-25 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: mini_racer
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - '='
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: 0.6.2
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - '='
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: 0.6.2
|
27
|
+
description: ''
|
28
|
+
email:
|
29
|
+
- alex.cramt@gmail.com
|
30
|
+
executables: []
|
31
|
+
extensions: []
|
32
|
+
extra_rdoc_files: []
|
33
|
+
files:
|
34
|
+
- ".gitignore"
|
35
|
+
- Gemfile
|
36
|
+
- Gemfile.lock
|
37
|
+
- README.md
|
38
|
+
- Rakefile
|
39
|
+
- lib/npm_ext.rb
|
40
|
+
- lib/npm_ext/mkmf.rb
|
41
|
+
- lib/npm_ext/version.rb
|
42
|
+
- npm_ext.gemspec
|
43
|
+
- sig/npm_ext.rbs
|
44
|
+
homepage: https://github.com/cramt/npm_ext
|
45
|
+
licenses: []
|
46
|
+
metadata:
|
47
|
+
homepage_uri: https://github.com/cramt/npm_ext
|
48
|
+
source_code_uri: https://github.com/cramt/npm_ext
|
49
|
+
changelog_uri: https://github.com/cramt/npm_ext
|
50
|
+
post_install_message:
|
51
|
+
rdoc_options: []
|
52
|
+
require_paths:
|
53
|
+
- lib
|
54
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
55
|
+
requirements:
|
56
|
+
- - ">="
|
57
|
+
- !ruby/object:Gem::Version
|
58
|
+
version: 2.6.0
|
59
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
60
|
+
requirements:
|
61
|
+
- - ">="
|
62
|
+
- !ruby/object:Gem::Version
|
63
|
+
version: '0'
|
64
|
+
requirements: []
|
65
|
+
rubygems_version: 3.5.9
|
66
|
+
signing_key:
|
67
|
+
specification_version: 4
|
68
|
+
summary: ''
|
69
|
+
test_files: []
|