Project
Reverse Dependencies for hoe
The projects listed here declare hoe as a runtime or development dependency
0.0
Auto-magically map Hash[keys] to ActiveRecord.attributes
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
0.0
Makes a tumblr tumblelog act like an ActiveResource.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
Activity
0.0
Convert HTML to PDF, PS, SVG and PNG
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
0.0
* A command line tool for html tag / css property documentation using htmldog.com as the data source.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
Activity
0.0
== DESCRIPTION: html-me converts text to html for posting in the web. It does this two ways. First, it processes the text unsing RedCloth (a textile engine), then it finds all of the _pre_ tags and adds syntax highlighting. == FEATURES/PROBLEMS: * The syntax highlighting embeds the styles in the HTML tags. I currently don't have access to my blog's stylesheet (damned Wordpress) so that's how it needed to be. CSS class names should be added soon.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
Activity
0.0
A Ruby port of `HTML::Template::Pro'. `HTML::Template::Pro' is
template engine originally written in Perl and XS. It's so fast
because of its C based implementation. Its syntax is very simple.
This results clearly separation of application logic and its view.
Template syntax complies with original perl module's syntax.
Please see, HTML::Template::SYNTAX[http://search.cpan.org/~viy/HTML-Template-Pro-0.92/lib/HTML/Template/SYNTAX.pod#SYNOPSIS].
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
Activity
0.0
Validate http request content length vs actual for
elements such as img, link, etc..
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
Activity
0.0
Hudson interaction gem.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
Activity
0.0
hybook - hypertext book generator
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
0.0
hyperdata - turn hypertext web pages into structured data (supports Feed.HTML n friends)
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
Activity
0.0
IAuthU provides a basic iTunes U authentication server, along with libraries for building iTunes U authentication servers into your own application.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
0.0
Hai! icanhasaudio? is an interface to lame for decoding ur MP3s. I iz in ur computer. Decodin ur mp3s. Whatevs! I also decodin ur OGGz! I kin also encodin' ur WAV and AIFF to mp3z! == SYNOPSYS ROFLOL require 'icanhasaudio' reader = Audio::MPEG::Decoder.new File.open(ARGV[0], 'rb') { |input_lol| File.open(ARGV[1], 'wb') { |output_lol| reader.decode(input_lol, output_lol) } }
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
Activity
0.0
Port of Perl's Net::ICB module for accessing the Internet Citizen's Band chat server protocol.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
0.0
ICO file format in Ruby
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
0.0
IE Handler enable you to handle IE using Ruby.
It has simple syntax and strong methods.
Currently we support only IE, but we plan to extend other MS products in the
future.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
0.0
IfElse is an implementation of the pure object-oriented conditional syntax
found in languages of the SmallTalk family, including Self. Those languages
distinguish themselves by taking the "everything is an object / everything
is a method" approach to a further extreme than Ruby, and getting rid of
almost all cases of special syntax other than object definition and method
call.
Ruby, of course, already works this way for some purposes -- thus most Ruby
developers prefer to write
[1, 17, 39].each {|x| puts x}
rather than
for x in [1, 17, 39]
puts x
end
and
3.times {|n| puts n}
instead of
i = 1
while i <= 3
puts i
i += 1
end
This module extends that same preference to conditional statements,
providing replacements for the Ruby keywords +if+, and +unless+:
x = 1
(x >= 0).if {puts 'positive'}
(x < 0).unless {puts 'positive'}
Note that as with the built-in special forms these methods replace, these
methods are available on any Ruby Object, and obey the usual rules of which
values are considered "Truthy" and "Falsey".
<b>Note that the primary purpose of this gem is to demonstrate that the
built-in (special form) versions of conditionals provided with Ruby are
mostly syntactic sugar -- as with the +for+ keyword, there is no real need
for these to be built into the language. With that said, the gem is
fully tested, has no particular performance penalty (beyond the usual cost
of method dispatch), and should be fully useable in general purpose
code.</b>
<b>Note also that while Smalltalk-family languages also provide an
equivalent to the Ruby +else+ keyword, this depends on the more general
block/lambda capability of those languages, which allow a method to take
multiple blocks as arguments. This could be imitated with a syntax like:</b>
# NOT A REAL EXAMPLE
(x > 42).if then: lambda {|x| :big }, else: lambda {|x| :small}
<b>which is true to the SmallTalk original, but feels less Ruby-ish to me, so I
didn't implement this -- perhaps in a later version.</b>
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
0.0
Makes working with whatcounts API less painful, although it doesn't aleviate the pain entirely
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 API wrapper for Nanowrimo.org. Nanowrimo Word Count API documentation here: http://www.nanowrimo.org/eng/wordcount_api
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
0.0
A no-frills image resizer, with pluggable backends. No extra software required on OS X
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
Activity
0.0
Imap-feeder pushes entries from RSS and Atom feeds to an IMAP server.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
Activity