Repository URL to install this package:
|
Version:
1.0.4 ▾
|
module Buildgem
module ForwardGemMethodsToConfig
def self.included(base)
base.extend ClassMethods
end
module ClassMethods
def method_missing(method_name, *args)
super unless method_name.to_s =~ /^gem_/
Buildgem.configuration.send(method_name)
end
end
def method_missing(method_name, *args)
super unless method_name.to_s =~ /^gem_/
Buildgem.configuration.send(method_name)
end
end
end