resque-append 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
data/.gitignore ADDED
@@ -0,0 +1,18 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ .yardoc
6
+ Gemfile.lock
7
+ InstalledFiles
8
+ _yardoc
9
+ coverage
10
+ doc/
11
+ lib/bundler/man
12
+ pkg
13
+ rdoc
14
+ spec/reports
15
+ test/tmp
16
+ test/version_tmp
17
+ tmp
18
+ .rspec
data/Gemfile ADDED
@@ -0,0 +1,13 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in resque-append.gemspec
4
+ gemspec
5
+
6
+ group :test do
7
+ gem "guard-rspec"
8
+ gem "pry-nav"
9
+ gem "rb-fsevent"
10
+ gem "resque"
11
+ gem "rspec"
12
+ gem "yajl-ruby"
13
+ end
data/Guardfile ADDED
@@ -0,0 +1,9 @@
1
+ # A sample Guardfile
2
+ # More info at https://github.com/guard/guard#readme
3
+
4
+ guard 'rspec' do
5
+ watch(%r{^spec/.+_spec\.rb$})
6
+ watch(%r{^lib/(.+)\.rb$}) { "spec" }
7
+ watch('spec/spec_helper.rb') { "spec" }
8
+ end
9
+
data/LICENSE.txt ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2013 Josh Lane
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,29 @@
1
+ # Resque::Append
2
+
3
+ TODO: Write a gem description
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ gem 'resque-append'
10
+
11
+ And then execute:
12
+
13
+ $ bundle
14
+
15
+ Or install it yourself as:
16
+
17
+ $ gem install resque-append
18
+
19
+ ## Usage
20
+
21
+ TODO: Write usage instructions here
22
+
23
+ ## Contributing
24
+
25
+ 1. Fork it
26
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
27
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
28
+ 4. Push to the branch (`git push origin my-new-feature`)
29
+ 5. Create new Pull Request
data/Rakefile ADDED
@@ -0,0 +1 @@
1
+ require "bundler/gem_tasks"
@@ -0,0 +1,30 @@
1
+ require "resque/append/version"
2
+
3
+ module Resque
4
+ module Append
5
+ def self.disable!; @enabled = false; end
6
+ def self.enable!; @enabled = true; end
7
+ def self.enabled; @enabled; end
8
+ def self.enabled?; !!@enabled; end
9
+ def self.enabled=(enabled); @enabled = enabled; end
10
+ def self.idle!; @processing = false; end
11
+ def self.processing!; @processing = true; end
12
+ def self.processing=(processing); @processing = !!processing; end
13
+ def self.processing?; !!@processing; end
14
+ def self.worker=(worker); @worker = worker; end
15
+ def self.worker
16
+ @worker ||= Resque::Worker.new("*").tap do |w|
17
+ w.cant_fork = true
18
+ w.term_child = true
19
+ end
20
+ end
21
+
22
+ def after_enqueue_append(*args)
23
+ unless Resque::Append.processing?
24
+ Resque::Append.processing!
25
+ Resque::Append.worker.work(0)
26
+ Resque::Append.idle!
27
+ end
28
+ end
29
+ end
30
+ end
@@ -0,0 +1,5 @@
1
+ module Resque
2
+ module Append
3
+ VERSION = "0.0.1"
4
+ end
5
+ end
@@ -0,0 +1,25 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'resque/append/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "resque-append"
8
+ spec.version = Resque::Append::VERSION
9
+ spec.authors = ["Josh Lane"]
10
+ spec.email = ["me@joshualane.com"]
11
+ spec.description = %q{Resque plugin that prevents nested inline behavior}
12
+ spec.summary = %q{resque-append detects uses a Resque::Worker to process your queue inline. When a job is enqueued and the worker is currently processing, it appends the job to run after}
13
+ spec.homepage = ""
14
+ spec.license = "MIT"
15
+
16
+ spec.files = `git ls-files`.split($/)
17
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
18
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
+ spec.require_paths = ["lib"]
20
+
21
+ spec.add_dependency "resque", "~> 1.23"
22
+
23
+ spec.add_development_dependency "bundler", "~> 1.3"
24
+ spec.add_development_dependency "rake"
25
+ end
@@ -0,0 +1,79 @@
1
+ require 'spec_helper'
2
+
3
+
4
+ class JobAudit
5
+ def self.events
6
+ @events ||= []
7
+ end
8
+
9
+ def self.reset!
10
+ @events = nil
11
+ end
12
+ end
13
+ class JobA
14
+ extend Resque::Append
15
+
16
+ @queue = :job_a
17
+
18
+ def self.perform
19
+ JobAudit.events << [self, 'started']
20
+
21
+ Resque.enqueue(JobB)
22
+
23
+ JobAudit.events << [self, 'finished']
24
+ end
25
+ end
26
+
27
+ class JobB
28
+ extend Resque::Append
29
+
30
+ @queue = :job_b
31
+
32
+ def self.perform
33
+ JobAudit.events << [self, 'started']
34
+
35
+ Resque.enqueue(JobC)
36
+ Resque.enqueue(JobC)
37
+
38
+ JobAudit.events << [self, 'finished']
39
+ end
40
+ end
41
+
42
+ class JobC
43
+ extend Resque::Append
44
+
45
+ @queue = :job_c
46
+
47
+ def self.perform
48
+ JobAudit.events << [self, 'started']
49
+ JobAudit.events << [self, 'finished']
50
+ end
51
+ end
52
+
53
+ describe "resque-append" do
54
+ before(:each) do
55
+ Resque::Append.enable!
56
+ JobAudit.reset!
57
+ end
58
+
59
+ context "when a job enqueues another job" do
60
+ it "should run the second job after the first has finished" do
61
+ Resque.enqueue(JobA)
62
+
63
+ JobAudit.events.should == [
64
+ [JobA, 'started'],
65
+ [JobA, 'finished'],
66
+ [JobB, 'started'],
67
+ [JobB, 'finished'],
68
+ [JobC, 'started'],
69
+ [JobC, 'finished'],
70
+ [JobC, 'started'],
71
+ [JobC, 'finished'],
72
+ ]
73
+ end
74
+ end
75
+
76
+ it "should conform to plugin standards" do
77
+ Resque::Plugin.lint(Resque::Append)
78
+ end
79
+ end
@@ -0,0 +1,9 @@
1
+ Bundler.require(:test)
2
+
3
+ require File.expand_path("../../lib/resque/append", __FILE__)
4
+
5
+ Dir[File.expand_path("../{shared,support}/*.rb", __FILE__)].each{|f| require(f)}
6
+
7
+ RSpec.configure do |config|
8
+ config.order = :random
9
+ end
metadata ADDED
@@ -0,0 +1,109 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: resque-append
3
+ version: !ruby/object:Gem::Version
4
+ prerelease:
5
+ version: 0.0.1
6
+ platform: ruby
7
+ authors:
8
+ - Josh Lane
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2013-04-15 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: resque
16
+ version_requirements: !ruby/object:Gem::Requirement
17
+ none: false
18
+ requirements:
19
+ - - ~>
20
+ - !ruby/object:Gem::Version
21
+ version: '1.23'
22
+ requirement: !ruby/object:Gem::Requirement
23
+ none: false
24
+ requirements:
25
+ - - ~>
26
+ - !ruby/object:Gem::Version
27
+ version: '1.23'
28
+ type: :runtime
29
+ prerelease: false
30
+ - !ruby/object:Gem::Dependency
31
+ name: bundler
32
+ version_requirements: !ruby/object:Gem::Requirement
33
+ none: false
34
+ requirements:
35
+ - - ~>
36
+ - !ruby/object:Gem::Version
37
+ version: '1.3'
38
+ requirement: !ruby/object:Gem::Requirement
39
+ none: false
40
+ requirements:
41
+ - - ~>
42
+ - !ruby/object:Gem::Version
43
+ version: '1.3'
44
+ type: :development
45
+ prerelease: false
46
+ - !ruby/object:Gem::Dependency
47
+ name: rake
48
+ version_requirements: !ruby/object:Gem::Requirement
49
+ none: false
50
+ requirements:
51
+ - - ! '>='
52
+ - !ruby/object:Gem::Version
53
+ version: '0'
54
+ requirement: !ruby/object:Gem::Requirement
55
+ none: false
56
+ requirements:
57
+ - - ! '>='
58
+ - !ruby/object:Gem::Version
59
+ version: '0'
60
+ type: :development
61
+ prerelease: false
62
+ description: Resque plugin that prevents nested inline behavior
63
+ email:
64
+ - me@joshualane.com
65
+ executables: []
66
+ extensions: []
67
+ extra_rdoc_files: []
68
+ files:
69
+ - .gitignore
70
+ - Gemfile
71
+ - Guardfile
72
+ - LICENSE.txt
73
+ - README.md
74
+ - Rakefile
75
+ - lib/resque/append.rb
76
+ - lib/resque/append/version.rb
77
+ - resque-append.gemspec
78
+ - spec/resque/append_spec.rb
79
+ - spec/spec_helper.rb
80
+ homepage: ''
81
+ licenses:
82
+ - MIT
83
+ post_install_message:
84
+ rdoc_options: []
85
+ require_paths:
86
+ - lib
87
+ required_ruby_version: !ruby/object:Gem::Requirement
88
+ none: false
89
+ requirements:
90
+ - - ! '>='
91
+ - !ruby/object:Gem::Version
92
+ version: '0'
93
+ required_rubygems_version: !ruby/object:Gem::Requirement
94
+ none: false
95
+ requirements:
96
+ - - ! '>='
97
+ - !ruby/object:Gem::Version
98
+ version: '0'
99
+ requirements: []
100
+ rubyforge_project:
101
+ rubygems_version: 1.8.25
102
+ signing_key:
103
+ specification_version: 3
104
+ summary: resque-append detects uses a Resque::Worker to process your queue inline.
105
+ When a job is enqueued and the worker is currently processing, it appends the job
106
+ to run after
107
+ test_files:
108
+ - spec/resque/append_spec.rb
109
+ - spec/spec_helper.rb