Sha256: c926efa67df9302f2c4d83d57b4e448869c18b624ade0f516c4b9415f0dd1d8c
Contents?: true
Size: 1.42 KB
Versions: 16
Compression:
Stored size: 1.42 KB
Contents
# frozen_string_literal: true require_relative "lib/meibo/version" Gem::Specification.new do |spec| spec.name = "meibo" spec.version = Meibo::VERSION spec.authors = ["Seiei Miyagi"] spec.email = ["hanachin@gmail.com"] spec.summary = "Meibo is a ruby library for OneRoster CSV Binding Japan Profile." spec.homepage = "https://github.com/hanachin/meibo" spec.license = "MIT" spec.required_ruby_version = ">= 2.7.0" spec.metadata["allowed_push_host"] = "https://rubygems.org/" spec.metadata["homepage_uri"] = spec.homepage spec.metadata["source_code_uri"] = "https://github.com/hanachin/meibo" spec.metadata["changelog_uri"] = "https://github.com/hanachin/meibo/blob/meibo/v#{Meibo::VERSION}/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(__dir__)) do `git ls-files -z`.split("\x0").reject do |f| (f == __FILE__) || f.match(%r{\A(?:(?:bin|test|spec|features)/|\.(?:git|travis|circleci)|appveyor)}) end end spec.bindir = "exe" spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) } spec.require_paths = ["lib"] spec.add_dependency "rubyzip" spec.add_dependency "zeitwerk" # For more information and examples about making a new gem, check out our # guide at: https://bundler.io/guides/creating_gem.html end
Version data entries
16 entries across 16 versions & 1 rubygems