sidekiq-enqueuer 1.0.1 → 1.0.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: db4c4b0c1816251c65a6e03abf0163c6eb640a3f
4
- data.tar.gz: ca07096636cc304c81ae844787d4e80e52db874b
3
+ metadata.gz: a2c30a05a0cca71c0e21dc5ed7bd868eca56df26
4
+ data.tar.gz: 353a18d8f9df948e129225b3e7e38da27e78fe6c
5
5
  SHA512:
6
- metadata.gz: 57bc674fb3fc33cd790368596d13c16f86cecbe708e579a5de965f3db645d4fb7ff0cfbf8dc697fce7730b49c27bbe33901bfcda7ba7fe723cd994eb6a959492
7
- data.tar.gz: 9a69db182e806570b852aa90699da544d4e21a45b29347547327d86c6134cc11a110279a519e529eb11e33827f550d00381e8bf077a89f5517b83acd9a72f34a
6
+ metadata.gz: 5950cb0436037ef918b8bcaafd1f920a314ba514553eadd15688b7514af923af1e196805b8a7571aca0fba9a65a2711188a725816b6b965ad81dafbe8ec012cd
7
+ data.tar.gz: 8eb436a36eb8c948ff425ac90e7a14ff9da602ba29130948914bb3df0c46c01ff88d5c3dbcedde2c87b6e8e313ed03154677ca5ad8532095d06801f37de10d79
data/README.md CHANGED
@@ -32,8 +32,8 @@ Or install it yourself as:
32
32
  * That is it!
33
33
 
34
34
  ## Form filling
35
- * Support string value and hash value.
36
- * Hash value should start with {, hash value will be parsed by YAML, eg: {k1: v1, k2: v2} to {'k1'=> 'v1', 'k2'=> 'v2'}.
35
+ * Support string value and hash value. Value will be stripped.
36
+ * Start with { will be parsed by YAML as hash, eg: {k1: v1, k2: v2} to {'k1'=> 'v1', 'k2'=> 'v2'}
37
37
 
38
38
 
39
39
  ## Contributing
@@ -1,5 +1,5 @@
1
1
  module Sidekiq
2
2
  module Enqueuer
3
- VERSION = "1.0.1"
3
+ VERSION = "1.0.2"
4
4
  end
5
5
  end
@@ -1,8 +1,8 @@
1
1
  <h3>Enqueuer</h3>
2
2
 
3
3
  <div class="well">
4
- <p>Support string value and hash value.</p>
5
- <p>Hash value should start with {, hash value will be parsed by YAML, eg: {k1: v1, k2: v2} to {'k1'=> 'v1', 'k2'=> 'v2'} </p>
4
+ <p>Support string value and hash value. Value will be stripped.</p>
5
+ <p>Start with { will be parsed by YAML as hash, eg: {k1: v1, k2: v2} to {'k1'=> 'v1', 'k2'=> 'v2'}. </p>
6
6
  </div>
7
7
 
8
8
  <form method="post" action="<%= root_path %>enqueuer">
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sidekiq-enqueuer
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.1
4
+ version: 1.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - richfisher