Sha256: 25bf7579c15a2bfab0f20d7f3f10588cfb64eeed7d940a0965658b8514866857
Contents?: true
Size: 975 Bytes
Versions: 3
Compression:
Stored size: 975 Bytes
Contents
# frozen_string_literal: true source "https://rubygems.org" ruby RUBY_VERSION # Inside the development app, the relative require has to be one level up, as # the Gemfile is copied to the development_app folder (almost) as is. base_path = "" base_path = "../" if File.basename(__dir__) == "development_app" require_relative "#{base_path}lib/decidim/participatory_documents/version" DECIDIM_VERSION = Decidim::ParticipatoryDocuments::DECIDIM_VERSION gem "decidim", DECIDIM_VERSION gem "decidim-participatory_documents", path: "." gem "bootsnap", "~> 1.7" gem "faker", "~> 2.14" gem "rspec", "~> 3.0" group :development, :test do gem "byebug", "~> 11.0", platform: :mri gem "decidim-dev", DECIDIM_VERSION end group :development do gem "letter_opener_web", "~> 1.3" gem "listen", "~> 3.1" gem "rubocop-faker", "~> 1.1" gem "spring", "~> 2.0" gem "spring-watcher-listen", "~> 2.0" gem "web-console" end group :test do gem "codecov", require: false end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
decidim-participatory_documents-0.2.2 | Gemfile |
decidim-participatory_documents-0.2.1 | Gemfile |
decidim-participatory_documents-0.2.0 | Gemfile |