Sha256: af686d1d0725caa92049a0d03321ae6952a130d17c458c3b6c55780863c936b4
Contents?: true
Size: 1.44 KB
Versions: 1
Compression:
Stored size: 1.44 KB
Contents
# frozen_string_literal: true require_relative 'lib/solidus_catalog_mode/version' Gem::Specification.new do |spec| spec.name = 'solidus_catalog_mode' spec.version = SolidusCatalogMode::VERSION spec.authors = ['Antonio Facciolo'] spec.email = 'afdev82@gmail.com' spec.summary = 'Allow to set products to not for online sale' spec.description = 'Allow to set products only to show, but not for online sale (catalog mode)' spec.homepage = 'https://github.com/afdev82/solidus_catalog_mode' spec.license = 'BSD-3-Clause' spec.metadata['homepage_uri'] = spec.homepage spec.metadata['source_code_uri'] = 'https://github.com/afdev82/solidus_catalog_mode' spec.metadata['changelog_uri'] = 'https://github.com/afdev82/solidus_catalog_mode/releases' spec.required_ruby_version = Gem::Requirement.new('>= 2.5.0') # Specify which files should be added to the gem when it is released. # The `git ls-files -z` loads the files in the RubyGem that have been added into git. files = Dir.chdir(__dir__) { `git ls-files -z`.split("\x0") } spec.files = files.grep_v(%r{^(test|spec|features)/}) spec.test_files = files.grep(%r{^(test|spec|features)/}) spec.bindir = "exe" spec.executables = files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ["lib"] spec.add_dependency 'solidus_core', ['>= 2.0.0', '< 3'] spec.add_dependency 'solidus_support', '~> 0.5' spec.add_development_dependency 'solidus_dev_support', '~> 2.1' end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
solidus_catalog_mode-0.6.0 | solidus_catalog_mode.gemspec |