-
Notifications
You must be signed in to change notification settings - Fork 49
/
Gemfile
47 lines (35 loc) · 859 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
source 'https://rubygems.org'
gem 'rails'
gem 'sqlite3', :group => [:test, :development]
gem 'mysql2', :group => [:production, :staging]
gem 'jquery-rails'
gem 'json'
# To use OAuth login
gem "oauth-plugin", "~> 0.4.0"
gem 'anjlab-bootstrap-rails', :require => 'bootstrap-rails',
:git => '[email protected]:anjlab/bootstrap-rails'
# use Devise for login
gem 'devise'
gem 'omniauth'
gem 'oauth2'
gem 'omniauth-google-oauth2'
group :development do
gem 'capistrano'
gem 'rvm-capistrano'
gem 'thin'
end
group :test do
gem 'factory_girl_rails'
end
group :staging, :production do
gem 'libv8'
end
group :assets do
gem 'sass-rails', '~> 3.2.3'
gem 'coffee-rails', '~> 3.2.1'
gem 'therubyracer'
gem 'uglifier', '>= 1.0.3'
gem 'turbo-sprockets-rails3'
end
# better timeouts
# gem "system_timer", "~> 1.2.4"