-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
68 lines (47 loc) · 1.5 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
source 'http://rubygems.org'
gem 'rails', '3.1.0'
# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git'
#Rails database
gem 'mysql2', "0.3.6"
# Rails 3.1 - Pagination - Use the head for rails 3.1
gem 'kaminari'
# Asset template engines
gem 'json'
group :assets do
gem 'sass-rails', " ~> 3.1.0"
gem 'coffee-rails', "~> 3.1.0"
gem 'uglifier'
end
gem 'feedzirra'
#Ruby racer -- to resolve the assets problem
gem "therubyracer", :require => 'v8'
gem 'jquery-rails'
# Use unicorn as the web server
# gem 'unicorn'
# Deploy with Capistrano
gem 'capistrano', "2.6.0"
gem 'capistrano-ext' # Extend capistrano to multiple environments
# To use debugger
# gem 'ruby-debug'
# Rails 3.1 - Image - Use the head for rails 3.1
#gem 'rmagick' # Image Manipulation
#gem 'paperclip', :git => "git://github.com/thoughtbot/paperclip.git" # Image Database
#gem 'aws-s3', :require => 'aws/s3' # Image Storage
# Search Engine
gem 'thinking-sphinx', :branch => "rails3", :git => "git://github.com/freelancing-god/thinking-sphinx.git", :require => 'thinking_sphinx'
# Authentication
# Decided to not go with restful authentication as it's not RAILS 3 by default
# gem 'restful-authentication', :git => 'git://github.com/technoweenie/restful-authentication'
# Instead using devise
gem 'devise'
gem 'cancan'
#Test gems
gem "rspec-rails", :group => [:test, :development]
group :test do
gem "factory_girl_rails"
gem "capybara"
gem "guard-rspec"
end
# CRON JOBS
gem 'whenever', :require => false