Ruby on Rails Tuesday, November 18, 2014

Hello,

What are the deprecated messages you are getting?

Mike Riley

On Tue, Nov 18, 2014 at 1:31 PM, Robert Fitzpatrick <robert@webtent.org> wrote:
I am new to ruby and maintaining an existing web application. I need to change the FTP server in a task and trying to familiarize myself with rake tasks. The task is in lib/tasks/archives.rake under the namespace utils. I read over a rake tutorial and viewed rake options to try and show information about the task and possibly run it to test. But when I do 'rake -T', I get a lot of DEPRECATED messages and the list afterward does not have my task listed. This is how the task is defined:

namespace:utils do
  <snip>
  task :process_archives => :environment do
  <snip>

But I have no task listed with that name? I tried 'rake -D utils:process_archives' as well and only got the deprecated messages output. I do see the task in the schedule.rb file...

./config/schedule.rb:  command %{#{cmd_root} && cd /var/www/vhosts/xxxx/current && bundle exec rake utils:process_archives DIR="/var/www/vhosts/xxxx/shared/tmp" RAILS_ENV=production}

And the following file:

./script/process_archives.sh:rake utils:process_archives DIR="/var/www/virtual/xxxx/htdocs/xxxx/tmp" RAILS_ENV="production"

The Rakefile looks like this:

require File.expand_path('../config/application', __FILE__)

XXXX::Application.load_tasks

Thanks for any help!

--
Robert

--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To unsubscribe from this group and stop receiving emails from it, send an email to rubyonrails-talk+unsubscribe@googlegroups.com.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/546B909F.8060606%40webtent.org.
For more options, visit https://groups.google.com/d/optout.

--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To unsubscribe from this group and stop receiving emails from it, send an email to rubyonrails-talk+unsubscribe@googlegroups.com.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/CAC09tCVp244hccN%2BL6DRowQ%2BT%2ByBJtY9D%3DPLn36djJDdTt6Dcg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.

No comments:

Post a Comment