Class: Steep::Project::Options
- Inherits:
-
Object
- Object
- Steep::Project::Options
- Defined in:
- lib/steep/project/options.rb
Instance Attribute Summary collapse
-
#allow_missing_definitions ⇒ Object
Returns the value of attribute allow_missing_definitions.
-
#fallback_any_is_error ⇒ Object
Returns the value of attribute fallback_any_is_error.
Instance Method Summary collapse
-
#initialize ⇒ Options
constructor
A new instance of Options.
Constructor Details
#initialize ⇒ Options
Returns a new instance of Options.
7 8 9 10 |
# File 'lib/steep/project/options.rb', line 7 def initialize self.fallback_any_is_error = false self.allow_missing_definitions = true end |
Instance Attribute Details
#allow_missing_definitions ⇒ Object
Returns the value of attribute allow_missing_definitions.
5 6 7 |
# File 'lib/steep/project/options.rb', line 5 def allow_missing_definitions @allow_missing_definitions end |
#fallback_any_is_error ⇒ Object
Returns the value of attribute fallback_any_is_error.
4 5 6 |
# File 'lib/steep/project/options.rb', line 4 def fallback_any_is_error @fallback_any_is_error end |