Skip to content

Commit

Permalink
Define not implemented features
Browse files Browse the repository at this point in the history
  • Loading branch information
surenm committed Aug 19, 2014
1 parent 2e32c48 commit 1b18ad1
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions lib/capistrano/tasks/bokuto.rake
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,31 @@ namespace :bokuto do
task :verify, :deployment_id do |task, args|
puts opsworks.verify args[:deployment_id]
end

# Set env variables like heroku
namespace :config do
task :get do |key|
raise NotImplementedError
end

task :set do |key, value|
raise NotImplementedError
end

task :unset do |key|
raise NotImplementedError
end
end

namespace :ps do
task :restart do
raise NotImplementedError
end

task :stop do
raise NotImplementedError
end
end
end

after 'deploy:check', 'bokuto:check'
Expand Down

0 comments on commit 1b18ad1

Please sign in to comment.