yegor256/sixnines

View on GitHub
Gemfile

Summary

Maintainability
Test Coverage
# frozen_string_literal: true

# Copyright (c) 2017-2024 Yegor Bugayenko
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the 'Software'), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in all
# copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.

source 'https://rubygems.org'

gem 'actionview', '7.0.3'
gem 'activesupport', '7.0.3'
gem 'aws-sdk-dynamodb', '1.75.0'
gem 'backtrace', '0.3.0'
gem 'concurrent-ruby', '1.1.10', require: 'concurrent'
gem 'futex', '0.8.6'
gem 'glogin', '0.13.0'
gem 'haml', '5.2.2'
gem 'mail', '2.7.1'
gem 'nokogiri', '1.13.10'
gem 'rack-ssl', '1.4.1'
gem 'rmagick', '4.2.5'
gem 'rss', '0.3.0'
gem 'sass', '3.7.4'
gem 'sentry-raven', '3.1.2'
gem 'sinatra', '3.0.4'
gem 'sinatra-contrib', '3.0.4'
gem 'stripe', '6.5.0'
gem 'timeout-extensions', '0.1.1'
gem 'twitter', '7.0.0'
gem 'webrick', '1.8.1'
gem 'xml-sitemap', '1.3.3'

group :test, :development do
  gem 'rack-test', '2.0.2', require: false
  gem 'rake', '13.0.6', require: false
  gem 'rerun', '0.13.1', require: false
  gem 'rubocop', '1.31.1', require: false
  gem 'rubocop-rspec', '2.11.1', require: false
  gem 'simplecov', '0.22.0', require: false
  gem 'test-unit', '3.5.3', require: false
  gem 'webmock', '3.14.0', require: false
end