forked from bengler/checkpoint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
49 lines (45 loc) · 1.64 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
source 'https://rubygems.org'
gem 'sinatra'
gem 'sinatra-activerecord'
gem 'rack-contrib'
gem 'activerecord', '~> 3.2', :require => 'active_record'
gem 'activesupport', '~> 3.2'
gem 'pg'
gem 'omniauth', '~> 1.1.4'
gem 'omniauth-twitter', :git => 'git://github.com/arunagw/omniauth-twitter.git'
gem 'omniauth-facebook', '~> 1.4.1'
gem 'omniauth-contrib', '~> 1.0.0', :git => 'git://github.com/intridea/omniauth-contrib.git'
gem 'omniauth-oauth', '~> 1.0.1', :git => 'git://github.com/intridea/omniauth-oauth.git'
gem 'omniauth-oauth2', '~> 1.1.0', :git => 'git://github.com/intridea/omniauth-oauth2.git'
gem 'omniauth-origo', '~> 1.0.0.rc3', :git => 'git://github.com/bengler/omniauth-origo.git'
gem 'omniauth-vanilla', :git => 'git://github.com/bengler/omniauth-vanilla.git'
gem 'omniauth-evernote'
gem 'omniauth-google-oauth2', '~> 0.1.10'
gem 'pebblebed', ">=0.1.0"
gem 'pebbles-uid'
gem 'pebbles-cors', :git => 'git://github.com/bengler/pebbles-cors.git'
gem 'pebbles-path', '>=0.0.3'
gem 'yajl-ruby', :require => 'yajl'
gem 'dalli', '~> 2.1.0'
gem 'thor'
gem 'petroglyph'
gem 'rake'
gem 'queryparams'
gem 'simpleidn', '~> 0.0.4'
gem 'rest-client', :require => false # Used by origo.thor
gem 'ar-tsvectors', '~> 1.0', :require => 'activerecord_tsvectors'
gem 'curb', '>= 0.7.14'
group :development, :test do
gem 'bengler_test_helper', :git => 'git://github.com/bengler/bengler_test_helper.git', :require => false
gem 'simplecov'
gem 'rspec', '~> 2.8'
gem 'webmock', '~> 1.8.11'
gem 'vcr'
gem 'timecop', '~> 0.3.5'
gem 'rack-test'
gem "memcache_mock"
end
group :production do
gem 'airbrake', '~> 3.1.4', :require => false
gem 'unicorn', '~> 4.1.1'
end