Class: MotionBlender::Config
- Inherits:
-
Object
- Object
- MotionBlender::Config
- Defined in:
- lib/motion_blender/config.rb
Instance Attribute Summary collapse
-
#builtin_features ⇒ Object
readonly
Returns the value of attribute builtin_features.
-
#cache_dir ⇒ Object
Returns the value of attribute cache_dir.
-
#excepted_files ⇒ Object
readonly
Returns the value of attribute excepted_files.
-
#incepted_files ⇒ Object
readonly
Returns the value of attribute incepted_files.
-
#motion_dirs ⇒ Object
readonly
Returns the value of attribute motion_dirs.
Instance Method Summary collapse
-
#initialize ⇒ Config
constructor
A new instance of Config.
Constructor Details
#initialize ⇒ Config
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_features ⇒ Object (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_dir ⇒ Object
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_files ⇒ Object (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_files ⇒ Object (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_dirs ⇒ Object (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 |