dynamic-spree-sitemaps installation in rails

164 Views Asked by At

Hi I am using rails 3 and ruby 1.9.3 and i am trying to install dynamic-spree-sitemaps with following code

script/extension install git://github.com/polomasta/dynamic-spree-sitemaps.git
mv vendor/extensions/dynamic-spree-sitemaps vendor/extensions/sitemaps 

but it gives us

bash: script/extension: No such file or directory

please some one help me

1

There are 1 best solutions below

2
On

I have not install this gem but script/extension install is old Rails 2.x command syntax. Instead do something like this.

In you Gemfile add:

gem 'dynamic-spree-sitemaps', :git => 'git://github.com/polomasta/dynamic-spree-sitemaps.git'

Or with https version:

gem 'dynamic-spree-sitemaps', :git => 'https://github.com/polomasta/dynamic-spree-sitemaps'

And run bundle install

Other way of installing directly from github source is by using a gem called specific_install

gem install specific_install
gem specific_install -l <url to a github gem>

In this case:

gem specific_install https://github.com/polomasta/dynamic-spree-sitemaps.git