Class: Posgra::DSL::Roles
- Inherits:
-
Object
- Object
- Posgra::DSL::Roles
- Includes:
- Logger::Helper, TemplateHelper, Utils::Helper
- Defined in:
- lib/posgra/dsl/roles.rb
Defined Under Namespace
Classes: Group
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(path, options = {}, &block) ⇒ Roles
constructor
A new instance of Roles.
- #result ⇒ Object
Methods included from Utils::Helper
Methods included from TemplateHelper
Methods included from Logger::Helper
Constructor Details
#initialize(path, options = {}, &block) ⇒ Roles
Returns a new instance of Roles.
17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 |
# File 'lib/posgra/dsl/roles.rb', line 17 def initialize(path, = {}, &block) @path = path @options = @result = { :users => [], :users_by_group => {}, } @context = Hashie::Mash.new( :path => path, :options => , :templates => {}, ) instance_eval(&block) end |
Class Method Details
.eval(dsl, path, options = {}) ⇒ Object
6 7 8 9 10 |
# File 'lib/posgra/dsl/roles.rb', line 6 def self.eval(dsl, path, = {}) self.new(path, ) do eval(dsl, binding, path) end end |
Instance Method Details
#result ⇒ Object
12 13 14 15 |
# File 'lib/posgra/dsl/roles.rb', line 12 def result @result.fetch(:users).uniq @result end |