mirror of
https://github.com/ONLYOFFICE/document-server-integration.git
synced 2026-02-10 18:05:10 +08:00
53 lines
1.7 KiB
Ruby
53 lines
1.7 KiB
Ruby
source 'https://rubygems.org'
|
|
|
|
gem 'mimemagic', github: 'mimemagicrb/mimemagic', ref: '01f92d86d15d85cfd0f20dabd025dcbd36a8a60f'
|
|
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
|
|
gem 'rails', '6.1.4.1'
|
|
# Use sqlite3 as the database for Active Record
|
|
gem 'sqlite3', '1.4.2'
|
|
# Use SCSS for stylesheets
|
|
gem 'sass-rails', '~> 6.0'
|
|
# Use Uglifier as compressor for JavaScript assets
|
|
gem 'uglifier', '>= 4.2.0'
|
|
# Use CoffeeScript for .coffee assets and views
|
|
gem 'coffee-rails', '~> 5.0.0'
|
|
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
|
|
# gem 'therubyracer', platforms: :ruby
|
|
|
|
# Use jquery as the JavaScript library
|
|
gem 'jquery-rails'
|
|
# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
|
|
gem 'turbolinks'
|
|
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
|
|
gem 'jbuilder', '~> 2.9.1'
|
|
# bundle exec rake doc:rails generates the API under doc/api.
|
|
gem 'sdoc', '~> 0.4.0', group: :doc
|
|
|
|
# Use ActiveModel has_secure_password
|
|
# gem 'bcrypt', '~> 3.1.7'
|
|
|
|
# Use Unicorn as the app server
|
|
# gem 'unicorn'
|
|
|
|
# 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'
|
|
|
|
# Access an IRB console on exception pages or by using <%= console %> in views
|
|
gem 'web-console', '~> 2.0'
|
|
end
|
|
|
|
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
|
|
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
|
|
|
|
gem 'uuid'
|
|
|
|
gem 'rack-cors'
|
|
|
|
gem 'webrick'
|
|
|
|
# A ruby implementation of the RFC 7519 OAuth JSON Web Token (JWT) standard.
|
|
gem 'jwt', '~> 2.4.1' |