Class: Specific::Feature

Inherits:
Struct
  • Object
show all
Defined in:
lib/specific/feature.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeFeature

Returns a new instance of Feature.



5
6
7
8
# File 'lib/specific/feature.rb', line 5

def initialize(*)
  super
  process!
end

Instance Attribute Details

#descriptionObject

Returns the value of attribute description

Returns:

  • (Object)

    the current value of description



2
3
4
# File 'lib/specific/feature.rb', line 2

def description
  @description
end

#groupObject (readonly)

Returns the value of attribute group.



3
4
5
# File 'lib/specific/feature.rb', line 3

def group
  @group
end

#idObject (readonly)

Returns the value of attribute id.



3
4
5
# File 'lib/specific/feature.rb', line 3

def id
  @id
end

#nameObject

Returns the value of attribute name

Returns:

  • (Object)

    the current value of name



2
3
4
# File 'lib/specific/feature.rb', line 2

def name
  @name
end

#scenariosObject

Returns the value of attribute scenarios

Returns:

  • (Object)

    the current value of scenarios



2
3
4
# File 'lib/specific/feature.rb', line 2

def scenarios
  @scenarios
end

#tagsObject

Returns the value of attribute tags

Returns:

  • (Object)

    the current value of tags



2
3
4
# File 'lib/specific/feature.rb', line 2

def tags
  @tags
end