Project
Reverse Dependencies for hoe
The projects listed here declare hoe as a runtime or development dependency
0.0
Utility to allow easy integration of MiniTest::Spec and Eventmachine.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
0.0
ROXML is a Ruby library designed to make it easier for Ruby developers to work with XML. Using simple annotations, it enables Ruby classes to be mapped to XML. ROXML takes care of the marshalling and unmarshalling of mapped attributes so that developers can focus on building first-class Ruby classes. As a result, ROXML simplifies the development of RESTful applications, Web Services, and XML-RPC.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
Activity
0.0
A bunch of useful recipes to help deployment to Engine Yard slices
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
Activity
0.0
A MAC provides a way to check the integrity of information transmitted over or stored in an unreliable medium, based on a secret key.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
Activity
0.0
An easy to use Key/Value store for any Ruby on Rails project. Like Memcache, only persistent. Stores config values & application wide state in the database in order to survive server restarts.
Designed to allow you to add persistent value storage to any Rails project in about 5 minutes.
Additionally, allows users to set a list of default keys that auto-initializes baseline key/value pairs in the database for easy initialization.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
Activity
0.0
An easy to use Key/Value store for any Ruby on Rails project. Like Memcache, only persistent. Stores config values & application wide state in the database in order to survive server restarts.
Designed to allow you to add persistent value storage to any Rails project in about 5 minutes.
Additionally, allows users to set a list of default keys that auto-initializes baseline key/value pairs in the database for easy initialization.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
Activity
0.0
enumerabler enhances Enumerable with methods returning enumerator.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
0.0
Ruby client library for Episodic's Platform REST API
For more information about Episodic's Platform API see {http://app.episodic.com/help/server_api}[http://app.episodic.com/help/server_api]
Rdocs are located at {http://episodic.github.com/episodic-platform-ruby/doc/index.html}[http://episodic.github.com/episodic-platform-ruby/doc/index.html]
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
0.0
erbextensions is a library that extends the Standard ERB library. One key functionality that it provides is a method for programatically processing a named erb file, which is very useful when including one erb document into another erb document.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
Activity
0.0
production_log_analyzer provides three tools to analyze log files created by SyslogLogger. pl_analyze for getting daily reports, action_grep for pulling log lines for a single action and action_errors to summarize errors with counts.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
Activity
0.0
Game built for Writing Games with Ruby presentation at RubyConf 2010.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
0.0
Api wrapping Yahoo Boss search
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
Activity
0.0
Minimal, simple, DRY DSL for searching Elasticsearch.
Takes one shallow hash argument and translates it to an elaborate one passed
on to elasticsearch-api. The price: narrower options. The gain: succinctness.
For example, a root <tt>:range</tt> is always a boolean filter and always
includes the edges:
tractor = Client.new
opts = { range: { timestamp: ['now-5m', 'now'] } }
tractor.search(opts) # => sends the following to Ealsticsearch:
{
"query": {
"bool": {
"filter": [
{
"range": {
"timestamp": {
"gte":"now-5m",
"lte":"now"
}
}
}
],
"must": [],
}
}
}
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
Activity
0.0
See ESV API docs http://www.esvapi.org/
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
Activity
0.0
eventdb - event.db schema 'n' models for easy (re)use
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
Activity
0.0
Wraps rb_add_event_hook so you can write fast ruby event hook
processors w/o the speed penalty that comes with set_trace_func (sooo
sloooow!). Calls back into ruby so you don't have to write C.
% ruby demo.rb
# of iterations = 1000000
user system total real
null_time 0.120000 0.000000 0.120000 ( 0.125279)
ruby time 0.560000 0.000000 0.560000 ( 0.562834)
event hook 3.160000 0.010000 3.170000 ( 3.175361)
set_trace_func 34.530000 0.100000 34.630000 ( 34.942785)
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
Activity
0.0
EventMachineAlignedPeriodic helps to kick off a block of code on a periodic
schedule aligned with a time period. Rather than have something starting at
2 seconds, 17 seconds, 32 seconds and so on you can have it consistently
launch at 0, 15, 30.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
Activity
0.0
== features/PROBLEMS: * Schedule tasks to run every X seconds * Multiple schedules == SYNOPSIS: ex = Everyx::Everyx.new ## Create new runner pt = Everyx::PeriodicTasks::RSSNotifier.new ## Create notifier pt.uri = "http://path.to/rss-feed" ## Set it to uri
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
Activity
0.0
A beautiful API that wraps the RESTful services provided by evri.com.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
Activity
0.0
Create structural summary for Rorschach Comprehensive System. Works with
standard Exner's RCS for Rorschach test and Znudic method for Zulliger test, based on Exner's RCS.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
Activity