Sha256: c538707b493a02647ac4be0fe3f92ff063a5ff8142f285333e3a3aeee3d3f77b
Contents?: true
Size: 1.27 KB
Versions: 1
Compression:
Stored size: 1.27 KB
Contents
# frozen_string_literal: true # require_relative 'lib/desertcart/version' Gem::Specification.new do |spec| spec.name = 'desertcart' # spec.version = Desertcart::VERSION spec.version = '1.0.0' spec.authors = ['Jozef Vaclavik'] spec.email = ['jozef@desertcart.com'] spec.summary = 'Communicate with Desertcart API' spec.description = 'Client library to talk to Desertcart API. '\ 'Get products details, proceed with checkout '\ 'and retrieve informations about your orders.' spec.homepage = 'https://developer.desertcart.com' spec.license = 'MIT' spec.required_ruby_version = '>= 3.0' spec.metadata['homepage_uri'] = spec.homepage spec.metadata['source_code_uri'] = 'https://github.com/desertcart/desertcart-ruby' spec.metadata['changelog_uri'] = 'https://github.com/desertcart/desertcart-ruby/blob/master/CHANGELOG.md' spec.files = Dir.chdir(File.expand_path(__dir__)) do `git ls-files -z`.split("\x0").reject do |f| f.match(%r{\A(?:test|spec|features)/}) end end spec.bindir = 'exe' spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) } spec.require_paths = ['lib'] spec.add_dependency 'ledger_sync', '~> 2.2.0' end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
desertcart-1.0.0 | desertcart.gemspec |