Project
Reverse Dependencies for hoe
The projects listed here declare hoe as a runtime or development dependency
0.0
module Thrift4Rails::ReleaseActiveRecordConnection ist in der Version 0.3.0 dazugekommen Wenn das Modul inkludiert wird, wird nach jedem Methodenaufruf zusaetzlich ActiveRecord::Base.clear_active_connections! aufgerufen.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
 Activity
0.0
== DESCRIPTION: Creates a configuration controller and model that can be used to quickly create configuration table for your system so you can store system-wide variables that you'd like the user to be able to set.  This gem contains a generator to create a simple configuration model, migration, and interface for your application, complete with working tests.  == FEATURES  * Generates the controller, model, and the associated files.   * You can specify the model name and set the fields for the migrations via the generator.  == SYNOPSIS:  === Setup and overview Generate a new configuration system for your application by executing the generator from the root of your application.  ruby script\generate rails_config_model Configuration  You can also specify the model fields much like the scaffold_resource generator  ruby script/generate rails_config_model Configuration contact_email:string site_name:string welcome_message:text max_number_of_events:integer  Once installed, you modify the generated migration to include the fields you want to configure. There are a few defaults there to give you an idea.  The generator will create a controller mounted at /configuration so you can edit your configurations.  Modify this as needed to provide for security.  === The Edit form The application's edit form uses the *form* helper method to auto-generate the fields. This may not be optimal and you may wish to actually write your own view instead. See app/views/configuration/edit.rhtml for more details.  === Usage Configuration is simply a model for this table. It is designed to handle a single row of a table, and so additional rows cannot be created.  If you have a table that looks like this:  id contact_email site_name welcome_message max_number_of_events  You simply grab the row from the table  @configuration = Configuration.load  and then grab the values out.  email = @configuration.contact_email  Or save new values  @configuration = Configuration.load @configuration.welcome_message = "This is the default message." @configuraiton.save
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
 Activity
0.0
Subversion is optional, and it asks you if you'd like to use it.   == SYNOPSIS:  At the command line, type: rails_creator -h That will give you a list of options that you can choose from, for example:  rails_creator -m my_app  This will create your new rails project, with the name 'my_app', using mysql, on edge Rails.  rails_creator -M my_app  This will create your rails project on the current version of Rails, on your system, using mysql, with the application name: "my_app"  rails_creator -p my_app  For postgresql on edge Rails  rails_creator -P my_app  For postgresql not on edge Rails  == INSTALL:
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 series of components for implementing the Ext.Direct API specification in Rails 2.3 and higher.
Ext.Direct in Rails is implementede with Rack Middleware.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
 Activity
0.0
Rails Remote Control allows you to attach to running Rails processes using DRb and change the log level without restarts.  Also, view actions handled per process.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
 Activity
0.0
Raingrams is a flexible and general-purpose ngrams library written in Ruby. Raingrams supports ngram sizes greater than 1, text/non-text grams, multiple parsing styles and open/closed vocabulary models.
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 authlogic extension for authenticating via OAuth.  This can be helpful for adding support for login/registration with Twitter credentials.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
0.0
Generate rake distribute:install, uninstall, and diff tasks to distribute items (files, templates, directories, etc.) to difference locations.
It is the saver to use rake tasks to manage 1 -> n file distribution. Commonly applied cases are runcom files, Makefiles, etc. Those files exists in many locations and are almost identical with slight difference.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
0.0
Making a .NET build-automation dev's life easier, one angle-bracket at a time
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
 Activity
0.0
Execute chef-solo with Rake::RemoteTask to remote host.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
0.0
* ch.oddb.org running on Ramaze
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 library for picking random elements and shuffling.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
 Activity
0.0
Creates positive integer with specified number of digits (i.e., specified "length" when coverted to string)
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
0.0
== SYNOPSIS:  (1..1000).slice(300) # => [1..300, 301..600, 601..900, 901..1000]  require 'active_support' (7.days.ago..Time.now).slice(24.hours) # => [thu apr 10 17:48:08 -0700 2008..fri apr 11 17:48:07 -0700 2008,  fri apr 11 17:48:08 -0700 2008..sat apr 12 17:48:07 -0700 2008,  sat apr 12 17:48:08 -0700 2008..sun apr 13 17:48:07 -0700 2008,  sun apr 13 17:48:08 -0700 2008..mon apr 14 17:48:07 -0700 2008, mon apr 14 17:48:08 -0700 2008..tue apr 15 17:48:07 -0700 2008, tue apr 15 17:48:08 -0700 2008..wed apr 16 17:48:07 -0700 2008, wed apr 16 17:48:08 -0700 2008..thu apr 17 17:48:07 -0700 2008, thu apr 17 17:48:08 -0700 2008..thu apr 17 17:48:08 -0700 2008]  == INSTALL:  * sudo gem install range_slice  == LICENSE:
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
 Activity
0.0
Net::RAOP::Client is an Airport Express client.  It allows you to stream music to an Airport Express.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
 Activity
0.0
Commander combines the execution of system commands with logging.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
0.0
FIX (describe your package)
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 bayesian filter fed by a tokenizer that throws crap out you'd find in emails.  Originally by Dan Peterson
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
 Activity
0.0
The RBelly library will parse JavaScript and Bellejs and return a parse tree.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
 Activity
0.0
== DESCRIPTION:  The RightScale AWS gems have been designed to provide a robust, fast, and secure interface to Amazon EC2, EBS, S3, SQS, SDB, and CloudFront.  These gems have been used in production by RightScale since late 2006 and are being maintained to track enhancements made by Amazon.  The RightScale AWS gems comprise:  - RightAws::Ec2 -- interface to Amazon EC2 (Elastic Compute Cloud) and the associated EBS (Elastic Block Store) - RightAws::S3 and RightAws::S3Interface -- interface to Amazon S3 (Simple Storage Service) - RightAws::Sqs and RightAws::SqsInterface -- interface to first-generation Amazon SQS (Simple Queue Service) (API version 2007-05-01) - RightAws::SqsGen2 and RightAws::SqsGen2Interface -- interface to second-generation Amazon SQS (Simple Queue Service) (API version 2008-01-01) - RightAws::SdbInterface and RightAws::ActiveSdb -- interface to Amazon SDB (SimpleDB) - RightAws::AcfInterface -- interface to Amazon CloudFront, a content distribution service  == FEATURES:
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
 Activity