class MotionBlender::Config

Attributes

builtin_features[R]
cache_dir[RW]
excepted_files[R]
incepted_files[R]
motion_dirs[R]

Public Class Methods

new() click to toggle source
# File lib/motion_blender/config.rb, line 9
def initialize
  @incepted_files = []
  @excepted_files = Set.new
  @motion_dirs = []
  @builtin_features = Set.new %w(bigdecimal rational date)
  @cache_dir = Pathname.new('build/analyze')
end