que-web 0.2.0 → 0.2.1

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: af7d992b8d986583e4673a431360507a4b9cf2f1
4
- data.tar.gz: 3443eae0f23c8d246dc9fabad39fa3f9ac0b47d8
3
+ metadata.gz: 46f81a12d2b43f9bbc710b2bce8ea3804dbd8df2
4
+ data.tar.gz: a089be90460ddd5a5181a01f8798f96cb68dda0d
5
5
  SHA512:
6
- metadata.gz: efaeba725f9552e3d69bfd9a538f5b4256496905fddb5513db980aba1c728a65b0172a3db16f4c41c792f2aca72e79763f066b16883aabe9f31df7d78fab6c8d
7
- data.tar.gz: d8b54ec2bbb50f3d2741369f5c80ab6185404ffec06a31d6d2948bf4426fd97f11350a5ea86a268a28da6e751b239867c839edefc7e74be994e32643dd8d5248
6
+ metadata.gz: 702c9325393847a91b17f295043a2717d7477d07ada89ee713e00174f2d9d32d9b57e15e9682cdd1a8400573798a1435fc210897522bca7089066052e8d34306
7
+ data.tar.gz: ba87ba7b865fea08890586a1d9fc260c6826f34e8aa238659d122bcf3907843251e3ecba5a54c13e22d44db2274e37c427293d3deccd4a6d174cf6c9e318133b
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: ../../
3
3
  specs:
4
- que-web (0.1.0)
4
+ que-web (0.2.0)
5
5
  que (~> 0.8)
6
6
  sinatra
7
7
 
data/lib/que/web.rb CHANGED
@@ -2,7 +2,7 @@ require "sinatra"
2
2
 
3
3
  module Que
4
4
  class Web < Sinatra::Base
5
- VERSION = "0.2.0"
5
+ VERSION = "0.2.1"
6
6
  PAGE_SIZE = 10
7
7
 
8
8
  use Rack::MethodOverride
data/que-web.gemspec CHANGED
@@ -4,7 +4,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
4
 
5
5
  Gem::Specification.new do |spec|
6
6
  spec.name = "que-web"
7
- spec.version = "0.2.0"
7
+ spec.version = "0.2.1"
8
8
  spec.authors = ["Jason Staten"]
9
9
  spec.email = ["jstaten07@gmail.com"]
10
10
  spec.summary = %q{A web interface for the que queue}
data/web/views/index.erb CHANGED
@@ -4,7 +4,7 @@
4
4
  </div>
5
5
  </div>
6
6
  <div class="row">
7
- <div class="small-12 large-4 columns">
7
+ <a class="small-12 large-4 columns" href="<%= to 'running' %>">
8
8
  <div class="dashboard-stat running">
9
9
  <div class="cell">
10
10
  <h2>Running<h2>
@@ -13,8 +13,8 @@
13
13
  </span>
14
14
  </div>
15
15
  </div>
16
- </div>
17
- <div class="small-12 large-4 columns">
16
+ </a>
17
+ <a class="small-12 large-4 columns" href="<%= to 'scheduled' %>">
18
18
  <div class="dashboard-stat scheduled">
19
19
  <div class="cell">
20
20
  <h2>Scheduled<h2>
@@ -23,8 +23,8 @@
23
23
  </span>
24
24
  </div>
25
25
  </div>
26
- </div>
27
- <div class="small-12 large-4 columns">
26
+ </a>
27
+ <a class="small-12 large-4 columns" href="<%= to 'failing' %>">
28
28
  <div class="dashboard-stat failing">
29
29
  <div class="cell">
30
30
  <h2>Failing<h2>
@@ -33,5 +33,5 @@
33
33
  </span>
34
34
  </div>
35
35
  </div>
36
- </div>
36
+ </a>
37
37
  </div>
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: que-web
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jason Staten