lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 22.05-pre 83 lines 2.3 kB view raw
1source 'https://rubygems.org' 2 3ruby '>= 2.4.0', '< 2.8.0' 4gem 'bundler', '>= 1.12.0' 5 6gem 'rails', '5.2.6' 7gem 'sprockets', '~> 3.7.2' if RUBY_VERSION < '2.5' 8gem 'globalid', '~> 0.4.2' if Gem.ruby_version < Gem::Version.new('2.6.0') 9gem 'rouge', '~> 3.26.0' 10gem 'request_store', '~> 1.5.0' 11gem "mini_mime", "~> 1.0.1" 12gem "actionpack-xml_parser" 13gem 'roadie-rails', (RUBY_VERSION < '2.5' ? '~> 1.3.0' : '~> 2.2.0') 14gem 'marcel' 15gem "mail", "~> 2.7.1" 16gem 'csv', (RUBY_VERSION < '2.5' ? ['>= 3.1.1', '<= 3.1.5'] : '~> 3.1.1') 17gem 'nokogiri', (RUBY_VERSION < '2.5' ? '~> 1.10.0' : '~> 1.11.1') 18gem 'i18n', '~> 1.8.2' 19gem "rbpdf", "~> 1.20.0" 20gem 'addressable' 21gem 'rubyzip', '~> 2.3.0' 22 23# Windows does not include zoneinfo files, so bundle the tzinfo-data gem 24gem 'tzinfo-data', platforms: [:mingw, :x64_mingw, :mswin] 25 26# TOTP-based 2-factor authentication 27gem 'rotp' 28gem 'rqrcode' 29 30# Optional gem for LDAP authentication 31group :ldap do 32 gem 'net-ldap', '~> 0.17.0' 33end 34 35# Optional gem for OpenID authentication 36group :openid do 37 gem "ruby-openid", "~> 2.9.2", :require => "openid" 38 gem "rack-openid" 39end 40 41# Optional gem for exporting the gantt to a PNG file 42group :minimagick do 43 gem 'mini_magick', '~> 4.11.0' 44end 45 46# Optional Markdown support, not for JRuby 47group :markdown do 48 gem 'redcarpet', '~> 3.5.1' 49end 50 51# Include database gems for the database adapters NixOS supports 52gem "mysql2", "~> 0.5.0", :platforms => [:mri, :mingw, :x64_mingw] 53gem "pg", "~> 1.2.2", :platforms => [:mri, :mingw, :x64_mingw] 54 55group :development do 56 gem "yard" 57end 58 59group :test do 60 gem "rails-dom-testing" 61 gem 'mocha', '>= 1.4.0' 62 gem 'simplecov', '~> 0.18.5', :require => false 63 gem "ffi", platforms: [:mingw, :x64_mingw, :mswin] 64 # For running system tests 65 gem 'puma' 66 gem 'capybara', '~> 3.31.0' 67 gem "selenium-webdriver" 68 gem 'webdrivers', '~> 4.4', require: false 69 # RuboCop 70 gem 'rubocop', '~> 1.12.0' 71 gem 'rubocop-performance', '~> 1.10.1' 72 gem 'rubocop-rails', '~> 2.9.0' 73end 74 75local_gemfile = File.join(File.dirname(__FILE__), "Gemfile.local") 76if File.exists?(local_gemfile) 77 eval_gemfile local_gemfile 78end 79 80# Load plugins' Gemfiles 81Dir.glob File.expand_path("../plugins/*/{Gemfile,PluginGemfile}", __FILE__) do |file| 82 eval_gemfile file 83end