Sha256: d6d6dc33325df4581925fb0864a161b329e16ad08a32f7c11c9b417839aec6aa
Contents?: true
Size: 1.66 KB
Versions: 4
Compression:
Stored size: 1.66 KB
Contents
# frozen_string_literal: true # Attempts to determine if a global gem source has ready been added by another Gemfile if @sources.global_rubygems_source == Bundler::SourceList.new.global_rubygems_source Bundler.ui.info '[Dassie] Adding global rubygems source.' source 'https://rubygems.org' else Bundler.ui.info "[Dassie] Global rubygems source already set: #{@sources.global_rubygems_source.inspect}" end git_source(:github) { |repo| "https://github.com/#{repo}.git" } gem 'bootsnap', '>= 1.1.0', require: false gem 'bootstrap', '~> 4.0' gem 'coffee-rails', '~> 4.2' gem 'dalli' gem 'devise' gem 'devise-guests', '~> 0.8' gemspec name: 'hyrax', path: ENV.fetch('HYRAX_ENGINE_PATH', '..') gem 'jbuilder', '~> 2.5' gem 'jquery-rails' gem 'pg', '~> 1.3' gem 'puma' gem 'rails', '~> 6.1' gem 'riiif', '~> 2.1' gem 'rsolr', '>= 1.0', '< 3' gem 'sass-rails', '~> 6.0' gem 'sidekiq', '~> 6.4' gem 'turbolinks', '~> 5' gem 'twitter-typeahead-rails', '0.11.1.pre.corejavascript' gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby] gem 'uglifier', '>= 1.3.0' group :development do gem 'better_errors' # add command line in browser when errors gem 'binding_of_caller' # deeper stack trace used by better errors # Access an interactive console on exception pages or by calling 'console' anywhere in the code. gem 'web-console', '>= 3.3.0' gem 'listen', '>= 3.0.5', '< 3.2' # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring gem 'spring' gem 'spring-watcher-listen', '~> 2.0.0' end group :development, :test do gem 'debug', '>= 1.0.0' gem 'pry-doc' gem 'pry-rails' gem 'pry-rescue' end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
hyrax-5.0.1 | .dassie/Gemfile |
hyrax-5.0.0 | .dassie/Gemfile |
hyrax-5.0.0.rc3 | .dassie/Gemfile |
hyrax-5.0.0.rc2 | .dassie/Gemfile |