Sha256: ec131a4091d7f39f91368b63da78f7e5cbf1eead0ea6c15e183073e8d9b0ff75
Contents?: true
Size: 1.08 KB
Versions: 3
Compression:
Stored size: 1.08 KB
Contents
source 'https://rubygems.org' git_source(:github) { |repo| "https://github.com/#{repo}.git" } ruby '<%= MobileWorkflow::RUBY_VERSION %>' # Core Gems gem 'rails', '~> <%= MobileWorkflow::RAILS_VERSION %>' gem 'puma', '~> 5.0' gem 'sass-rails', '>= 6' gem 'turbolinks', '~> 5' # Mobile Workflow gem 'mobile_workflow', '~> <%= MobileWorkflow::VERSION %>' # Authorisation / Authentication <%- if options[:doorkeeper_oauth] %> gem 'doorkeeper' gem 'bcrypt' <%- end %> gem 'cancancan', '~> 3.1' # Admin console gem 'administrate', '~> 0.13.0' gem 'administrate-field-active_storage' gem 'administrate-field-enum' <%- if options[:s3_storage] %> # Backend storage for S3 gem "image_processing" gem 'aws-sdk-s3', '~> 1.60', '>= 1.60.1' gem 'aws-sdk-sns', '~> 1.23' <%- end %> group :development do gem 'web-console', '>= 3.3.0' gem 'listen', '>= 3.0.5', '< 3.2' end group :development, :test do gem 'sqlite3' gem 'rspec-rails', '~> 4.0.0' gem 'byebug', platforms: [:mri, :mingw, :x64_mingw] gem 'dotenv-rails' gem 'factory_bot_rails' end group :production do gem 'pg', '>= 0.18', '< 2.0' end
Version data entries
3 entries across 3 versions & 1 rubygems