Class: Rubyx::Rails::Configuration
- Inherits:
-
Object
- Object
- Rubyx::Rails::Configuration
- Defined in:
- lib/rubyx/rails.rb
Instance Attribute Summary collapse
-
#auto_init ⇒ Object
Returns the value of attribute auto_init.
-
#debug ⇒ Object
Returns the value of attribute debug.
-
#force_reinit ⇒ Object
Returns the value of attribute force_reinit.
-
#pyproject_content ⇒ Object
Returns the value of attribute pyproject_content.
-
#pyproject_path ⇒ Object
Returns the value of attribute pyproject_path.
-
#python_paths ⇒ Object
Returns the value of attribute python_paths.
-
#uv_args ⇒ Object
Returns the value of attribute uv_args.
-
#uv_path ⇒ Object
Returns the value of attribute uv_path.
-
#uv_version ⇒ Object
Returns the value of attribute uv_version.
Instance Method Summary collapse
-
#initialize ⇒ Configuration
constructor
A new instance of Configuration.
Constructor Details
#initialize ⇒ Configuration
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_init ⇒ Object
Returns the value of attribute auto_init.
6 7 8 |
# File 'lib/rubyx/rails.rb', line 6 def auto_init @auto_init end |
#debug ⇒ Object
Returns the value of attribute debug.
6 7 8 |
# File 'lib/rubyx/rails.rb', line 6 def debug @debug end |
#force_reinit ⇒ Object
Returns the value of attribute force_reinit.
6 7 8 |
# File 'lib/rubyx/rails.rb', line 6 def force_reinit @force_reinit end |
#pyproject_content ⇒ Object
Returns the value of attribute pyproject_content.
6 7 8 |
# File 'lib/rubyx/rails.rb', line 6 def pyproject_content @pyproject_content end |
#pyproject_path ⇒ Object
Returns the value of attribute pyproject_path.
6 7 8 |
# File 'lib/rubyx/rails.rb', line 6 def pyproject_path @pyproject_path end |
#python_paths ⇒ Object
Returns the value of attribute python_paths.
6 7 8 |
# File 'lib/rubyx/rails.rb', line 6 def python_paths @python_paths end |
#uv_args ⇒ Object
Returns the value of attribute uv_args.
6 7 8 |
# File 'lib/rubyx/rails.rb', line 6 def uv_args @uv_args end |
#uv_path ⇒ Object
Returns the value of attribute uv_path.
6 7 8 |
# File 'lib/rubyx/rails.rb', line 6 def uv_path @uv_path end |
#uv_version ⇒ Object
Returns the value of attribute uv_version.
6 7 8 |
# File 'lib/rubyx/rails.rb', line 6 def uv_version @uv_version end |