|
@@ -1,7 +1,7 @@
|
|
|
|
|
+# rubocop:disable Bundler/OrderedGems
|
|
|
# frozen_string_literal: true
|
|
# frozen_string_literal: true
|
|
|
source 'https://rubygems.org'
|
|
source 'https://rubygems.org'
|
|
|
|
|
|
|
|
-
|
|
|
|
|
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
|
|
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
|
|
|
gem 'rails', '4.2.4'
|
|
gem 'rails', '4.2.4'
|
|
|
# Use PostgreSQL as the database for Active Record
|
|
# Use PostgreSQL as the database for Active Record
|
|
@@ -17,7 +17,6 @@ gem 'cancan'
|
|
|
# Activity user logs / auditabled
|
|
# Activity user logs / auditabled
|
|
|
gem 'audited-activerecord', '~> 4.0'
|
|
gem 'audited-activerecord', '~> 4.0'
|
|
|
|
|
|
|
|
-
|
|
|
|
|
# Use SCSS for stylesheets
|
|
# Use SCSS for stylesheets
|
|
|
gem 'sass-rails', '~> 5.0'
|
|
gem 'sass-rails', '~> 5.0'
|
|
|
# Use Uglifier as compressor for JavaScript assets
|
|
# Use Uglifier as compressor for JavaScript assets
|
|
@@ -43,7 +42,7 @@ gem 'nokogiri'
|
|
|
|
|
|
|
|
### javascripts y css
|
|
### javascripts y css
|
|
|
# Use jquery as the JavaScript library
|
|
# Use jquery as the JavaScript library
|
|
|
-gem 'sprockets-rails', :require => 'sprockets/railtie'
|
|
|
|
|
|
|
+gem 'sprockets-rails', require: 'sprockets/railtie'
|
|
|
gem 'jquery-rails'
|
|
gem 'jquery-rails'
|
|
|
gem 'jquery-ui-rails'
|
|
gem 'jquery-ui-rails'
|
|
|
gem 'bootstrap-sass'
|
|
gem 'bootstrap-sass'
|
|
@@ -76,6 +75,8 @@ gem 'will_paginate'
|
|
|
gem "font-awesome-rails"
|
|
gem "font-awesome-rails"
|
|
|
gem 'carrierwave', '>= 1.0.0.rc', '< 2.0'
|
|
gem 'carrierwave', '>= 1.0.0.rc', '< 2.0'
|
|
|
gem 'mini_magick'
|
|
gem 'mini_magick'
|
|
|
|
|
+gem 'pdfjs_viewer-rails'
|
|
|
|
|
+
|
|
|
# gem 'ajax-datatables-rails', git: 'git://github.com/antillas21/ajax-datatables-rails.git', branch: 'master'
|
|
# gem 'ajax-datatables-rails', git: 'git://github.com/antillas21/ajax-datatables-rails.git', branch: 'master'
|
|
|
# gem 'amcharts.rb'
|
|
# gem 'amcharts.rb'
|
|
|
# Use ActiveModel has_secure_password
|
|
# Use ActiveModel has_secure_password
|
|
@@ -101,9 +102,8 @@ end
|
|
|
group :development do
|
|
group :development do
|
|
|
# Access an IRB console on exception pages or by using <%= console %> in views
|
|
# Access an IRB console on exception pages or by using <%= console %> in views
|
|
|
gem 'web-console', '~> 2.0'
|
|
gem 'web-console', '~> 2.0'
|
|
|
-
|
|
|
|
|
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
|
|
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
|
|
|
gem 'spring'
|
|
gem 'spring'
|
|
|
gem 'pry-rails'
|
|
gem 'pry-rails'
|
|
|
end
|
|
end
|
|
|
-
|
|
|
|
|
|
|
+# rubocop:enable Bundler/OrderedGems
|