yomikomu 0.4.0 → 0.4.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +2 -1
- data/lib/yomikomu.rb +4 -2
- data/lib/yomikomu/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7257ae12e2cf13ef31adc0b7ebee80d8984dc95c
|
4
|
+
data.tar.gz: 3914bfcf5187562d23b34940d4ce26290488a4b6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ba93ca462f7608ffd5817e82cf1e5688d1eff044721adb1b88a3761ee67cbbb18fb1cb192f3adaa94c3e7001c0ff2e6a8ba15bf145a82a2dd831f3cb4c48b0df
|
7
|
+
data.tar.gz: 2cbb57d9662efb32e907dd89cff51997dae568a3cbf04c04b79ff544e1028266c5387b17d34ae148558561ac0480d1354b7cbfdaa37e1a7dd7f2bd0376172bc8
|
data/README.md
CHANGED
@@ -37,7 +37,8 @@ You can use the following configuration with environment variables.
|
|
37
37
|
* 'flatfile' stores binaries in one flat file. Updating is not supported. Use with YOMIKOMU_AUTO_COMPILE.
|
38
38
|
* YOMIKOMU_STORAGE_DIR (default: "~/.ruby_binaries"): choose directory where binary files are stored.
|
39
39
|
* YOMIKOMU_AUTO_COMPILE (default: false): if this value is `true`, then compile all required scripts implicitly.
|
40
|
-
*
|
40
|
+
* YOMIKOMU_YOMIKOMANAI (default: not defined): disable all YOMIKOMU features.
|
41
|
+
* YOMIKOMU_INFO (default: not defined): show some information.
|
41
42
|
* YOMIKOMU_DEBUG (default: not defined): show many information.
|
42
43
|
|
43
44
|
### Compile and store instruction sequences
|
data/lib/yomikomu.rb
CHANGED
@@ -402,7 +402,9 @@ module Yomikomu
|
|
402
402
|
end
|
403
403
|
|
404
404
|
class RubyVM::InstructionSequence
|
405
|
-
|
406
|
-
|
405
|
+
if ENV['YOMIKOMU_YOMIKOMANAI'] != 'true'
|
406
|
+
def self.load_iseq fname
|
407
|
+
::Yomikomu::STORAGE.load_iseq(fname)
|
408
|
+
end
|
407
409
|
end
|
408
410
|
end
|
data/lib/yomikomu/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: yomikomu
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.4.
|
4
|
+
version: 0.4.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Koichi Sasada
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2017-02-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: mmapped_string
|
@@ -120,7 +120,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
120
120
|
version: '0'
|
121
121
|
requirements: []
|
122
122
|
rubyforge_project:
|
123
|
-
rubygems_version: 2.6.
|
123
|
+
rubygems_version: 2.6.10
|
124
124
|
signing_key:
|
125
125
|
specification_version: 4
|
126
126
|
summary: Dump compiled iseq by binary (kakidasu) and load binary (yomidasu).
|