lib/spree_cmd/installer.rb in spree_cmd-1.3.5 vs lib/spree_cmd/installer.rb in spree_cmd-2.0.0.rc1
- old
+ new
@@ -41,11 +41,11 @@
def prepare_options
@spree_gem_options = {}
if options[:edge]
- @spree_gem_options[:git] = 'git://github.com/spree/spree.git'
+ @spree_gem_options[:git] = 'https://github.com/spree/spree.git'
elsif options[:path]
@spree_gem_options[:path] = options[:path]
elsif options[:git]
@spree_gem_options[:git] = options[:git]
@spree_gem_options[:ref] = options[:ref] if options[:ref]
@@ -92,14 +92,14 @@
inside @app_path do
gem :spree, @spree_gem_options
if @install_default_gateways
- gem :spree_gateway, :github => "spree/spree_gateway", :branch => "1-3-stable"
+ gem :spree_gateway, :git => "https://github.com/spree/spree_gateway.git"
end
if @install_default_auth
- gem :spree_auth_devise, :github => "spree/spree_auth_devise", :branch => "1-3-stable"
+ gem :spree_auth_devise, :git => "https://github.com/spree/spree_auth_devise.git"
end
run 'bundle install', :capture => true
end
end