Displaying 3 results from an estimated 3 matches for "moduel".
Did you mean:
model
2010 May 03
1
Simple issue with templates.
...mode => 644,
content =>
template("puppet:///yumrepositories/templates/repo.template.rb"),
}
Do I _really_ have to place the templates in /var/lib/puppet/template/ ?
I''m hoping to package a number of these manifests as moduels in git and
I really want to be able to deploy direct from git rather than cloning
and then having to copy the template into place.
Thanks in advance,
Matt
--
You received this message because you are subscribed to the Google Groups "Puppet Users" group.
To post to this group, send e...
2010 Jun 23
1
I look ARI (Asterisk Recording Interface)
Hello,
I look ARI (Asterisk Recording Interface)
the publisher site is closed...
http://www.littlejohnconsulting.com/ari
Thank you,
Mickael
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.digium.com/pipermail/asterisk-users/attachments/20100623/a8d923ae/attachment.htm
2012 Dec 01
6
Why does 'extend ActiveSupport::Concern' cause `undefined method 'recycle!'`?
Working on Rails Engine.
I want to make the controllers customizable whereever the Rails Engine is
used.
Therefore, I was trying to use `extend ActiveSupport::Concern` on the
Engine controller class and include it in MyRailsApp.
https://gist.github.com/4185823
# code in my rails engine
moduel MyEngine
class SomeController
extend ActiveSupport::Concern
def engine_some_method
end
end
end
# code in my rails app where engine is implemented
class SomeController
include MyEngine::SomeController
def app_some_method
end
# code that''s available by includi...