-
Notifications
You must be signed in to change notification settings - Fork 17
/
Gemfile
86 lines (81 loc) · 3.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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
source 'https://rubygems.org'
gem 'actionpack-action_caching' # Fue removido del core en 4.0
gem 'activerecord-session_store' # Pasa los request con POST a traves de la base (para request muy largos)
gem 'ancestry', git: 'https://github.com/calonsot/ancestry.git', :ref => 'bfadb2c' # lee los ancestros en modo de arbol
gem 'caxlsx'#, git: 'https://github.com/randym/axlsx.git', ref: 'c8ac844'
gem 'caxlsx_rails' # Gema para exportar en excel
gem 'bootstrap', '~> 4.5.0'
gem 'carrierwave' # Form file upload
gem 'cocoon' # Anida las formas de diferentes o del mismo modelo
gem 'coffee-rails', '~> 4.2'
gem 'composite_primary_keys' # Multiples llaves primarias
gem 'daemons', '1.0.10' # para hacer ejecutables bash
gem 'delayed_job'
gem 'delayed_job_mongoid'
gem 'delayed-web'
gem 'elasticsearch-model'
gem 'elasticsearch-rails'
gem 'devise', '>= 4.7.1'
gem 'exifr'
gem 'font-awesome-rails'
gem 'fontello_rails_converter', git: 'https://github.com/railslove/fontello_rails_converter.git'
gem 'formtastic'
gem 'haml'
gem 'htmlentities'
gem 'i18n-js'
gem 'jbuilder', '~> 2.5'
gem 'jquery-rails'
gem 'jquery-ui-rails'
gem 'levenshtein-ffi', :require => 'levenshtein'
gem 'mail'
gem 'mime-types'
gem 'mini_racer', git: 'https://github.com/rubyjs/mini_racer', branch: 'refs/pull/186/head'
gem 'mysql2'
gem 'nokogiri', '>= 1.10.8' # Hacer un parse con xml
gem 'pg'
gem 'puma', '>= 3.12.4' # Use Puma as the app server
gem 'rack-contrib'
gem 'rails', '5.1.6.2'
gem 'railties'
gem 'rake', '>= 12.3.3'
gem 'recaptcha', :require => 'recaptcha/rails' # Con el api de google
gem 'rest-client', :require => 'rest_client'
gem 'rinku', :require => 'rails_rinku' # extiende el metodo auto_link
gem 'roo', :require => 'roo' # Solo lectura excel, open office, google docs
gem 'rubyXL', :require => 'rubyXL' # Crea archivos xlsx, con formato
gem 'rubyzip', :require => 'zip'
gem 'sass-rails', '~> 5.0'
gem 'savon' # Para consumir webservices con SOAP y WSDL
gem 'seed_dump' # Extrae las tuplas de un modelo o de toda la base
gem 'simple_form', '>= 5.0.0'
gem 'soulmate', :require => 'soulmate/server'
gem 'turbolinks', '~> 5' # Hace mas rapidos los links
gem 'trollop'
gem 'uglifier'
gem 'vinted-blurrily', :require => 'blurrily/server.rb' # Forza a blurrily a usar rails mayor al 4
gem 'wash_out'
gem 'whenever', :require => false
gem 'wicked_pdf'
gem 'wkhtmltopdf-binary', '0.12.4' # Actualizando la version truena (TODO)
gem 'zip-zip' # Needed by axlsx
group :doc do
# bundle exec rake doc:rails generates the API under doc/api.
gem 'sdoc', require: false
end
group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
# Adds support for Capybara system testing and selenium driver
gem 'capybara', '~> 2.13'
gem 'selenium-webdriver'
# Access an IRB console on exception pages or by using <%= console %> anywhere in the code.
gem 'web-console', '>= 3.3.0'
gem 'listen', '>= 3.0.5', '< 3.2'
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
end
git_source(:github) do |repo_name|
repo_name = "#{repo_name}/#{repo_name}" unless repo_name.include?("/")
"https://github.com/#{repo_name}.git"
end