Sha256: 33f7af48464513c213301b319325a9e20d8cdd2827bf5d732de7c6957d164330
Contents?: true
Size: 343 Bytes
Versions: 16
Compression:
Stored size: 343 Bytes
Contents
module SplitIoClient class LocalhostSplitFactoryBuilder < NoMethodError def self.build(directory) splits_file = File.join(directory, ".split") LocalhostSplitFactory.new(splits_file) end def self.build_from_path(path) splits_file = File.join(path) LocalhostSplitFactory.new(splits_file) end end end
Version data entries
16 entries across 16 versions & 1 rubygems