Method: Licensed::Configuration#apps
- Defined in:
- lib/licensed/configuration.rb
#apps ⇒ Object
Returns an array of the applications for this licensed configuration. If the configuration did not explicitly configure any applications, return self as an application configuration.
142 143 144 145 |
# File 'lib/licensed/configuration.rb', line 142 def apps return [self] if self["apps"].empty? self["apps"] end |