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.
-
#libraries ⇒ Object
readonly
Returns the value of attribute libraries.
-
#vendored_gems_path ⇒ Object
Returns the value of attribute vendored_gems_path.
-
#vendored_stdlib_path ⇒ Object
Returns the value of attribute vendored_stdlib_path.
Instance Method Summary collapse
-
#initialize ⇒ Options
constructor
A new instance of Options.
Constructor Details
#initialize ⇒ Options
Returns a new instance of Options.
10 11 12 13 14 15 16 17 |
# File 'lib/steep/project/options.rb', line 10 def initialize self.fallback_any_is_error = false self.allow_missing_definitions = true self.vendored_gems_path = nil self.vendored_stdlib_path = nil @libraries = [] 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 |
#libraries ⇒ Object (readonly)
Returns the value of attribute libraries.
8 9 10 |
# File 'lib/steep/project/options.rb', line 8 def libraries @libraries end |
#vendored_gems_path ⇒ Object
Returns the value of attribute vendored_gems_path.
7 8 9 |
# File 'lib/steep/project/options.rb', line 7 def vendored_gems_path @vendored_gems_path end |
#vendored_stdlib_path ⇒ Object
Returns the value of attribute vendored_stdlib_path.
6 7 8 |
# File 'lib/steep/project/options.rb', line 6 def vendored_stdlib_path @vendored_stdlib_path end |