Skip to content

Commit

Permalink
use https for github gem sources (#190)
Browse files Browse the repository at this point in the history
It will become the default in Bundle 2.0
  • Loading branch information
Dorian authored and calebhearth committed Mar 6, 2017
1 parent e5cd25c commit f28ebbb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Appraisals
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ if RUBY_VERSION > "2.2.0"
end

appraise "rails-edge" do
gem "rails", github: "rails/rails"
gem "arel", github: "rails/arel"
gem "rails", git: "https://github.com/rails/rails"
gem "arel", git: "https://github.com/rails/arel"
end
end
4 changes: 2 additions & 2 deletions gemfiles/rails_edge.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

source "https://rubygems.org"

gem "rails", :github => "rails/rails"
gem "arel", :github => "rails/arel"
gem "rails", :git => "https://github.com/rails/rails"
gem "arel", :git => "https://github.com/rails/arel"

gemspec :path => "../"

0 comments on commit f28ebbb

Please sign in to comment.