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.



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_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

#librariesObject (readonly)

Returns the value of attribute libraries.



8
9
10
# File 'lib/steep/project/options.rb', line 8

def libraries
  @libraries
end

#vendored_gems_pathObject

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_pathObject

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