I am trying to install spree
and its extension spree_static_content
. I want spree 3.1.0 beta
because thats the dependency for spree_static_content
. But when I try to run bundle install, i get
Fetching git://github.com/spree/spree.git
but its stuck there. here is my gemfile
gem 'spree', github: 'spree/spree', branch: '~> 3.1.0.beta'
gem 'spree_gateway', github: 'spree/spree_gateway', branch: '~> 3.1.0.beta'
gem 'spree_auth_devise', github: 'spree/spree_auth_devise', branch: '~> 3.1.0.beta'
gem 'spree_static_content', github: 'spree-contrib/spree_static_content', branch: 'master'
I am able to install other versions of spree by mentioning just the version,
for eg.
gem 'spree' , '~> 3.0.7'
bundles install runs successfully. Can anyone tell me why bundle install is not working. I tried updating bundler , didnt help.
And while trying I understand that for some reason fetching spree from github is not working but fetching other gems from github works
git
connection is firewalled. Triedhttps
? – tadman