Class: Steep::Project::Options

Inherits:
Object
  • Object
show all
Defined in:
lib/steep/project/options.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeOptions

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_definitionsObject

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_errorObject

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