ncr-background_fu 1.0.5 → 1.0.6
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.
- data/History.txt +4 -0
- data/README.txt +8 -0
- data/background-fu.gemspec +1 -1
- data/lib/background_fu.rb +1 -1
- metadata +2 -2
data/History.txt
CHANGED
data/README.txt
CHANGED
@@ -39,6 +39,14 @@ Background tasks in Ruby On Rails made dead simple.
|
|
39
39
|
# after few seconds when background daemon completes the job
|
40
40
|
|
41
41
|
Job.find(job_id).result # result of the job should equal 3
|
42
|
+
|
43
|
+
If you want to use default generated views, update your config/routes.rb:
|
44
|
+
|
45
|
+
map.namespace "admin" do |admin|
|
46
|
+
admin.resources :jobs
|
47
|
+
end
|
48
|
+
|
49
|
+
Then you can point your browser to http://localhost:3000/admin/jobs
|
42
50
|
|
43
51
|
== EXAMPLES:
|
44
52
|
|
data/background-fu.gemspec
CHANGED
data/lib/background_fu.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ncr-background_fu
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jacek Becela
|
@@ -83,7 +83,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
83
83
|
requirements: []
|
84
84
|
|
85
85
|
rubyforge_project: background-fu
|
86
|
-
rubygems_version: 1.0
|
86
|
+
rubygems_version: 1.2.0
|
87
87
|
signing_key:
|
88
88
|
specification_version: 2
|
89
89
|
summary: Background tasks in Ruby On Rails made dead simple.
|