Sha256: 337d3146a526878c0fb9197e1d8fae61b2dab47af1c7af5d8ef4499fc89746ae
Contents?: true
Size: 1.28 KB
Versions: 7
Compression:
Stored size: 1.28 KB
Contents
require_relative 'lib/rbnotes/version' Gem::Specification.new do |spec| spec.name = "rbnotes" spec.version = Rbnotes::VERSION spec.authors = ["mnbi"] spec.email = ["mnbi@users.noreply.github.com"] spec.summary = %q{A simple utility to write a note.} spec.description = %q{Rbnotes allows you to write a note into a single repository.} spec.homepage = "https://github.com/mnbi/rbnotes" spec.license = "MIT" spec.required_ruby_version = Gem::Requirement.new(">= 2.7.0") spec.metadata["homepage_uri"] = spec.homepage spec.metadata["source_code_uri"] = "https://github.com/mnbi/rbnotes" spec.metadata["changelog_uri"] = "https://github.com/mnbi/rbnotes/blob/main/CHANGELOG.md" # 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.add_dependency "textrepo", "~> 0.5.8" spec.add_dependency "unicode-display_width", "~> 1.7" end
Version data entries
7 entries across 7 versions & 1 rubygems