Class: IRuby::Application::UnregisterParams

Inherits:
Struct
  • Object
show all
Defined in:
lib/iruby/application.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

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

#forceObject

Returns the value of attribute force

Returns:

  • (Object)

    the current value of force



282
283
284
# File 'lib/iruby/application.rb', line 282

def force
  @force
end

#ipython_dirObject

Returns the value of attribute ipython_dir

Returns:

  • (Object)

    the current value of ipython_dir



282
283
284
# File 'lib/iruby/application.rb', line 282

def ipython_dir
  @ipython_dir
end

#namesObject

Returns the value of attribute names

Returns:

  • (Object)

    the current value of names



282
283
284
# File 'lib/iruby/application.rb', line 282

def names
  @names
end

#yesObject

Returns the value of attribute yes

Returns:

  • (Object)

    the current value of yes



282
283
284
# File 'lib/iruby/application.rb', line 282

def yes
  @yes
end