Hi,
from what I know /lib/capistrano/tasks/ folder is reserved for *.rake and 
*.cap files. That means capistrano tasks, not really helpers.

So I think you should be good by putting your helper methods in 
./lib/capistrano/helper_methods.rb
Then in config/deploy.rb file:
```
require_relative '../lib/capistrano/helper_methods'
include Capistrano::HelperMethods

task :some_task do
  helper_method
end
```

Hope that helps!


On Wednesday, April 16, 2014 3:42:25 PM UTC+2, Robert Kuzelj wrote:
>
> ./lib/capistrano or ./lib/capistrano/tasks or somewhere completely 
> different?
>

-- 
You received this message because you are subscribed to the Google Groups 
"Capistrano" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to capistrano+unsubscr...@googlegroups.com.
To view this discussion on the web, visit 
https://groups.google.com/d/msgid/capistrano/6bbe7c3b-48e0-496d-a66d-51a3746a344c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to