sidekiq-throttled 0.4.0 → 0.4.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.travis.yml +1 -0
- data/CHANGES.md +7 -0
- data/README.md +5 -5
- data/lib/sidekiq/throttled/version.rb +1 -1
- data/lib/sidekiq/throttled/web/index.html.erb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 11fca504d3cc0e0c497b31f28eeff11ddea99646
|
4
|
+
data.tar.gz: 57f37328ff6fea478e675531cf8cc31404e9fea1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 113114f75677f217ac29c68a08b23b7942cebfcb2692e7e231fa3b759eb5eb282ea75ce589623c354d8366e651d57d7c86a0a152d5f8db57305ae7ccd9776970
|
7
|
+
data.tar.gz: 120307bb6c3cf8dc22aa68a1b56048460c3b3d160c34a439aefce9f0b576536616ba19ce9ff7084c52e62154607e37e7c3d04933d4463e07b852d2911f60cd85
|
data/.travis.yml
CHANGED
data/CHANGES.md
CHANGED
@@ -1,3 +1,10 @@
|
|
1
|
+
## 0.4.1 (2016-08-18)
|
2
|
+
|
3
|
+
* [#15](https://github.com/sensortower/sidekiq-throttled/pull/15)
|
4
|
+
Fix throttled web UI on older versions of sidekiq.
|
5
|
+
([@palanglung])
|
6
|
+
|
7
|
+
|
1
8
|
## 0.4.0 (2016-05-17)
|
2
9
|
|
3
10
|
* [#14](https://github.com/sensortower/sidekiq-throttled/pull/14)
|
data/README.md
CHANGED
@@ -1,9 +1,9 @@
|
|
1
1
|
# Sidekiq::Throttled
|
2
2
|
|
3
|
-
[![Gem Version](https://
|
4
|
-
[![Build Status](https://travis-ci.org/sensortower/sidekiq-throttled.svg?branch=
|
5
|
-
[![Code Climate](https://codeclimate.com/github/sensortower/sidekiq-throttled.svg?branch=
|
6
|
-
[![Coverage Status](https://coveralls.io/repos/sensortower/sidekiq-throttled/badge.svg?branch=
|
3
|
+
[![Gem Version](https://img.shields.io/badge/gem%20version-0.4.x-brightgreen.svg)](http://rubygems.org/gems/sidekiq-throttled)
|
4
|
+
[![Build Status](https://travis-ci.org/sensortower/sidekiq-throttled.svg?branch=v0.4.x)](https://travis-ci.org/sensortower/sidekiq-throttled)
|
5
|
+
[![Code Climate](https://codeclimate.com/github/sensortower/sidekiq-throttled.svg?branch=v0.4.x)](https://codeclimate.com/github/sensortower/sidekiq-throttled)
|
6
|
+
[![Coverage Status](https://coveralls.io/repos/github/sensortower/sidekiq-throttled/badge.svg?branch=v0.4.x)](https://coveralls.io/github/sensortower/sidekiq-throttled?branch=v0.4.x)
|
7
7
|
|
8
8
|
Concurrency and threshold throttling for [Sidekiq](https://github.com/mperham/sidekiq/).
|
9
9
|
|
@@ -124,7 +124,7 @@ versions:
|
|
124
124
|
* Ruby 2.0.0
|
125
125
|
* Ruby 2.1.x
|
126
126
|
* Ruby 2.2.x
|
127
|
-
* Ruby 2.3.
|
127
|
+
* Ruby 2.3.x
|
128
128
|
|
129
129
|
[travis]: http://travis-ci.org/sensortower/sidekiq-throttled
|
130
130
|
|
@@ -27,7 +27,7 @@
|
|
27
27
|
</td>
|
28
28
|
<td style="vertical-align:middle;text-align:center;">
|
29
29
|
<form action="<%= root_path %>throttled/<%= name %>" method="POST">
|
30
|
-
<%= csrf_tag %>
|
30
|
+
<%= csrf_tag if respond_to?(:csrf_tag) %>
|
31
31
|
<input type="hidden" name="_method" value="delete" />
|
32
32
|
<button class="btn btn-danger" type="submit">Reset</button>
|
33
33
|
</form>
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: sidekiq-throttled
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.4.
|
4
|
+
version: 0.4.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Alexey V Zapparov
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-
|
11
|
+
date: 2016-08-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: sidekiq
|