forked from sizzlelab/kassi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
68 lines (57 loc) · 1.29 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
source 'http://rubygems.org'
gem 'rails', '3.0.17'
# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git'
# gem 'sqlite3-ruby', :require => 'sqlite3'
# Use unicorn as the web server
# gem 'unicorn'
# Deploy with Capistrano
gem 'capistrano'
# To use debugger
# gem 'ruby-debug'
# Bundle the extra gems:
gem "mongrel"
gem 'mysql', '2.8.1'
gem 'haml'
gem 'sass'
gem 'database_cleaner'
gem 'rest-client', '>= 1.6.0'
gem 'httpclient' # Used by avatar upload
gem 'acts-as-taggable-on'
gem 'paperclip', '~>2.7'
gem "will_paginate"
gem 'whenever'
gem 'newrelic_rpm'
gem 'memcache-client', ">= 1.8.5"
gem 'thinking-sphinx', :require => 'thinking_sphinx'
gem 'recaptcha'
gem "airbrake"
gem 'passenger'
gem 'delayed_job'
gem 'delayed_job_active_record'
gem 'win32console', :platforms => [:mswin, :mingw]
gem 'win32-process', :platforms => [:mswin, :mingw]
gem 'json'
gem 'russian'
gem 'web_translate_it'
gem 'postmark-rails'
gem 'rails-i18n'
gem 'devise', '2.0.0.rc'
gem "omniauth-facebook"
gem 'spreadsheet'
gem 'rabl'
#gem 'rocket_pants'
group :test do
gem "rspec-rails"
gem 'capybara'
gem 'cucumber-rails'
gem 'cucumber'
gem 'selenium-webdriver'
gem 'launchy'
gem 'ruby-prof'
gem 'factory_girl_rails', '~> 1.7 '
gem "pickle"
end
group :production do
gem 'thin'
end