Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use the read-only URL for the git repo paths #8

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Use the read-only URL for the git repo paths
  • Loading branch information
AntelopeSalad committed Feb 3, 2014
commit 0f56a24b07d84ef3a109a28f804cd5db2b50bba1
6 changes: 3 additions & 3 deletions elasticsearch-rails/lib/rails/templates/01-basic.rb
Original file line number Diff line number Diff line change
Expand Up @@ -130,9 +130,9 @@
say_status "Rubygems", "Adding Elasticsearch libraries into Gemfile...\n", :yellow
puts '-'*80, ''; sleep 0.75

gem 'elasticsearch', git: 'git@github.com:elasticsearch/elasticsearch-ruby.git'
gem 'elasticsearch-model', git: 'git@github.com:elasticsearch/elasticsearch-rails.git'
gem 'elasticsearch-rails', git: 'git@github.com:elasticsearch/elasticsearch-rails.git'
gem 'elasticsearch', git: 'git://github.com/elasticsearch/elasticsearch-ruby.git'
gem 'elasticsearch-model', git: 'git://github.com/elasticsearch/elasticsearch-rails.git'
gem 'elasticsearch-rails', git: 'git://github.com/elasticsearch/elasticsearch-rails.git'

# ----- Install gems ------------------------------------------------------------------------------

Expand Down