Skip to content

Instantly share code, notes, and snippets.

@pengwynn
Created May 16, 2013 17:42
Show Gist options
  • Save pengwynn/5593570 to your computer and use it in GitHub Desktop.
Save pengwynn/5593570 to your computer and use it in GitHub Desktop.
Getting the contents of a file with the GitHub API
curl -H "Accept: application/vnd.github.raw" https://api.github.com/repos/jamiew/omniauth-rails-app/contents/Gemfile
source 'http://rubygems.org'
gem 'rails', '~> 3.2'
gem 'sqlite3', :group => 'development'
gem 'pg', :group => 'production'
group :assets do
gem 'sass-rails', '~> 3.2'
gem 'coffee-rails', '~> 3.2'
gem 'uglifier', '>= 1.0'
end
# Core dependencies, pulled from master
gem 'omniauth', :git => 'git://github.com/intridea/omniauth.git'
gem 'omniauth-oauth2', :git => 'git://github.com/intridea/omniauth-oauth2.git'
# Under active development
gem 'omniauth-tumblr', :git => 'git://github.com/jamiew/omniauth-tumblr.git'
#gem 'omniauth-tumblr', :path => '~/dev/omniauth-strategies/omniauth-tumblr'
gem 'omniauth-youtube', :git => 'git://github.com/jamiew/omniauth-youtube.git'
#gem 'omniauth-youtube', :path => '~/dev/omniauth-strategies/omniauth-youtube'
# For testing/comparison
gem 'omniauth-facebook'
gem 'omniauth-github'
gem 'omniauth-google-oauth2'
gem 'omniauth-twitter'
gem 'omniauth-vimeo'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment