Project
Reverse Dependencies for yard
The projects listed here declare yard as a runtime or development dependency
0.0
You give it an email. It gives you a Gravatar. What more do you want?
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
Activity
0.0
The Circuit Breaker pattern is used to prevent constant fail-over from spotty remote systems
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
Activity
0.0
Ruby HTTP client for the Addons.io API.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
Activity
0.0
A system which should help bringing different Rack applications together.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
Activity
0.0
This is a gem port of binary logics 'addresslogic' to Rails 3 and a Gem
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
Activity
0.0
# Addy
Allows pretty summations. Instead of writing:
(1..5).inject(0) do |memo, num|
memo + (num**num)
end
You write:
sum(1..5) do |num|
num**num
end
Personally, I would rather write the latter.
## Usage
Install the gem:
gem install addy
Then use it!
require 'addy'
class MyClass
#include it in a class or in Object to get it everywhere
include Addy
def my_awesome_adder(range)
sum(range)
end
end
When you include addy on a class that implements inject, you don't even need to pass a value to it. Instead it calls sum on your class.
require 'addy'
class MyClass < Range
include Addy
def my_awesome_adder
sum
end
end
### Calling It
You can call either sum or summation. They're aliases for the same thing.
Note: The following assumes Addy is included into Range.
When you pass a block to sum it will execute the block on the current number before adding it to the sum.
sum(1..5) {|num| num + 1} #=> 20
(1..5).sum {|num| num + 1} #=> 20
You don't have to pass a block though!
#this
sum(1..5) #=> 15
#and
(1..5).sum #=> 15
#are equivalent to
sum(1..5) {|num| num} #=> 15
#and
(1..5).sum {|num| num} #=> 15
### Input
Ranges and numeric arrays both work well.
sum(1..5) #=> 15
sum([1,2,3,4,5]) #=> 15
## Note on Patches/Pull Requests
* Fork the project.
* Make your feature addition or bug fix.
* Add tests for it. This is important so I don't break it in a
future version unintentionally.
* Commit, do not mess with rakefile, version, or history.
(if you want to have your own version, that is fine but bump version in a commit by itself I can ignore when I pull)
* Send me a pull request. Bonus points for topic branches.
## Copyright
Copyright (c) 2010 Allen Madsen. See LICENSE for details.
PS: Isn't it ridiculous how much documentation I wrote for one function?
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
0.0
Unofficial API Wrapper for adf.ly
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
0.0
An Adhearsion Plugin providing Asterisk-specific dialplan methods, AMI access, and access to Asterisk configuration
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
Activity
0.0
Provides convenience methods when using Adhearsion with Rayo for IP Multimedia Subsystem (IMS) integration. Specifically ISC triggers.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
Activity
0.0
Descriptive configuration files for Ruby written in Ruby.
Loquacious provides a very open configuration system written in ruby and descriptions for each configuration attribute.
The attributes and descriptions can be iterated over allowing for helpful information about those attributes to be displayed to the user.
In the simple case we have a file something like:
Loquacious.configuration_for('app') {
name 'value', :desc => "Defines the name"
foo 'bar', :desc => "FooBar"
id 42, :desc => "Ara T. Howard"
}
Which can be loaded via the standard Ruby loading mechanisms
load 'config/app.rb'
The attributes and their descriptions can be printed by using a Help object
help = Loquacious.help_for('app')
help.show :values => true # show the values for the attributes, too
Descriptions are optional, and configurations can be nested arbitrarily deep.
Loquacious.configuration_for('nested') {
desc "The outermost level"
a {
desc "One more level in"
b {
desc "Finally, a real value"
c 'value'
}
}
}
config = Loquacious.configuration_for 'nested'
p config.a.b.c #=> "value"
And as you can see, descriptions can either be given inline after the value or they can appear above the attribute and value on their own line.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
Activity
0.0
A wrapper for the Adility API
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
Activity
0.0
Simple admin interface for Ruby on Rails applications.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
Activity
0.0
Flexible admin framework for Rails
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
Activity
0.0
Admin interface
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
0.0
A take on decorating objects based on the very valued work done by the [Draper](http://github.com/drapergem/draper) gem.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
Activity
0.0
Gem for adding advanced features into ActiveRecord
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
Activity
0.0
Merchant signature calculator for Adyen (https://www.adyen.com) payments service. It is implementation of HPP HMAC (SHA-256) algorithm from Adyen documentation (https://docs.adyen.com/display/TD/HPP+HMAC+calculation).
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
0.0
A smallish library to talking to AfterShip via v4 API.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
0.0
An agile, programmable, controllable proxy server for use standalone or as part of an integration test suite with clients for many languages
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
0.0
An agile, programmable, controllable proxy server for use standalone or as part of an integration test suite with clients for many languages
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024