Class: MotionBlender::Config

Inherits:
Object
  • Object
show all
Defined in:
lib/motion_blender/config.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeConfig

Returns a new instance of Config.



9
10
11
12
13
14
15
# 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

Instance Attribute Details

#builtin_featuresObject (readonly)

Returns the value of attribute builtin_features.



6
7
8
# File 'lib/motion_blender/config.rb', line 6

def builtin_features
  @builtin_features
end

#cache_dirObject

Returns the value of attribute cache_dir.



7
8
9
# File 'lib/motion_blender/config.rb', line 7

def cache_dir
  @cache_dir
end

#excepted_filesObject (readonly)

Returns the value of attribute excepted_files.



5
6
7
# File 'lib/motion_blender/config.rb', line 5

def excepted_files
  @excepted_files
end

#incepted_filesObject (readonly)

Returns the value of attribute incepted_files.



5
6
7
# File 'lib/motion_blender/config.rb', line 5

def incepted_files
  @incepted_files
end

#motion_dirsObject (readonly)

Returns the value of attribute motion_dirs.



5
6
7
# File 'lib/motion_blender/config.rb', line 5

def motion_dirs
  @motion_dirs
end