uber
uber copied to clipboard
Gem-authoring extensions for classes and modules.
This PR updates the CI matrix to use latest JRuby. http://jruby.org/2017/12/07/jruby-9-1-15-0.html
Hello there! I added `inherit_method` because of this: ``` ruby require 'uber/inheritable_attr' class A extend Uber::InheritableAttr inheritable_attr :shallow self.shallow = { common: {} } end class B < A end...
Hi! I want to contribute to trailblazer development and decided to start with uber. I think that it's right decision because of most of tb gems using it. My proposal...
It seems to be working, I'm just not sure about that: `return kls unless kls.include?(Uber::Builder)`. Is there a better way to know that the class that we want to loads...
This allows thinks like: ``` ruby class Base extend Uber::InheritableAttr::DSL inheritable_attr :from end class User < Base from '[email protected]' end ```
Some lines of code, saying more then 1000 words. ``` ruby module Cells::Mailer::Config include Uber::Configuration configuration_name :mailer configuration_instance_name :mailer_config configuration_options :from, :to, :subject end module Cells::Mailer include Cells::Mailer::Config end class...