-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGemfile
executable file
·69 lines (47 loc) · 1.32 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
source 'https://rubygems.org'
gem 'rails', '3.2.19'
gem 'mysql2', '0.3.21'
# gem 'sqlite3'
# gem 'mysql2', '~> 0.3.10'
gem 'yaml_db'
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'sass-rails', '~> 3.2.3'
gem 'coffee-rails', '~> 3.2.1'
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
# gem 'therubyracer', :platforms => :ruby
gem 'uglifier', '>= 1.0.3'
end
gem 'jquery-rails'
gem 'rack-attack'
# Deploy with Capistrano
gem 'capistrano'
group :development do
# To use debugger
gem 'rb-readline'
end
gem "therubyracer"
gem "less-rails" #Sprockets (what Rails 3.1 uses for its asset pipeline) supports LESS
gem "twitter-bootstrap-rails" ,'~> 2.2.8'
gem 'devise'
gem 'will_paginate'
gem 'newrelic_rpm'
gem 'google-analytics-rails'
gem 'memcache-client'
gem 'zeroclipboard-rails'
gem 'rabl'
gem "cancan"
gem 'jquery-datatables-rails'#, git: 'git://github.com/rweng/jquery-datatables-rails.git'
gem 'public_activity' #activity log tracker
gem "font-awesome-rails"
gem 'test-unit'
group :production do
gem 'dalli'
end
gem 'sunspot_rails'
gem 'sunspot_solr'
gem 'progress_bar'
gem 'rubyzip', '>= 1.0.0' # will load new rubyzip version
gem 'zip-zip' # will load compatibility for old rubyzip API.
gem "friendly_id", "~> 4.0.10"