beanstalkd_view 1.2.6 → 1.2.7
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.
- data/CHANGELOG.md +5 -0
- data/Dockerfile +10 -0
- data/README.md +13 -0
- data/lib/beanstalkd_view/version.rb +1 -1
- metadata +9 -2
data/CHANGELOG.md
CHANGED
data/Dockerfile
ADDED
data/README.md
CHANGED
@@ -73,6 +73,19 @@ Alternatively, a Rackup file is provided. To use: cd into the beanstalkd_view d
|
|
73
73
|
|
74
74
|
rackup
|
75
75
|
|
76
|
+
Running with Docker
|
77
|
+
------------------------
|
78
|
+
|
79
|
+
You can have a look at beanstalkd_view by running it in a [Docker][1] container:
|
80
|
+
|
81
|
+
docker build -t beanstalkd_view git://denniskuczynski/beanstalkd_view.git
|
82
|
+
|
83
|
+
docker run -t -i -p 5678:5678 -e BEANSTALK_URL=beanstalk://172.17.0.2 beanstalkd_view
|
84
|
+
|
85
|
+
Most likely you have to adjust BEANSTALK_URL for your setup. You can then access beanstalkd_view on http://localhost:5678
|
86
|
+
|
87
|
+
[1]: https://www.docker.io/
|
88
|
+
|
76
89
|
Screenshot
|
77
90
|
------------------------
|
78
91
|

|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: beanstalkd_view
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.2.
|
4
|
+
version: 1.2.7
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date:
|
12
|
+
date: 2014-02-28 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: sinatra
|
@@ -185,6 +185,7 @@ files:
|
|
185
185
|
- Rakefile
|
186
186
|
- package.json
|
187
187
|
- Gruntfile.js
|
188
|
+
- Dockerfile
|
188
189
|
- MIT-LICENSE.txt
|
189
190
|
- lib/beanstalkd_view/beanstalkd_utils.rb
|
190
191
|
- lib/beanstalkd_view/resources/css/beanstalkd_view.css
|
@@ -230,12 +231,18 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
230
231
|
- - ! '>='
|
231
232
|
- !ruby/object:Gem::Version
|
232
233
|
version: '0'
|
234
|
+
segments:
|
235
|
+
- 0
|
236
|
+
hash: -3022094544355637058
|
233
237
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
234
238
|
none: false
|
235
239
|
requirements:
|
236
240
|
- - ! '>='
|
237
241
|
- !ruby/object:Gem::Version
|
238
242
|
version: '0'
|
243
|
+
segments:
|
244
|
+
- 0
|
245
|
+
hash: -3022094544355637058
|
239
246
|
requirements: []
|
240
247
|
rubyforge_project:
|
241
248
|
rubygems_version: 1.8.25
|