Reputation: 1267
I am using windows8.1 . I saw some similar post at stackoverflow but I didn't get any solution.
C:\Sites\occtopress>bundle exec rake install
DL is deprecated, please use Fiddle
DL is deprecated, please use Fiddle
rake aborted!
Don't know how to build task 'install'
(See full trace by running task with --trace)
here is my Rakefile:
# Add your own tasks in files placed in lib/tasks ending in .rake,
# for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.
require File.expand_path('../config/application', __FILE__)
Rails.application.load_tasks
please help
Upvotes: 0
Views: 182
Reputation: 1159
Assuming you have not created any tasks file in lib/tasks, you won't have any task named install.
rake -T
will list all of your available tasks (look for a line starting with "rake install").
btw, what are you trying to achieve?
Upvotes: 1