backgroundrb-rails3 1.1.1 → 1.1.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.
- data/Rakefile +1 -1
- data/backgroundrb-rails3.gemspec +1 -1
- data/lib/tasks/backgroundrb_tasks.rake +1 -1
- metadata +3 -3
data/Rakefile
CHANGED
|
@@ -121,6 +121,6 @@ Jeweler::Tasks.new do |gem|
|
|
|
121
121
|
Since a Rails application blocks while serving a request it is best to move long-running tasks off into a background process that is divorced from http request/response cycle.}
|
|
122
122
|
gem.email = "mtylty@gmail.com"
|
|
123
123
|
gem.authors = ["Matteo Latini"]
|
|
124
|
-
gem.version = "1.1.
|
|
124
|
+
gem.version = "1.1.2"
|
|
125
125
|
end
|
|
126
126
|
Jeweler::RubygemsDotOrgTasks.new
|
data/backgroundrb-rails3.gemspec
CHANGED
|
@@ -75,7 +75,7 @@ namespace :backgroundrb do
|
|
|
75
75
|
task :queue_migration => :environment do
|
|
76
76
|
raise "Task unavailable to this database (no migration support)" unless ActiveRecord::Base.connection.supports_migrations?
|
|
77
77
|
require 'rails/generators'
|
|
78
|
-
Rails::Generators::invoke('backgroundrb:bdrb_migration', ENV['MIGRATION'] || 'BackgroundrbJob')
|
|
78
|
+
Rails::Generators::invoke('backgroundrb:bdrb_migration', [ENV['MIGRATION'] || 'BackgroundrbJob'])
|
|
79
79
|
end
|
|
80
80
|
|
|
81
81
|
desc 'Remove backgroundrb from your rails application'
|
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: backgroundrb-rails3
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 23
|
|
5
5
|
prerelease: false
|
|
6
6
|
segments:
|
|
7
7
|
- 1
|
|
8
8
|
- 1
|
|
9
|
-
-
|
|
10
|
-
version: 1.1.
|
|
9
|
+
- 2
|
|
10
|
+
version: 1.1.2
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Matteo Latini
|