backgroundrb-rails3 1.1.1 → 1.1.2

Sign up to get free protection for your applications and to get access to all the features.
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.1"
124
+ gem.version = "1.1.2"
125
125
  end
126
126
  Jeweler::RubygemsDotOrgTasks.new
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{backgroundrb-rails3}
8
- s.version = "1.1.1"
8
+ s.version = "1.1.2"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Matteo Latini"]
@@ -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: 17
4
+ hash: 23
5
5
  prerelease: false
6
6
  segments:
7
7
  - 1
8
8
  - 1
9
- - 1
10
- version: 1.1.1
9
+ - 2
10
+ version: 1.1.2
11
11
  platform: ruby
12
12
  authors:
13
13
  - Matteo Latini