leeand00
leeand00

Reputation: 26392

Could not find the required 'adsf' gem, which is necessary for the view command

I was recently working on a project in nanoc and installed bundler so I could use guard to watch the project directory.

Now when I run nanoc view the webserver doesn't start up displaying the following error instead:

$ nanoc view
Could not find the required 'adsf' gem, which is necessary for the view command.

I read in a google group that there has been some sort of a typo in which the gem packages adsf and asdf have been confused. I tried installing both of them with sudo gem install but I when I run the command I still get the same error message.

Upvotes: 2

Views: 354

Answers (1)

Stoic
Stoic

Reputation: 10754

Add the gem "adsf" to your Gemfile, and run bundle command. And, then run nanoc view. Should work.

Upvotes: 3

Related Questions