Sha256: 218e67354cbd10227f4c5b1f9fd564f004999bf23886dd24b19979aa1e7336db

Contents?: true

Size: 1.32 KB

Versions: 15

Compression:

Stored size: 1.32 KB

Contents

# frozen_string_literal: true

require_relative "lib/baran/version"

Gem::Specification.new do |spec|
  spec.name = "baran"
  spec.version = Baran::VERSION
  spec.authors = ["Moeki Kawakami"]
  spec.email = ["me@moeki.dev"]

  spec.summary = "Text Splitter for Large Language Model Datasets"
  spec.description = "Text Splitter for Large Language Model Datasets."
  spec.homepage = "https://github.com/moekidev/baran"
  spec.license = "MIT"
  spec.required_ruby_version = ">= 2.6.0"

  spec.metadata["homepage_uri"] = spec.homepage
  spec.metadata["source_code_uri"] = "https://github.com/moekidev/baran"

  # 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(__dir__) do
    `git ls-files -z`.split("\x0").reject do |f|
      (File.expand_path(f) == __FILE__) || f.match(%r{\A(?:(?:bin|test|spec|features)/|\.(?:git|circleci)|appveyor)})
    end
  end
  spec.bindir = "exe"
  spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
  spec.require_paths = ["lib"]

  # Uncomment to register a new dependency of your gem
  # spec.add_dependency "example-gem", "~> 1.0"

  # 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

15 entries across 15 versions & 1 rubygems

Version Path
baran-0.2.1 baran.gemspec
baran-0.2.0 baran.gemspec
baran-0.1.12 baran.gemspec
baran-0.1.11 baran.gemspec
baran-0.1.10 baran.gemspec
baran-0.1.9 baran.gemspec
baran-0.1.8 baran.gemspec
baran-0.1.7 baran.gemspec
baran-0.1.6 baran.gemspec
baran-0.1.5 baran.gemspec
baran-0.1.4 baran.gemspec
baran-0.1.3 baran.gemspec
baran-0.1.2 baran.gemspec
baran-0.1.1 baran.gemspec
baran-0.1.0 baran.gemspec