Sha256: ab4ae67abaa6581dc4ce841b948660d08b79c9e25b303c17b8e88f67c23a27b5
Contents?: true
Size: 1.36 KB
Versions: 6
Compression:
Stored size: 1.36 KB
Contents
require_relative 'lib/codebreaker/version' Gem::Specification.new do |spec| spec.name = 'codebreaker_kub' spec.version = Codebreaker::VERSION spec.authors = ['katia kub'] spec.email = ['katiakub@gmail.com'] spec.summary = 'Codebreaker' spec.description = 'Codebreaker gem' spec.homepage = 'https://github.com/katiakub/gCodebreaker' spec.license = 'MIT' spec.required_ruby_version = Gem::Requirement.new('>= 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/katiakub/gCodebreaker' # 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.bindir = 'exe' spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ['lib'] spec.add_development_dependency 'fasterer', '~>0.8' spec.add_development_dependency 'i18n', '~>1.8' spec.add_development_dependency 'rspec', '~>3.9' spec.add_development_dependency 'rubocop', '~>0.87' spec.add_development_dependency 'simplecov', '~>0.18' end
Version data entries
6 entries across 6 versions & 1 rubygems