class Tsuite::InstallTask

Public Instance Methods

install_tasks() click to toggle source
# File lib/tasks/install_task.rb, line 6
def install_tasks
                    namespace :tsuite do
                      desc 'Set up rspec and cucumber environments'
                      task :install do
                        sh "rails g rspec:install"
                        sh "rails g cucumber:install"
                      end
                    end
end