Gemfile 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. # rubocop:disable Bundler/OrderedGems
  2. # frozen_string_literal: true
  3. source 'https://rubygems.org'
  4. # Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
  5. gem 'rails', '4.2.4'
  6. # Use PostgreSQL as the database for Active Record
  7. gem 'pg'
  8. # Devise users auth
  9. gem 'devise'
  10. gem 'devise_security_extension'
  11. # Navegation for build the menu
  12. gem 'simple_navigation_renderers'
  13. gem 'breadcrumbs_on_rails'
  14. # Abilities for User types /roles
  15. gem 'cancan'
  16. # Activity user logs / auditabled
  17. gem 'audited-activerecord', '~> 4.0'
  18. # Use SCSS for stylesheets
  19. gem 'sass-rails', '~> 5.0'
  20. # Use Uglifier as compressor for JavaScript assets
  21. gem 'uglifier', '>= 1.3.0'
  22. # Use CoffeeScript for .coffee assets and views
  23. gem 'coffee-rails', '~> 4.1.0'
  24. # See https://github.com/rails/execjs#readme for more supported runtimes
  25. # gem 'therubyracer', platforms: :ruby
  26. ## Gemas POS
  27. gem 'paperclip'
  28. ## responders para modal
  29. gem 'responders'
  30. # Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
  31. gem 'jbuilder', '~> 2.0'
  32. # bundle exec rake doc:rails generates the API under doc/api.
  33. gem 'sdoc', '~> 0.4.0', group: :doc
  34. # Gema para modificar la forma de mostrar el error resaltado en los input de la forma
  35. gem 'nokogiri'
  36. ### javascripts y css
  37. # Use jquery as the JavaScript library
  38. gem 'sprockets-rails', require: 'sprockets/railtie'
  39. gem 'jquery-rails'
  40. gem 'jquery-ui-rails'
  41. gem 'bootstrap-sass'
  42. gem 'bootstrap-select-rails'
  43. gem "bootstrap-switch-rails"
  44. gem 'momentjs-rails', '>= 2.9.0'
  45. gem 'bootstrap3-datetimepicker-rails', '~> 4.17.37'
  46. gem 'bootbox-rails', '~>0.4'
  47. gem "select2-rails"
  48. gem 'bootstrap-multiselect-rails'
  49. gem 'twitter-typeahead-rails'
  50. gem 'simple-line-icons-rails'
  51. gem 'jquery-datatables-rails', github: 'rweng/jquery-datatables-rails' # correr rails generate jquery:datatables:install bootstrap3 , rails generate jquery:datatables:install responsive
  52. gem 'jquery-inputmask-rails', '~> 2.5', '>= 2.5.5'
  53. gem 'jquery-migrate-rails', '~> 1.2', '>= 1.2.1'
  54. gem 'jquery-slimscroll-rails', '~> 1.0', '>= 1.0.9'
  55. gem 'toastr_rails'
  56. # Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
  57. gem 'turbolinks'
  58. # Gema para usar autocompletar en inputs
  59. gem 'rails-jquery-autocomplete'
  60. gem 'font-awesome-sass', '~> 4.5.0'
  61. gem 'wicked_pdf'
  62. gem 'wkhtmltopdf-binary'
  63. gem 'twitter_bootstrap_wizard_rails'
  64. gem 'bootstrap-tagsinput-rails'
  65. gem 'acts-as-taggable-on', '~> 3.4' # then run rake acts_as_taggable_on_engine:install:migrations
  66. gem 'remotipart', '~> 1.2'
  67. gem 'will_paginate'
  68. gem "font-awesome-rails"
  69. gem 'carrierwave', '>= 1.0.0.rc', '< 2.0'
  70. gem 'mini_magick'
  71. # gem 'ajax-datatables-rails', git: 'git://github.com/antillas21/ajax-datatables-rails.git', branch: 'master'
  72. # gem 'amcharts.rb'
  73. # Use ActiveModel has_secure_password
  74. # gem 'bcrypt', '~> 3.1.7'
  75. # Use Unicorn as the app server
  76. # gem 'unicorn'
  77. # Use Capistrano for deployment
  78. # gem 'capistrano-rails', group: :development
  79. group :development, :test do
  80. # Call 'byebug' anywhere in the code to stop execution and get a debugger console
  81. gem 'byebug'
  82. # Para generar esquems de base de datos
  83. # install: sudo apt-get install graphviz -y
  84. # Osx: brew install graphviz
  85. gem 'rails-erd'
  86. gem 'overcommit'
  87. gem 'rubocop', '~> 0.46.0', require: false
  88. end
  89. group :development do
  90. # Access an IRB console on exception pages or by using <%= console %> in views
  91. gem 'web-console', '~> 2.0'
  92. # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
  93. gem 'spring'
  94. gem 'pry-rails'
  95. end
  96. # rubocop:enable Bundler/OrderedGems