-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
43 lines (35 loc) · 725 Bytes
/
Gemfile
File metadata and controls
43 lines (35 loc) · 725 Bytes
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
source 'http://rubygems.org'
gem 'rails', "~> 3.1.0"
gem 'mysql2'
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'sass-rails'
gem 'coffee-rails'
gem 'uglifier'
gem "compass", "~> 0.12.alpha.0"
end
gem 'rack', '1.3.3'
gem 'rails-i18n'
gem 'cancan'
# Javascripts runtime
gem 'therubyracer'
gem 'activeadmin',"0.3.2"
gem 'jquery-rails'
gem "paper_trail"
# paginacion
gem 'kaminari'
# busqueda
gem "meta_search"
# formularios
gem 'formtastic', "<= 1.2.4"
# tablas
gem "tabletastic"
# controladores
gem 'inherited_resources'
# Use thin as the web server
gem 'thin'
# Deploy with Capistrano
# gem 'capistrano'
# To use debugger
gem 'pry', :group => :test