resque-sliders 0.1.1 → 0.1.2

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,7 +1,7 @@
1
1
  module Resque
2
2
  module Plugins
3
3
  module ResqueSliders
4
- Version = VERSION = '0.1.1'
4
+ Version = VERSION = '0.1.2'
5
5
  end
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: resque-sliders
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,19 +9,30 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2012-08-13 00:00:00.000000000 Z
12
+ date: 2012-10-15 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: resque
16
- requirement: &2152608100 !ruby/object:Gem::Requirement
16
+ requirement: !ruby/object:Gem::Requirement
17
17
  none: false
18
18
  requirements:
19
- - - ~>
19
+ - - ! '>='
20
20
  - !ruby/object:Gem::Version
21
21
  version: 1.15.0
22
+ - - <
23
+ - !ruby/object:Gem::Version
24
+ version: '2.0'
22
25
  type: :runtime
23
26
  prerelease: false
24
- version_requirements: *2152608100
27
+ version_requirements: !ruby/object:Gem::Requirement
28
+ none: false
29
+ requirements:
30
+ - - ! '>='
31
+ - !ruby/object:Gem::Version
32
+ version: 1.15.0
33
+ - - <
34
+ - !ruby/object:Gem::Version
35
+ version: '2.0'
25
36
  description: ! " Resque-Sliders is a plugin for Resque that enables you to control
26
37
  multiple hosts'\n running resque workers with a monitor PID watching over them.
27
38
  \ From the resque-web UI, you\n can add/delete/change which queues are running
@@ -35,7 +46,6 @@ extra_rdoc_files:
35
46
  - README.md
36
47
  - MIT-LICENSE
37
48
  files:
38
- - Gemfile
39
49
  - MIT-LICENSE
40
50
  - README.md
41
51
  - Rakefile
@@ -64,7 +74,6 @@ files:
64
74
  - lib/resque-sliders/server/public/js/sliders.js
65
75
  - lib/resque-sliders/server/views/index.erb
66
76
  - lib/resque-sliders/version.rb
67
- - resque-sliders.gemspec
68
77
  - test/redis-test.conf
69
78
  - test/resque-sliders_test.rb
70
79
  - test/test_helper.rb
@@ -88,7 +97,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
88
97
  version: '0'
89
98
  requirements: []
90
99
  rubyforge_project:
91
- rubygems_version: 1.8.17
100
+ rubygems_version: 1.8.24
92
101
  signing_key:
93
102
  specification_version: 3
94
103
  summary: ! 'Resque-Sliders: a plugin for resque that controls which resque workers
data/Gemfile DELETED
@@ -1,9 +0,0 @@
1
- source "http://rubygems.org"
2
- #source "http://gems.github.com"
3
-
4
- gem 'resque', '1.15.0'
5
- gem 'resque-sliders'
6
-
7
- group :development do
8
- gem "shotgun"
9
- end
@@ -1,29 +0,0 @@
1
- # -*- encoding: utf-8 -*-
2
- $:.push File.expand_path("../lib", __FILE__)
3
- require "resque-sliders/version"
4
-
5
- Gem::Specification.new do |s|
6
- s.name = "resque-sliders"
7
- s.version = Resque::Plugins::ResqueSliders::Version
8
- s.authors = "Kevin Mullin"
9
- s.email = "kevin@kpmullin.com"
10
- s.date = Time.now.strftime('%Y-%m-%d')
11
- s.homepage = "https://github.com/kmullin/resque-sliders"
12
- s.summary = %q{Resque-Sliders: a plugin for resque that controls which resque workers are running on each host, from within Resque-web}
13
-
14
- s.add_runtime_dependency 'resque', '~> 1.15.0'
15
- s.extra_rdoc_files = ["README.md", "MIT-LICENSE"]
16
-
17
- s.files = `git ls-files`.split("\n")
18
- s.files -= ['.rvmrc', '.gitignore']
19
- s.files -= `git ls-files -- {misc,helpers}/*`.split("\n")
20
- s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
21
- s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
22
- s.require_paths = ["lib"]
23
- s.description = <<description
24
- Resque-Sliders is a plugin for Resque that enables you to control multiple hosts'
25
- running resque workers with a monitor PID watching over them. From the resque-web UI, you
26
- can add/delete/change which queues are running on each host running the monitor PID.
27
- Sliders are in the UI and allow you to adjust how many workers on either host should be running.
28
- description
29
- end