Skip to content

Commit

Permalink
use https for git dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
zfletch committed Sep 25, 2018
1 parent f631f04 commit 3c5d627
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,19 +5,19 @@ gemspec

gem 'coveralls', '0.8.21', require: false

gem 'llt-core', git: 'git://github.com/perseids-project/llt-core.git'
gem 'llt-constants', git: 'git://github.com/perseids-project/llt-constants.git'
gem 'llt-db_handler', git: 'git://github.com/perseids-project/llt-db_handler.git'
gem 'llt-helpers', git: 'git://github.com/perseids-project/llt-helpers.git'
gem 'llt-logger', git: 'git://github.com/perseids-project/llt-logger.git'
gem 'llt-review', git: 'git://github.com/perseids-project/llt-review.git'
gem 'llt-segmenter', git: 'git://github.com/perseids-project/llt-segmenter.git'
gem 'llt-xml_handler', git: 'git://github.com/perseids-project/llt-xml_handler.git'
gem 'llt-tokenizer', git: 'git://github.com/perseids-project/llt-tokenizer.git'
gem 'llt-core', git: 'https://github.com/perseids-project/llt-core.git'
gem 'llt-constants', git: 'https://github.com/perseids-project/llt-constants.git'
gem 'llt-db_handler', git: 'https://github.com/perseids-project/llt-db_handler.git'
gem 'llt-helpers', git: 'https://github.com/perseids-project/llt-helpers.git'
gem 'llt-logger', git: 'https://github.com/perseids-project/llt-logger.git'
gem 'llt-review', git: 'https://github.com/perseids-project/llt-review.git'
gem 'llt-segmenter', git: 'https://github.com/perseids-project/llt-segmenter.git'
gem 'llt-xml_handler', git: 'https://github.com/perseids-project/llt-xml_handler.git'
gem 'llt-tokenizer', git: 'https://github.com/perseids-project/llt-tokenizer.git'

# Dependencies of db_handler
gem 'llt-core_extensions', git: 'git://github.com/perseids-project/llt-core_extensions.git'
gem 'llt-form_builder', git: 'git://github.com/perseids-project/llt-form_builder.git'
gem 'llt-core_extensions', git: 'https://github.com/perseids-project/llt-core_extensions.git'
gem 'llt-form_builder', git: 'https://github.com/perseids-project/llt-form_builder.git'

platform :ruby do
gem 'pg'
Expand Down

0 comments on commit 3c5d627

Please sign in to comment.