Class: Rubyx::Rails::Configuration

Inherits:
Object
  • Object
show all
Defined in:
lib/rubyx/rails.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeConfiguration

Returns a new instance of Configuration.



10
11
12
13
14
15
16
17
18
19
20
# File 'lib/rubyx/rails.rb', line 10

def initialize
  @pyproject_path = nil
  @pyproject_content = nil
  @auto_init = false
  @force_reinit = false
  @uv_version = Rubyx::Uv::DEFAULT_UV_VERSION
  @debug = false
  @python_paths = []
  @uv_path = nil
  @uv_args = []
end

Instance Attribute Details

#auto_initObject

Returns the value of attribute auto_init.



6
7
8
# File 'lib/rubyx/rails.rb', line 6

def auto_init
  @auto_init
end

#debugObject

Returns the value of attribute debug.



6
7
8
# File 'lib/rubyx/rails.rb', line 6

def debug
  @debug
end

#force_reinitObject

Returns the value of attribute force_reinit.



6
7
8
# File 'lib/rubyx/rails.rb', line 6

def force_reinit
  @force_reinit
end

#pyproject_contentObject

Returns the value of attribute pyproject_content.



6
7
8
# File 'lib/rubyx/rails.rb', line 6

def pyproject_content
  @pyproject_content
end

#pyproject_pathObject

Returns the value of attribute pyproject_path.



6
7
8
# File 'lib/rubyx/rails.rb', line 6

def pyproject_path
  @pyproject_path
end

#python_pathsObject

Returns the value of attribute python_paths.



6
7
8
# File 'lib/rubyx/rails.rb', line 6

def python_paths
  @python_paths
end

#uv_argsObject

Returns the value of attribute uv_args.



6
7
8
# File 'lib/rubyx/rails.rb', line 6

def uv_args
  @uv_args
end

#uv_pathObject

Returns the value of attribute uv_path.



6
7
8
# File 'lib/rubyx/rails.rb', line 6

def uv_path
  @uv_path
end

#uv_versionObject

Returns the value of attribute uv_version.



6
7
8
# File 'lib/rubyx/rails.rb', line 6

def uv_version
  @uv_version
end