Project
Reverse Dependencies for hoe-git
The projects listed here declare hoe-git as a runtime or development dependency
0.0
Stockpile is a simple key-value store connection manager framework. Stockpile
itself does not implement a connection manager, but places expectations for
implemented connection managers. So far, only Redis has been implemented
(stockpile-redis).
Stockpile also provides an adapter so that its functionality can be accessed
from within a module.
Release 2.0 fixes an issue when Stockpile options are provided with an
OpenStruct, originally reported as
{stockpile-redis#1}[https://github.com/halostatue/stockpile-redis/issues/1].
Support for Ruby 1.9 has been dropped.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
Activity
0.0
stockpile-redis is a connection manager for Redis to be used with
{Stockpile}[https://github.com/halostatue/stockpile].
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
Activity
0.0
A handy dandy autoload / require / load helper for your rubies. Similar to
using[1], but with a few differences of opinion, and a bit shorter.
Basically, expand path is fine, up until a point. Sometimes there's no point
(i.e. when the load path already contains most of the path you're trying to
open). When you're writing libs that users might require sub parts with
'libname/sub_part', then expand_path combined with say, rubygems, can lead to
double requires. Lets not do that. :-)
[1] http://github.com/smtlaissezfaire/using/
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
0.0
Rack middleware to render Svelte components to Javascript
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
0.0
An agnostic approach to handle dynamic forms in rails.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
0.0
Vimdo is a ruby gem to automate tasks with vim remote servers.
Predefined tasks include diff, merge, etc. You can define your own recipes
to run tasks with Vim. For example, you can define `DirDiff` recipe:
```ruby
module VimDo
class CLI < Thor
desc "dirdiff", "directory diff in vim"
def dirdiff(from, to)
[from, to].each do |f|
unless File.directory?(f)
raise PathError "#{f} is not directory!"
end
end
from, to = [from, to].map {|f| File.expand_path(f) }
commands(%Q{exec 'DirDiff ' fnameescape("#{from}") fnameescape("#{to}")})
end
end
end
```
Then run `vimdo dirdiff path/to/a path/to/b` from the command line or other tools
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
Activity
0.0
The youtube_dlhelper is a short tool for download and manage the downloaded files. You are running the program inside the command line with a Youtube URL. Then it aska for a
group name or interpreters name. Now it creates a Subfolder inside your Musicdirectory. Then it makes a MP3 from the downloaded file and moves it to the folder.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
Activity