Project
Reverse Dependencies for hoe
The projects listed here declare hoe as a runtime or development dependency
0.0
Safe arithmetic parser for Ruby apps
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
Activity
0.0
Test::Rails helps you build industrial-strength Rails code.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
Activity
0.0
OmniFocus AtTask Integration
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
Activity
0.0
Plugin for omnifocus gem to provide bugzilla BTS synchronization.
The first time this runs it creates a yaml file in your home directory
for the bugzilla url, username, and queries.
The queries config is optional. If it is not included bugzilla-omnifocus will
pull all active bugs assigned to the specified user.
To use a custom query or multiple queries you must include a queries parameter
in your config.
The queries config is an array of strings. Each string is the query string
portion of the bugzilla search results url. Its easiest to create your search
in bugzilla and then paste the portion of the url after the question mark into
the config file.
Example:
---
bugzilla_url: http://bugs/buglist.cgi
username: aja
queries: ["bug_status=NEW", "bug_status=CLOSED"]
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
0.0
Plugin for omnifocus gem to provide rt BTS synchronization.
The first time this runs it creates a yaml file in your home directory
for the rt url, username, password, default queue and query.
The query is optional. If you don't supply it omnifocus-rt will pull all
tickets from the default queue assigned to the specified user.
The use a custom query you must supply it in the config file. omnifocus-rt
uses the REST interface to RT. More information about query formatting is
available here: http://wiki.bestpractical.com/view/REST
Example:
:rt_url: rt
:queue: QA
:username: user
:password: pass
:query: "Queue='QA'ANDOwner='Nobody'ANDStatus!='rejected'"
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
0.0
Plugin for omnifocus gem to provide rubyforge BTS synchronization.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
0.0
ETags are good, however normally they are generated based on strings. However, very often it is easier
to pass in a complete model object as your ETag, or it's parametrized represenation (record id) together
with the version. Or an array of objects (if you want to cache your object listing page and prevent it
from spending time on template rendering).
This module will take care of transforming any object into a stringified representation that is usable as an etag
with minimum fuss.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
0.0
Handy thing to ensure 100% test coverage for Ruby 1.9 projects
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
0.0
A Rack middleware to make URLs in one-page webapps easier.
In a couple of recent projects, I've needed to avoid full page
refreshes as much as possible. In the first, I wanted to keep an
embedded music player active while the user was browsing. In the
second, I just wanted fancier transitions between pages.
It's possible to do this in an ad-hoc way, but I very quickly got
tired of hacking things together. Enter Onesie.
Onesie congealed from these requirements:
* I want a one-page web app,
* But I want the back button to work,
* And I want search engines to still index some stuff,
* And I (mostly) don't want to change the way I write a Rails/Sinatra app.
If someone visits <tt>http://example.org/meta/contact</tt>, I want
them to be redirected to <tt>http://example.org/blah/#/meta/contact</tt>,
but after the redirection I still want the original route to be
rendered for search engine indexing, etc.
When Onesie gets a request, it looks to see if under your preferred
one-page app path ("blah" in the example above). If it's not, Onesie
sets the current request's path in the session and redirects to your
app path.
If a request is under the one-page app path, the "real" request's path
is retrieved from the session and used for subsequent routing and
rendering. This means that, as above, a request for
http://example.org/meta/contact
Will be redirected to
http://example.org/blah/#/meta/contact
But still render the correct action in the wrapped app, even though
URL fragments aren't passed to the server.
This is a terrible explanation. I'll write a sample app or something
soon.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
0.0
== FEATURES/PROBLEMS: * FIX (list of features or problems) == SYNOPSIS: FIX (code sample of usage) == REQUIREMENTS:
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
Activity
0.0
oos4ruby is a ruby binding for the 11870 API
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
Activity
0.0
OpenCV wrapper for Ruby
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
Activity
0.0
A simple, but feature-complete Ruby binding for OpenLDAP's libldap.
This binding is intended as an alternative for [ruby-ldap][] for libraries or applications which require a more complete implementation of the LDAP protocol (according to [RFC4511][]) than it provides.
Additions or changes:
* Referrals for add, modify, delete, modrdn, compare
* Controls for add, modify, delete, modrdn, compare
* Asynchronous and synchronous APIs
* Detailed exception class hierarchy for results instead of just one
class for all non-success results.
* Complete [RFC4511][] support:
- extended operations and results
- unsolicited notifications
- continuation references
- intermediate responses
- alias deferencing
- etc.
* Cleanly abandon terminated operations where supported
* Memory-handling cleanup to avoid leaks, corruption, and other
problems experienced in the wild.
* Drop deprecated non-_ext variants of operations which have a
modern equivalent.
* M17n for Ruby 1.9.x.
* Improved test coverage
**NOTE:** This library is still under development, and should not be considered to be feature-complete or production-ready.
This project's versions follow the [Semantic Versioning Specification][semver].
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
Activity
0.0
Openmenu is parser for OpenMenu xml files.
NOTE: This is an early release. There is some refactoring to be done, but
the interface should stay the same.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
0.0
**openMeta** in Ruby (support ruby 1.8, ruby 2.0 with RubyCocoa 1.2.0, and MacRuby). This gem ports [openmeta]( http://code.google.com/p/openmeta/ ) API to ruby using framework.
To work with ruby 2.0, update RubyCocoa to 1.2.0.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
0.0
A Ruby interface to the OpenX XML-RPC API.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
Activity
0.0
Peace of mind through automated monitoring of your HTTP services.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
Activity
0.0
A flexible, easy-to-use module for adding color and effects to text in ANSI terminals.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
Activity
0.0
Simple class that checks an options hash for mandatory keys.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
0.0
Dumps information about your ORCA card. ORCA cards are Western Washington's
all-in-one transit smart card that allow travel via bus, train and ferry
throughout King, Kitsap, Snohomish and Pierce counties.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
Activity