-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathGemfile
29 lines (26 loc) · 867 Bytes
/
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
source :rubygems
gem "thin"
gem "system_timer", :platforms => :ruby_18
gem "bigdecimal"
group :database do
gem 'uuidtools'
gem 'data_mapper', :require=>'dm-core'
gem 'dm-validations'
gem 'dm-migrations'
gem 'dm-timestamps'
gem 'dm-mysql-adapter'
gem 'dm-sqlite-adapter'
end
group :web do
gem 'sinatra'
gem 'haml'
gem 'sinatra-partial', :require => 'sinatra/partial'
gem 'rack-flash3', :require=>"rack-flash"
# gem 'sinatra-xsendfile'
gem "json","~> 1.6.1" ,:require=> 'json/ext'
gem 'omniauth'
gem 'omniauth-twitter' # :git => 'https://github.com/arunagw/omniauth-twitter.git'
gem 'omniauth-github' # :git => 'git://github.com/intridea/omniauth-github.git'
gem 'omniauth-openid' # :git => 'git://github.com/intridea/omniauth-openid.git'
gem 'omniauth-facebook' #:git => "git://github.com/mkdynamic/omniauth-facebook.git"
end