neri 0.9.7 → 1.0.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/README.ja.md +49 -69
- data/README.md +201 -61
- data/exe/neri +1 -2
- data/lib/neri/build.rb +274 -419
- data/lib/neri/runtime.rb +1 -0
- data/lib/neri/version.rb +1 -1
- metadata +3 -3
data/lib/neri/runtime.rb
CHANGED
@@ -139,6 +139,7 @@ module Neri
|
|
139
139
|
|
140
140
|
def search_in_load_path(file_path)
|
141
141
|
$LOAD_PATH.each do |path_str|
|
142
|
+
path_str = path_str.dup.force_encoding(Encoding::UTF_8) if path_str.encoding == Encoding::BINARY
|
142
143
|
load_path = Pathname.new(path_str.encode(Encoding::UTF_8))
|
143
144
|
candidate_path_str = path_in_datafile(load_path + file_path)
|
144
145
|
return candidate_path_str if candidate_path_str
|
data/lib/neri/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: neri
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 1.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- nodai2hITC
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2022-01-08 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: Neri builds Windows batfile or exefile from Ruby script.
|
14
14
|
email:
|
@@ -56,7 +56,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
56
56
|
- !ruby/object:Gem::Version
|
57
57
|
version: '0'
|
58
58
|
requirements: []
|
59
|
-
rubygems_version: 3.
|
59
|
+
rubygems_version: 3.3.3
|
60
60
|
signing_key:
|
61
61
|
specification_version: 4
|
62
62
|
summary: One-Click Ruby Application Builder
|