class RubyFeatures::Container
Public Class Methods
new(feature_names)
click to toggle source
# File lib/ruby-features/container.rb, line 4 def initialize(feature_names) @feature_names = feature_names end
Public Instance Methods
apply_all()
click to toggle source
# File lib/ruby-features/container.rb, line 8 def apply_all RubyFeatures.apply(*@feature_names) end