-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
49 lines (35 loc) · 977 Bytes
/
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
source 'https://rubygems.org'
ruby "2.0.0"
gem 'rails', '4.0.0'
group :development, :test do
gem 'sqlite3'
gem 'rspec-rails', '2.14.0'
gem 'factory_girl_rails'
end
group :test do
gem 'capybara'
gem 'launchy'
end
gem 'sass-rails', '~> 4.0.0'
gem 'coffee-rails', '~> 4.0.0'
gem 'uglifier', '>= 1.3.0'
gem 'jquery-rails'
group :production do
gem 'pg'
gem 'unicorn'
# Esta gema debe ser incluida para mejor compatibilidad con Heroku
gem 'rails_12factor'
end
gem 'faker', '1.2.0'
gem 'bootstrap-sass'
gem 'devise', '~> 3.0.0'
gem "rack-timeout"
# To use ActiveModel has_secure_password
gem 'bcrypt-ruby', '~> 3.0.0'
#Para poder tener attr_accessible en Rails 4
gem 'protected_attributes'
# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
gem 'turbolinks'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 1.2'
gem 'actionpack-page_caching'