-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGemfile
50 lines (36 loc) · 886 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
48
49
source 'http://rubygems.org'
gem 'rails', '3.1.0'
gem 'mysql2'
# Asset template engines
gem 'sass-rails'
gem 'coffee-script'
gem 'uglifier'
gem 'sprockets'#, :git => "https://github.com/sstephenson/sprockets.git"
gem 'jquery-rails'
# JavaScript runtime:
gem 'therubyracer'
gem 'devise'
gem 'omniauth', "0.3.0"
gem 'uuid', "2.3.4"
gem "rails3-generators"
gem 'authlogic', "3.1.0"
# Daemon
gem 'foreverb', :git => 'git://github.com/DAddYE/foreverb.git'
# For networking
gem 'net-ping'
# Use unicorn as the web server
gem 'unicorn'
# Deploy with Capistrano
# gem 'capistrano'
# To use debugger
# gem 'ruby-debug19', :require => 'ruby-debug'
group :development, :test do
gem "autotest"
# Pretty printed test output
gem 'turn', :require => false
gem 'minitest'
gem 'shoulda', '2.11.3'
gem 'capybara', '1.1.1'
gem 'launchy', '2.0.5'
gem "simplecov", "0.5.3"
end