1
0
Fork 0
mirror of https://github.com/capistrano/capistrano synced 2023-03-27 23:21:18 -04:00
capistrano/lib
seenmyfate a58bb3bca2 Correctly infer namespace in task enhancements
Previously, defining a task using the `after` syntax within a namespace
block ignored the namespace, now the following examples are equivalent:

      # within namespace
      namespace :deploy do
        task :my_task do
          #
        end

        after :starting, :my_task
      end

      # outside of namespace
      after 'deploy:starting', 'deploy:my_task'

This resolves #541
2013-11-01 15:49:32 +00:00
..
capistrano Correctly infer namespace in task enhancements 2013-11-01 15:49:32 +00:00
Capfile Ensure stage not set warning is displayed correctly 2013-09-06 13:23:10 +01:00
capistrano.rb Move requires to capistrano/all 2013-09-13 09:34:28 +01:00