rock-queue-smpp 0.1.4 → 0.1.5

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.
@@ -1,6 +1,6 @@
1
- require 'rock-queue'
1
+ require 'rock-queue-smpp'
2
2
 
3
- namespace :rock_queue do
3
+ namespace :rock_queue_smpp do
4
4
  desc "Start a Rock Queue worker"
5
5
  task :work do
6
6
  worker = RockQueueSmpp::Worker.new
@@ -3,24 +3,24 @@ require 'logger'
3
3
 
4
4
  module RockQueueSmpp
5
5
 
6
- autoload :Config, 'rock-queue/config'
6
+ autoload :Config, 'rock-queue-smpp/config'
7
7
 
8
- autoload :AbstractNotifier, 'rock-queue/notifiers/abstract_notifier'
9
- autoload :Notifiers, 'rock-queue/notifiers'
10
- autoload :EmailNotifier, 'rock-queue/notifiers/email_notifier'
8
+ autoload :AbstractNotifier, 'rock-queue-smpp/notifiers/abstract_notifier'
9
+ autoload :Notifiers, 'rock-queue-smpp/notifiers'
10
+ autoload :EmailNotifier, 'rock-queue-smpp/notifiers/email_notifier'
11
11
 
12
- autoload :Worker, 'rock-queue/worker'
13
- autoload :QueueObject, 'rock-queue/queue_object'
12
+ autoload :Worker, 'rock-queue-smpp/worker'
13
+ autoload :QueueObject, 'rock-queue-smpp/queue_object'
14
14
 
15
15
  # Adapters
16
- autoload :Beanstalkd, 'rock-queue/adapters/beanstalkd'
17
- autoload :ResqueQueue, 'rock-queue/adapters/resque'
18
- autoload :DelayedJob, 'rock-queue/adapters/delayed_job'
16
+ autoload :Beanstalkd, 'rock-queue-smpp/adapters/beanstalkd'
17
+ autoload :ResqueQueue, 'rock-queue-smpp/adapters/resque'
18
+ autoload :DelayedJob, 'rock-queue-smpp/adapters/delayed_job'
19
19
 
20
- autoload :AdapterNotSupported, 'rock-queue/errors'
21
- autoload :NoClassError, 'rock-queue/errors'
22
- autoload :QueueingServerNotRunning, 'rock-queue/errors'
23
- autoload :ActiveRecordHelper, 'rock-queue/active_record_helper'
20
+ autoload :AdapterNotSupported, 'rock-queue-smpp/errors'
21
+ autoload :NoClassError, 'rock-queue-smpp/errors'
22
+ autoload :QueueingServerNotRunning, 'rock-queue-smpp/errors'
23
+ autoload :ActiveRecordHelper, 'rock-queue-smpp/active_record_helper'
24
24
 
25
25
  attr_reader :adapter
26
26
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rock-queue-smpp
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.4
4
+ version: 0.1.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Grzegorz Kazulak, Matt Van Veenendaal