batch_manager 0.3.3 → 0.3.4
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
MDExOTIzMjEyZmFlZjkxMzBlZmMxYThjYzBjMDFkZWU5ZWU2YmZkMQ==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
ZjYxOTNkYzY0ZTQwOGY3NzU5ODIxZDQ2ZGNjNDc5ODRmYTdhZjllMQ==
|
7
7
|
!binary "U0hBNTEy":
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
OGEzNDRmNTdiYTU3Y2VjZWYzNDI4OTVkYTgxZjk4MDAyZWNhMWI1MGU2MjMw
|
10
|
+
ZjJlYjhjOWIwYjAwNDc0YTQ3Nzk0MGQ2MGUyZDZhNDRhZDA2NWQ3NzlhYjRl
|
11
|
+
NjIyZmVlMmVhNDIyZGEwMTExZGI3NWExMjRjNTlmZmU5YTY0MDY=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
YmFhYjA5MGY5Nzk2YTIxZDdjNDY4MzlhZGQ4ZGQyM2U5Mzg2ZWFlMzc3OTQ4
|
14
|
+
NDY1YWFmZGMxZjljNmY5MGE5NmJkYmYyNGY3MTljMDRmYmE2MWJmZjE2ZGJj
|
15
|
+
OWM3YjRkNDVmMjUwYWJhYmRlOTA0YTMxM2UyMTY2N2Q5YzA2YjI=
|
data/README.md
CHANGED
@@ -80,7 +80,7 @@ Mount the web interface in the routes file.
|
|
80
80
|
|
81
81
|
You can also use web interface to execute batches.
|
82
82
|
|
83
|
-
If [resque](https://github.com/resque/resque) installed in you application, the batch script can be executed asynchronous. And the log can be checked on real time in the brower.
|
83
|
+
If [resque](https://github.com/resque/resque) installed in you application and the resque worker started, the batch script can be executed asynchronous through the worker. And the log can be checked on real time in the brower. Otherwise the batch script will be executed synchronous.
|
84
84
|
|
85
85
|
The QUEUE's name will be **"batch_manager".**
|
86
86
|
|
data/lib/batch_manager/engine.rb
CHANGED
@@ -10,5 +10,9 @@ module BatchManager
|
|
10
10
|
config.batch_manager.batch_dir = "script/batch"
|
11
11
|
config.batch_manager.save_log = true
|
12
12
|
config.batch_manager.log_dir = "log/batch"
|
13
|
+
|
14
|
+
initializer "batch_manager.assets.precompile" do |app|
|
15
|
+
app.config.assets.precompile += %w(batch_manager/editor.js)
|
16
|
+
end
|
13
17
|
end
|
14
18
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: batch_manager
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.3.
|
4
|
+
version: 0.3.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Weihu Chen
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2013-06-
|
11
|
+
date: 2013-06-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|