darcyWeb/Gemfile
source 'https://rubygems.org' git_source(:github) do |repo_name|Prefer single-quoted strings when you don't need string interpolation or special symbols. repo_name = "#{repo_name}/#{repo_name}" unless repo_name.include?("/") "https://github.com/#{repo_name}.git"end # Bundle edge Rails instead: gem 'rails', github: 'rails/rails'gem 'rails', '~> 5.0.2'# Use sqlite3 as the database for Active Recordgem 'pg', '~> 0.18.4'# Use Puma as the app servergem 'puma', '~> 3.0'# Use SCSS for stylesheetsgem 'sass-rails', '~> 5.0'# Use Uglifier as compressor for JavaScript assetsgem 'uglifier', '>= 1.3.0'# Use CoffeeScript for .coffee assets and viewsgem 'coffee-rails', '~> 4.2'# See https://github.com/rails/execjs#readme for more supported runtimes# gem 'therubyracer', platforms: :ruby # Use jquery as the JavaScript librarygem 'jquery-rails'# Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinksgem 'turbolinks', '~> 5'# Build JSON APIs with ease. Read more: https://github.com/rails/jbuildergem 'jbuilder', '~> 2.5'# Use Redis adapter to run Action Cable in production# gem 'redis', '~> 3.0'# Use ActiveModel has_secure_password# gem 'bcrypt', '~> 3.1.7' # Use Capistrano for deployment# gem 'capistrano-rails', group: :development group :development, :test do # Call 'byebug' anywhere in the code to stop execution and get a debugger console gem 'byebug', platform: :mri gem 'capybara' gem 'poltergeist'Gems should be sorted in an alphabetical order within their section of the Gemfile. Gem `database_cleaner` should appear before `poltergeist`. gem 'database_cleaner' gem 'factory_girl_rails' gem 'rspec-rails', '~> 3.5.0'end group :development do # Access an IRB console on exception pages or by using <%= console %> anywhere in the code. gem 'listen', '~> 3.0.5' gem 'web-console', '>= 3.3.0' # 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 gem 'rails-assets-sweetalert2', '~> 5.1.1', source: 'https://rails-assets.org'gem 'sweet-alert2-rails' # Windows does not include zoneinfo files, so bundle the tzinfo-data gemgem 'active_record-acts_as'gem 'devise'Use `%i` or `%I` for an array of symbols.gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby] gem 'sweet-alert'gem 'sweet-alert-confirm' # Gem responsible for test coveragegem 'simplecov', group: :testGems should be sorted in an alphabetical order within their section of the Gemfile. Gem `coveralls` should appear before `simplecov`.gem 'coveralls', require: false gem 'rails-controller-testing' gem 'client_side_validations' # Gem responsible for test on javascriptgroup :development, :test do gem 'jasmine'end gem 'font-awesome-rails'gem 'translate_enum', require: 'translate_enum/active_record' # Gem for file attachments gem 'shrine' gem 'introjs-rails'Gems should be sorted in an alphabetical order within their section of the Gemfile. Gem `aws-sdk` should appear before `introjs-rails`.
Prefer single-quoted strings when you don't need string interpolation or special symbols.gem "aws-sdk", "~> 2.1"Gem `rails-assets-sweetalert2` requirements already given on line 56 of the Gemfile.gem 'rails-assets-sweetalert2', '~> 5.1.1', source: 'https://rails-assets.org'Gem `sweet-alert2-rails` requirements already given on line 57 of the Gemfile.gem 'sweet-alert2-rails'Gems should be sorted in an alphabetical order within their section of the Gemfile. Gem `es6-promise-rails` should appear before `sweet-alert2-rails`.gem 'es6-promise-rails'gem 'seed_dump'