ruby on rails - Not able to add extension in spree -


i'm using spree 3.0.4 in rails (4.2.3) , ruby (2.2.0).

now want add extension this. add gem

gem 'spree_simple_sales',:path => '../spree_simple_sales' 

in application, when bundle gives me error like:

could not find gem 'spree_simple_sales (>= 0) ruby' in source @ ../spree_simple_sales. source not contain versions of 'spree_simple_sales (>= 0) ruby' 

can tell why gives me error?

you need specify version gem using, such

gem 'spree_simple_sales', '0.1.0', :path => '../spree_simple_sales' 

hope helps, think reference necessity of specifying version should added 'extensions' tutorial on spree website.


Comments

Popular posts from this blog

python - ValueError: empty vocabulary; perhaps the documents only contain stop words -

java - UnknownEntityTypeException: Unable to locate persister (Hibernate 5.0) -

ubuntu - collect2: fatal error: ld terminated with signal 9 [Killed] -