mushin 0.21.0 → 0.22.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: f67105bfa6f8dbfbdfd3e60fe89e887a4d42cc68
4
- data.tar.gz: 5084494b7f7bf55fd132c2afb600d6ffb8e48340
3
+ metadata.gz: 2cf3a7254d8c86668caee79b1641f3f2bf1ab132
4
+ data.tar.gz: d7666cb722bf83e25baf7b94cf32bce8105baf20
5
5
  SHA512:
6
- metadata.gz: 29fbdd6ab06b156d45ffdec6efe6588c12a094009daab4bf8532182114721238ce593752249483b4f396144d5421c7fc654afb0c1f1a41fe9704ef972c8a9aaf
7
- data.tar.gz: 746f1c42cb702705c4af1cef8b09b571cea51e879e254f0c3c09a429288c26177a4bd50ed4e38cf803f96a316dfb050fca2a89e7f1dbfe4b8552297947ffbff7
6
+ metadata.gz: 26e95d6d38c42c92f6b7cbb88d018e71968672b9036b0b2f30bbd6c08934df1bd89aac3842b76533b275e8894ba004926929a6ea73a9b532e21ecbff7f2a3563
7
+ data.tar.gz: 2d02c31ff7c0acba576bf93f840e03065ec7516dad7352246c8bb84bfc34f58594ea1fe1a2b506ee754314afa4a410b319793cca53b2a3b61b75383ad87e0c21
data/lib/mushin/main.rb CHANGED
@@ -71,8 +71,9 @@ module Mushin
71
71
  klass_construct_value.each do |klass_ext|
72
72
  ext_hash = Hash.new
73
73
  ext_hash[:ext] = klass_ext[:ext]
74
- ext_hash[:params] = Hash.new
75
- ext_hash[:opts] = Hash.new
74
+ #ext_hash = klass_ext
75
+ ext_hash[:params] = klass_ext[:params] #Hash.new
76
+ ext_hash[:opts] = klass_ext[:opts] #Hash.new
76
77
 
77
78
  klass_opts_hash = klass_ext[:opts]
78
79
  klass_params_hash = klass_ext[:params]
@@ -1,3 +1,3 @@
1
1
  module Mushin
2
- VERSION = "0.21.0"
2
+ VERSION = "0.22.0"
3
3
  end
data/samples/sample3.rb CHANGED
@@ -59,7 +59,7 @@ module Sample
59
59
  context "query" do
60
60
  construct 'torrentsA' do
61
61
  use ext: Sample::ExtA, params: {:seeders => :seeders_valueA}, opts: {:ssd_path => :path_valueA}
62
- use ext: Sample::ExtB, params: {:seeders => :seeders_valueB}, opts: {:ssd_path => :path_valueB}
62
+ use ext: Sample::ExtB, params: {:seeders => :seeders_valueB}, opts: {:ssd_path => :path_valueB, :extra_default_key => :extra_default_value}
63
63
  end
64
64
  construct 'torrentsB' do
65
65
  use ext: Sample::ExtA, params: {:seeders => :seeders_valueA}, opts: {:ssd_path => :path_valueA}
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mushin
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.21.0
4
+ version: 0.22.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - zotherstupidguy