Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use local variable inside instance variablels #13

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

tomiacannondale
Copy link

I use this gem for provisioning my local environment.
I use install::user instead install::system .

But I can not install anyenv.
Because @username is not defined inside block of execute method.

example

def hoge
  # @username is defined
  # self is Itamae::Recipe::EvalContext
  execute "install" do
    # @username is not defined
    # self is Itamae::Resource::Base::EvalContext
  end
end

`self` is different inside inside and outside the block.

example

```
def hoge
  # @username is defined
  # self is Itamae::Recipe::EvalContext
  execute "install" do
    # @username is not defined
    # self is Itamae::Resource::Base::EvalContext
  end
end
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant