Class: Perkins::Build::Data::Env
- Defined in:
- lib/perkins/build/data/env.rb
Defined Under Namespace
Classes: Group
Instance Attribute Summary collapse
-
#data ⇒ Object
readonly
Returns the value of attribute data.
Instance Method Summary collapse
-
#initialize(data) ⇒ Env
constructor
A new instance of Env.
- #vars ⇒ Object
- #vars_groups ⇒ Object
Constructor Details
#initialize(data) ⇒ Env
Returns a new instance of Env.
22 23 24 |
# File 'lib/perkins/build/data/env.rb', line 22 def initialize(data) @data = data end |
Instance Attribute Details
#data ⇒ Object (readonly)
Returns the value of attribute data.
20 21 22 |
# File 'lib/perkins/build/data/env.rb', line 20 def data @data end |
Instance Method Details
#vars ⇒ Object
26 27 28 |
# File 'lib/perkins/build/data/env.rb', line 26 def vars travis_vars + settings_vars + config_vars end |