Sha256: 924c328bbe20d822a51e222f37f6e9a42dfe296c606864fe2c85c721603e07e4
Contents?: true
Size: 1.73 KB
Versions: 2
Compression:
Stored size: 1.73 KB
Contents
# frozen_string_literal: true lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'procreate/swatches/version' Gem::Specification.new do |spec| spec.name = 'procreate-swatches' spec.version = Procreate::Swatches::VERSION spec.authors = ['Florinel Gorgan'] spec.email = ['florin@floringorgan.com'] spec.summary = 'A gem to interact with Procreate .swatches files.' spec.description = 'A gem to interact with Procreate .swatches files.' spec.homepage = 'https://github.com/laurentzziu/procreate-swatches' spec.license = 'MIT' # 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. spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) } end spec.bindir = 'exe' spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ['lib'] spec.required_ruby_version = '~> 2.4' spec.add_dependency 'callable_class', '~> 0.1.1' spec.add_dependency 'chroma' spec.add_dependency 'rubyzip', '>= 1.0.0' spec.add_development_dependency 'activesupport' spec.add_development_dependency 'bundler', '~> 2.0' spec.add_development_dependency 'pry' spec.add_development_dependency 'rake', '~> 13.0' spec.add_development_dependency 'rspec', '~> 3.0' spec.add_development_dependency 'rubocop' spec.add_development_dependency 'rubocop-performance' spec.add_development_dependency 'rubocop-rspec' spec.add_development_dependency 'simplecov' spec.add_development_dependency 'simplecov-console' end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
procreate-swatches-0.1.4 | procreate-swatches.gemspec |
procreate-swatches-0.1.3 | procreate-swatches.gemspec |