sidekiq-enqueuer 1.0.1 → 1.0.2
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/README.md +2 -2
- data/lib/sidekiq/enqueuer/version.rb +1 -1
- data/lib/sidekiq/enqueuer/views/new.erb +2 -2
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a2c30a05a0cca71c0e21dc5ed7bd868eca56df26
|
|
4
|
+
data.tar.gz: 353a18d8f9df948e129225b3e7e38da27e78fe6c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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
|
-
*
|
|
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,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>
|
|
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">
|