yomikomu 0.4.0 → 0.4.1

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 6e1bcc1dbf78cadc55edd354c6a420358558e084
4
- data.tar.gz: da90ed8f437df5aadbbb6b10b73e9f783b51b2aa
3
+ metadata.gz: 7257ae12e2cf13ef31adc0b7ebee80d8984dc95c
4
+ data.tar.gz: 3914bfcf5187562d23b34940d4ce26290488a4b6
5
5
  SHA512:
6
- metadata.gz: 4a4b925c4c284dc225ad5d92905685d7ee48d5daad135acf05d5c2a89949023ae43fb52dbc50f3574ccda99e53eebd8ca73d7ad6b3c3c81bf56944c7b447a555
7
- data.tar.gz: 0302472fcbb4dd4f0e78d040998ce0302df08e5debaef057cd9a5f8bd17c9e1adb12433c5f93fb4cc4bc29efb36aaa0a769253c132e844c40ee79266403aebda
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
- * YOMIKOMU_INFO (default: not defaind): show some information.
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
@@ -402,7 +402,9 @@ module Yomikomu
402
402
  end
403
403
 
404
404
  class RubyVM::InstructionSequence
405
- def self.load_iseq fname
406
- ::Yomikomu::STORAGE.load_iseq(fname)
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
@@ -1,3 +1,3 @@
1
1
  module Yomikomu
2
- VERSION = "0.4.0"
2
+ VERSION = "0.4.1"
3
3
  end
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.0
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: 2016-05-03 00:00:00.000000000 Z
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.4
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).