Skip to content

Commit

Permalink
Use git:// protocol instead of https:// in Gemfile for compatibility …
Browse files Browse the repository at this point in the history
…with older git versions (as pointed out in #56)
  • Loading branch information
reidab committed Nov 27, 2011
1 parent 5e97649 commit 29c42d6
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions Gemfile
Expand Up @@ -27,15 +27,15 @@ gem 'devise', "~> 1.4.5"
gem 'omniauth', "~> 0.2.6" gem 'omniauth', "~> 0.2.6"


# Automatic login provider selection # Automatic login provider selection
gem 'redfinger', '~> 0.1.0', :git => "https://github.com/reidab/redfinger.git" gem 'redfinger', '~> 0.1.0', :git => "git://github.com/reidab/redfinger.git"
gem 'ruby-openid', '~> 2.1.8' gem 'ruby-openid', '~> 2.1.8'
gem 'net-dns', '~> 0.6.1', :require => 'net/dns/resolver' gem 'net-dns', '~> 0.6.1', :require => 'net/dns/resolver'


# Client libraries for authenticated services # Client libraries for authenticated services
# TODO: Upgrade these to newer versions after omniauth 0.3 upgrade # TODO: Upgrade these to newer versions after omniauth 0.3 upgrade
gem 'twitter', '~> 1.6.0' gem 'twitter', '~> 1.6.0'
gem 'linkedin', '~> 0.2.2', :git => "https://github.com/pengwynn/linkedin.git", :tag => 'v0.2.2' gem 'linkedin', '~> 0.2.2', :git => "git://github.com/pengwynn/linkedin.git", :tag => 'v0.2.2'
gem 'mogli', '~>0.0.25', :git => "https://github.com/reidab/mogli.git" # facebook gem 'mogli', '~>0.0.25', :git => "git://github.com/reidab/mogli.git" # facebook
gem 'foursquare2', '~>1.1.0' # https://gist.github.com/419219 <- github oauth docs! gem 'foursquare2', '~>1.1.0' # https://gist.github.com/419219 <- github oauth docs!


#--[ Search ]------------------------------------------------------------------- #--[ Search ]-------------------------------------------------------------------
Expand All @@ -53,7 +53,7 @@ gem 'friendly_id', '4.0.0.beta14'


gem 'paper_trail', '~> 2' gem 'paper_trail', '~> 2'
gem 'paper_trail_manager' gem 'paper_trail_manager'
# gem 'paper_trail_manager', :git => 'https://github.com/igal/paper_trail_manager.git' # gem 'paper_trail_manager', :git => 'git://github.com/igal/paper_trail_manager.git'
# gem 'paper_trail_manager', :path => '../paper_trail_manager' # gem 'paper_trail_manager', :path => '../paper_trail_manager'


#--[ View ]--------------------------------------------------------------------- #--[ View ]---------------------------------------------------------------------
Expand Down
6 changes: 3 additions & 3 deletions Gemfile.lock
@@ -1,5 +1,5 @@
GIT GIT
remote: https://github.com/pengwynn/linkedin.git remote: git://github.com/pengwynn/linkedin.git
revision: 5ba7d9adc3c4491abb0c1ef9c3cc0ca1ae7aff13 revision: 5ba7d9adc3c4491abb0c1ef9c3cc0ca1ae7aff13
tag: v0.2.2 tag: v0.2.2
specs: specs:
Expand All @@ -8,14 +8,14 @@ GIT
oauth (~> 0.4.0) oauth (~> 0.4.0)


GIT GIT
remote: https://github.com/reidab/mogli.git remote: git://github.com/reidab/mogli.git
revision: bf9cc73404b66c5812f07fd542af2f373b7a3e76 revision: bf9cc73404b66c5812f07fd542af2f373b7a3e76
specs: specs:
mogli (0.0.25) mogli (0.0.25)
httparty (>= 0.4.3) httparty (>= 0.4.3)


GIT GIT
remote: https://github.com/reidab/redfinger.git remote: git://github.com/reidab/redfinger.git
revision: 46be5f9695be4b3e2b38b21603570dfaa4a5aeb4 revision: 46be5f9695be4b3e2b38b21603570dfaa4a5aeb4
specs: specs:
redfinger (0.1.0) redfinger (0.1.0)
Expand Down

0 comments on commit 29c42d6

Please sign in to comment.