modulation 0.23 → 0.24
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/CHANGELOG.md +6 -0
- data/lib/modulation/core.rb +1 -1
- data/lib/modulation/ext.rb +5 -0
- data/lib/modulation/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7ef376ed9b8358f85facdb42d47fde2c5710ccec9e20ff3bff2657e17a392327
|
4
|
+
data.tar.gz: 36b7033a8b9c44158f23b4bb3bc94a465bb123154d3712d79c654d237ce0061b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3b739b962bb3565c333fa8da105cc82105079494b0ec274c1d1a01ee2791407c684504291674251c9f90342705659326a2921042274a6d9708e6f481497d8470
|
7
|
+
data.tar.gz: dc907fc3091394365b7db34c8b0e68ac0374ecbf56e932c7a2a9bacffc9698d793a856618255730d73ed37c7ade9068c1b8e55719f09045a2c56da5d028565d9
|
data/CHANGELOG.md
CHANGED
data/lib/modulation/core.rb
CHANGED
@@ -105,7 +105,7 @@ module Modulation
|
|
105
105
|
def define_auto_import_const_missing_method(receiver, auto_import_hash)
|
106
106
|
receiver.singleton_class.define_method(:const_missing) do |sym|
|
107
107
|
(path, caller_location) = auto_import_hash[sym]
|
108
|
-
path ? const_set(sym, import(path, caller_location)) : super
|
108
|
+
path ? const_set(sym, import(path, caller_location)) : super(sym)
|
109
109
|
end
|
110
110
|
end
|
111
111
|
|
data/lib/modulation/ext.rb
CHANGED
data/lib/modulation/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: modulation
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: '0.
|
4
|
+
version: '0.24'
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Sharon Rosner
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-05-
|
11
|
+
date: 2019-05-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: minitest
|