-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
72 lines (53 loc) · 1.4 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
source 'http://rubygems.org'
gem 'rails', :git => 'git://github.com/rails/rails.git', :branch=>'3-1-stable'
# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git'
group :test, :development do
gem 'sqlite3'
gem 'rspec-rails'
gem 'capybara'
gem 'factory_girl_rails'
gem 'mocha'
gem 'database_cleaner'
end
gem 'mysql2'
# heroku
gem 'newrelic_rpm'
gem 'squeel'
#our custom gems
# amf
gem "RocketAMF", :git => "git://github.com/rubyamf/rocketamf.git"
gem 'rubyamf', :git => 'git://github.com/rubyamf/rubyamf.git'
# state machine
gem 'aasm'
# background processor
gem 'resque'
gem 'resque-scheduler', :git => 'git://github.com/bvandenbos/resque-scheduler.git'
gem 'foreman'
gem 'vk_api'
# js compiler
gem 'therubyracer'
#Google data API
gem 'gdata_19', :git => 'https://github.com/tokumine/GData.git', :require => 'gdata'
###
gem 'activeadmin'
gem 'haml'
gem 'haml-rails'
# Gems used only for assets and not required
# in production environments by default.
gem 'sass-rails', :git => 'git://github.com/rails/sass-rails.git', :branch=>'3-1-stable'
group :assets do
gem 'coffee-rails', '~> 3.1.0'
gem 'uglifier'
end
gem 'jquery-rails'
# Use thin as the web server
gem 'thin'
# Deploy with Capistrano
# gem 'capistrano'
# To use debugger
# gem 'ruby-debug19', :require => 'ruby-debug'
group :test do
# Pretty printed test output
gem 'turn', :require => false
end