Simeon Willbanks

Results 9 comments of Simeon Willbanks

`ruby-head` is [up to date](http://rubies.travis-ci.org/).

[Attempt installing `dtrace` on Travis CI](https://travis-ci.org/simeonwillbanks/busted/builds/15688654). _.travis.yml_ ``` yaml language: ruby rvm: - ruby-head before_install: - wget ftp://crisp.dyndns-server.com/pub/release/website/dtrace/dtrace-20131103.tar.bz2 - bunzip2 < dtrace-20131103.tar.bz2 | tar xvf - install: - sudo apt-get...

I'm experiencing the same issue. How about a Pull Request which introduces a `pattern` option to the rake tasks? ``` rake docs:generate['spec/acceptance/user_spec.rb'] rake docs:generate['spec/acceptance/v1/*_spec.rb'] ``` - https://github.com/zipmark/rspec_api_documentation/blob/4cfef51eb0b6d5544ed35ec115e5073403ba2825/lib/tasks/docs.rake#L4-L5 ``` rake docs:generate:ordered['spec/acceptance/user_spec.rb']...

@iamvery suggested an environment variable instead of an argument since rake task arguments can be tricky across different shells. e.g. `bash` and `zsh` ``` rake docs:generate SPEC_PATH_PATTERN=spec/acceptance/user_spec.rb ```

@sighmin Cool idea. :smile: @wfarr Here are a couple potential implementations: 1. Open Go Downloads page in a browser - `open https://code.google.com/p/go/downloads/list` - Super simple but cumbersome 2. Add and...

@wfarr I thought of a third option; it doesn't require extra files. `3.` Add and maintain an array of available binaries - In `libexec/goenv-install`, set array using `platform`, `arch`, and...

[`ResqueInstance#running`](https://github.com/stitchfix/resque-brain/blob/master/app/models/resque_instance.rb#L27) is an example of worker introspection, and it may be useful for the _workers overview_.

The "running" view may be a good place for a consolidated _workers and queues overview_. ![running](https://cloud.githubusercontent.com/assets/164506/7433199/cfcc9956-efe3-11e4-9502-0555bee14c98.png)

Example _queues and workers overview_ from [resque-web](https://github.com/resque/resque-web). ![e271i07](https://cloud.githubusercontent.com/assets/164506/7433391/9aff7bce-efe5-11e4-9a5d-979d7984298b.png) ![resque_workers](https://cloud.githubusercontent.com/assets/164506/7433394/a5f823a0-efe5-11e4-87e8-59f4a6472fe5.png)