-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
35 lines (30 loc) · 1.01 KB
/
Gemfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
source 'http://rubygems.org'
gem 'rails', '3.2.9'
# gem 'sqlite3', :group => 'development'
# gem 'pg', :group => 'production'
group :production do
gem 'pg', '0.12.2'
end
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'
gem 'debugger'
gem 'therubyracer'
gem 'activerecord-mysql-adapter'
gem 'mysql2'