ncr-background_fu 1.0.5 → 1.0.6

Sign up to get free protection for your applications and to get access to all the features.
data/History.txt CHANGED
@@ -1,3 +1,7 @@
1
+ === 1.0.6 / 2008-07-03
2
+
3
+ * Updated docs to mention config/routes.rb. [Joe Goldwasser, ncr]
4
+
1
5
  === 1.0.5 / 2008-06-02
2
6
 
3
7
  * Fixed enqueue method (now properly returns enqueued job). [Jake Yoon, ncr]
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
 
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = %q{background_fu}
3
- s.version = "1.0.5"
3
+ s.version = "1.0.6"
4
4
 
5
5
  s.specification_version = 2 if s.respond_to? :specification_version=
6
6
 
data/lib/background_fu.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  module BackgroundFu
2
2
 
3
- VERSION = "1.0.5"
3
+ VERSION = "1.0.6"
4
4
 
5
5
  end
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.5
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.1
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.