Sha256: e2c19aaa9f3b06402ddd78d009e3b2f17588fd0101be9051da089e828678a605
Contents?: true
Size: 1.41 KB
Versions: 19
Compression:
Stored size: 1.41 KB
Contents
# frozen_string_literal: true require_relative 'lib/komeda/version' Gem::Specification.new do |spec| spec.name = 'komeda' spec.version = Komeda::VERSION spec.authors = ['Yoshiki Takagi'] spec.email = ['yoshiki.tkg@gmail.com'] spec.summary = "Komeda's coffee menu data" spec.description = "Komeda's coffee menu data" spec.homepage = 'https://github.com/ytkg/komeda' spec.license = 'MIT' spec.required_ruby_version = '>= 2.6.0' spec.metadata['homepage_uri'] = spec.homepage spec.metadata['source_code_uri'] = 'https://github.com/ytkg/komeda' spec.metadata['changelog_uri'] = 'https://github.com/ytkg/komeda/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(__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 'activesupport' spec.add_dependency 'hashie' spec.add_dependency 'psych', '>= 3.1.0' # For more information and examples about making a new gem, check out our # guide at: https://bundler.io/guides/creating_gem.html spec.metadata['rubygems_mfa_required'] = 'true' end
Version data entries
19 entries across 19 versions & 1 rubygems