Class: IRuby::Application::UnregisterParams
- Inherits:
-
Struct
- Object
- Struct
- IRuby::Application::UnregisterParams
- Defined in:
- lib/iruby/application.rb
Instance Attribute Summary collapse
-
#force ⇒ Object
Returns the value of attribute force.
-
#ipython_dir ⇒ Object
Returns the value of attribute ipython_dir.
-
#names ⇒ Object
Returns the value of attribute names.
-
#yes ⇒ Object
Returns the value of attribute yes.
Instance Method Summary collapse
-
#initialize(*args, **kw) ⇒ UnregisterParams
constructor
A new instance of UnregisterParams.
Constructor Details
#initialize(*args, **kw) ⇒ UnregisterParams
Returns a new instance of UnregisterParams.
292 293 294 295 296 297 298 |
# File 'lib/iruby/application.rb', line 292 def initialize(*args, **kw) super self.names = [] # self.user = true self.force = false self.yes = false end |
Instance Attribute Details
#force ⇒ Object
Returns the value of attribute force
282 283 284 |
# File 'lib/iruby/application.rb', line 282 def force @force end |
#ipython_dir ⇒ Object
Returns the value of attribute ipython_dir
282 283 284 |
# File 'lib/iruby/application.rb', line 282 def ipython_dir @ipython_dir end |
#names ⇒ Object
Returns the value of attribute names
282 283 284 |
# File 'lib/iruby/application.rb', line 282 def names @names end |
#yes ⇒ Object
Returns the value of attribute yes
282 283 284 |
# File 'lib/iruby/application.rb', line 282 def yes @yes end |