Sha256: 5c37f460a2e6ac6535f7821180aa7f658906cda8c79bd5a3bb2288452308ef3e
Contents?: true
Size: 1.27 KB
Versions: 2
Compression:
Stored size: 1.27 KB
Contents
# frozen_string_literal: true require_relative 'lib/decoro/version' Gem::Specification.new do |spec| spec.name = 'decoro' spec.version = Decoro::VERSION spec.authors = ['Tom de Grunt'] spec.email = ['tom@degrunt.nl'] spec.summary = 'Decorators' spec.description = 'Simple and effective decorators' spec.homepage = 'https://github.com/entdec/decoro' spec.license = 'MIT' spec.required_ruby_version = Gem::Requirement.new('>= 2.3.0') spec.metadata['homepage_uri'] = spec.homepage spec.metadata['source_code_uri'] = 'https://github.com/entdec/decoro' spec.metadata['changelog_uri'] = 'https://github.com/entdec/decoro' # 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(__dir__)) do `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) } end spec.add_development_dependency 'rubocop', '~> 0.80' spec.add_development_dependency 'solargraph', '~> 0.38' spec.add_development_dependency 'auxilium', '~> 0.2' spec.bindir = 'exe' spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ['lib'] end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
decoro-0.1.3 | decoro.gemspec |
decoro-0.1.2 | decoro.gemspec |