mirror of
https://github.com/publiclab/mapknitter.git
synced 2025-12-05 16:00:00 +01:00
Bumps [puma](https://github.com/puma/puma) from 5.6.4 to 5.6.5. - [Release notes](https://github.com/puma/puma/releases) - [Changelog](https://github.com/puma/puma/blob/master/History.md) - [Commits](https://github.com/puma/puma/compare/v5.6.4...v5.6.5) --- updated-dependencies: - dependency-name: puma dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
101 lines
2.2 KiB
Ruby
101 lines
2.2 KiB
Ruby
source 'https://rubygems.org'
|
|
|
|
ruby '2.7.6'
|
|
gem 'rails', '~> 5.2.8'
|
|
gem 'rake', '~> 13.0.1'
|
|
gem 'tzinfo-data'
|
|
gem 'skylight', '~> 5.3.3'
|
|
gem 'sentry-ruby'
|
|
gem 'sentry-rails'
|
|
|
|
gem 'will_paginate', '3.3.1'
|
|
gem 'will_paginate-bootstrap4', '~> 0.2.2'
|
|
gem 'friendly_id'
|
|
gem 'popper_js', '~> 2.11'
|
|
gem 'paper_trail'
|
|
|
|
# dependencies
|
|
group :dependencies do
|
|
gem 'mysql2', '< 0.6'
|
|
gem 'image_science', '1.3.1'
|
|
gem 'recaptcha', '~> 5.10.0', require: 'recaptcha/rails'
|
|
gem 'oa-openid', '0.3.2'
|
|
gem 'ruby-openid', '~>2.9'
|
|
gem 'open_id_authentication'
|
|
gem 'RubyInline', '~> 3.12.6'
|
|
gem 'paperclip', '~> 6.1.0'
|
|
gem 'bootsnap', '~> 1.13.0'
|
|
gem 'turbolinks', '~> 5'
|
|
gem 'mini_magick', '~> 4.8'
|
|
gem 'puma', '~> 5.6.5'
|
|
|
|
# if you use amazon s3 for warpable image storage
|
|
gem 'aws-sdk-s3', '~> 1'
|
|
|
|
# for rake image migration tasks
|
|
# gem 'right_aws'
|
|
gem 'right_aws_api', '~> 0.3.5'
|
|
|
|
# compiling markdown to html
|
|
gem 'rdiscount', '2.2.0.2'
|
|
|
|
# asset pipelining
|
|
gem 'bootstrap-sass'
|
|
gem 'sassc-rails'
|
|
gem 'jquery-rails'
|
|
gem 'sprockets', '3.7.2'
|
|
gem 'sprockets-rails'
|
|
gem 'sass', require: 'sass'
|
|
gem 'autoprefixer-rails', '~> 10.4.7'
|
|
gem 'terser', '~> 1.1.12'
|
|
|
|
end
|
|
|
|
group :test do
|
|
gem 'ruby-prof'
|
|
gem 'rails-perftest'
|
|
gem 'rails-controller-testing'
|
|
gem 'simplecov', require: false
|
|
gem 'codecov', require: false
|
|
gem 'minitest'
|
|
gem 'minitest-reporters'
|
|
# for creating sessions on capybara
|
|
gem 'rack_session_access'
|
|
end
|
|
|
|
group :development, :test do
|
|
gem 'capybara'
|
|
# see https://github.com/SeleniumHQ/selenium/issues/5248
|
|
# gem 'webdrivers'
|
|
gem 'selenium-webdriver'
|
|
gem 'byebug', '~> 11.1.3', platforms: [:mri, :mingw, :x64_mingw]
|
|
gem 'faker', '~> 2.22.0'
|
|
gem 'pry-rails', '~> 0.3.9'
|
|
gem 'action-cable-testing'
|
|
gem 'rubocop', require: false
|
|
gem 'rubocop-performance'
|
|
gem 'rubocop-rails', require: false
|
|
gem 'rubocop-shopify', require: false
|
|
end
|
|
|
|
group :development do
|
|
gem 'jshintrb', '~> 0.3.0'
|
|
gem 'mini_racer', platforms: :ruby
|
|
gem 'listen', '~> 3.7.1'
|
|
gem 'spring'
|
|
gem 'spring-watcher-listen', '~> 2.0.0'
|
|
gem 'web-console', '~> 3.3'
|
|
end
|
|
|
|
group :sqlite do
|
|
# if you decide to use sqlite3 as the database
|
|
gem 'sqlite3'
|
|
end
|
|
|
|
group :passenger do
|
|
# passenger server
|
|
gem 'passenger'
|
|
end
|
|
|
|
gem 'httparty'
|