Project

amenable

0.0
No release in over a year
Flexibility when you need it.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

 Project Readme

Amenable

Removes exessive parameters from function calls.

require 'amenable'

class Dog
  using Amenable

  amenable def bark(n = 1)
    ([ :woof ] * n).join(" ")
  end
end


Dog.new.bark
> "woof"

Dog.new.bark(2)
> "woof woof"

Dog.new.bark(2, 3, 4, foo: 5)
> "woof woof"

Contributing

Yes please :)

  1. Fork it
  2. Create your feature branch (git checkout -b my-feature)
  3. Ensure the tests pass (bundle exec rspec)
  4. Commit your changes (git commit -am 'awesome new feature')
  5. Push your branch (git push origin my-feature)
  6. Create a Pull Request

Gem codecov