Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Geokit issue - "could not find generator"

I am trying to get started with Geokit, and I ran the install command and was greeted with the following:

rails g geokit_rails:install
Could not find generator geokit_rails:install.

Any idea what's going on? I am so confused. bundle install works just fine. I run bundle exec rake db:migrate. but when I go into the console, when I try require 'geokit', I get false. I assume it's because the config file is missing? But how do I generate a sample config file to modify if the install script is failing??

like image 793
Ringo Blancke Avatar asked Dec 24 '22 19:12

Ringo Blancke


1 Answers

The problem is that your version of the geokit-rails gem does not contain the generator. It was added with https://github.com/geokit/geokit-rails/commit/bb4261acef62a26de823c4b7306634ffb7c3381f. The latest version of the gem is 2.1.0, and as you can see here, the generators were not part of that release.

If you want to use the head version of the gem, then you can change your Gemfile to match gem 'geokit-rails', github: 'geokit/geokit-rails'.

like image 175
Sean Hill Avatar answered Dec 27 '22 07:12

Sean Hill