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 https instead of git protocol in Gemfiles #11585

Merged
merged 1 commit into from
Sep 29, 2016
Merged
Show file tree
Hide file tree
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
10 changes: 5 additions & 5 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ raise "Ruby versions less than 2.2.2 are unsupported!" if RUBY_VERSION < "2.2.2"

# when using this Gemfile inside a providers Gemfile, the dependency for the provider is already declared
unless dependencies.detect { |d| d.name == "manageiq-providers-amazon" }
gem "manageiq-providers-amazon", :git => "git://github.com/ManageIQ/manageiq-providers-amazon", :branch => "master"
gem "manageiq-providers-amazon", :git => "https://github.com/ManageIQ/manageiq-providers-amazon", :branch => "master"
end

# Unmodified gems
Expand Down Expand Up @@ -68,9 +68,9 @@ gem "uglifier", "~>3.0.0"
gem "websocket-driver", "~>0.6.3"

# Modified gems (forked on Github)
gem "foreman_api_client", ">=0.1.0", :require => false, :git => "git://github.com/ManageIQ/foreman_api_client.git", :branch => "master"
gem "ruport", "=1.7.0", :git => "git://github.com/ManageIQ/ruport.git", :tag => "v1.7.0-3"
gem "ziya", "=2.3.0", :require => false, :git => "git://github.com/ManageIQ/ziya.git", :tag => "v2.3.0-3"
gem "foreman_api_client", ">=0.1.0", :require => false, :git => "https://github.com/ManageIQ/foreman_api_client.git", :branch => "master"
gem "ruport", "=1.7.0", :git => "https://github.com/ManageIQ/ruport.git", :tag => "v1.7.0-3"
gem "ziya", "=2.3.0", :require => false, :git => "https://github.com/ManageIQ/ziya.git", :tag => "v2.3.0-3"

# In 1.9.3: Time.parse uses british version dd/mm/yyyy instead of american version mm/dd/yyyy
# american_date fixes this to be compatible with 1.8.7 until all callers can be converted to the 1.9.3 format prior to parsing.
Expand All @@ -92,7 +92,7 @@ group :ui_dependencies do # Added to Bundler.require in config/application.rb
gem "coffee-rails"

# Modified gems (forked on Github)
gem "jquery-rjs", "=0.1.1", :git => "git://github.com/amatsuda/jquery-rjs.git", :ref => "1288c09"
gem "jquery-rjs", "=0.1.1", :git => "https://github.com/amatsuda/jquery-rjs.git", :ref => "1288c09"
end

### Start of gems excluded from the appliances.
Expand Down
4 changes: 2 additions & 2 deletions gems/pending/Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,8 @@ gem "winrm-elevated", "~>0.4.0", :require => false
gem "zip-zip", "~>0.3.0", :require => false

# Modified gems (forked on github)
gem "handsoap", "~>0.2.5", :require => false, :git => "git://github.com/ManageIQ/handsoap.git", :tag => "v0.2.5-4"
gem "rubywbem", :require => false, :git => "git://github.com/ManageIQ/rubywbem.git", :branch => "rubywbem_0_1_0"
gem "handsoap", "~>0.2.5", :require => false, :git => "https://github.com/ManageIQ/handsoap.git", :tag => "v0.2.5-4"
gem "rubywbem", :require => false, :git => "https://github.com/ManageIQ/rubywbem.git", :branch => "rubywbem_0_1_0"

group :appliance do
gem "highline", "~> 1.6.21", :require => false # Needed for the appliance_console
Expand Down