Sha256: c48c4adf77ef9b11e92df2184e5b7a02b38049b170658dfcb800ed0a84764e78
Contents?: true
Size: 927 Bytes
Versions: 1
Compression:
Stored size: 927 Bytes
Contents
# frozen_string_literal: true lib = File.expand_path('lib', __dir__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) config = File.expand_path('config', __dir__) $LOAD_PATH.unshift(config) unless $LOAD_PATH.include?(config) Gem::Specification.new do |spec| spec.name = 'spell_craft' spec.version = '0.1.0' spec.summary = 'Yet another code generator to make you type less stuff' spec.description = 'Yet another code generator to make you type less stuff' spec.authors = ['Cherry Ramatis'] spec.homepage = 'https://github.com/cherryramatisdev/spell_craft.git' spec.license = 'MIT' spec.required_ruby_version = '>= 3.2.0' spec.require_paths = ['lib'] spec.files = Dir['LICENSE', 'README.md', 'spell_craft.gemspec', 'main.rb', 'config/**/*', 'lib/**/*'] spec.add_dependency 'sorbet-runtime', '~> 0.5.11026' spec.metadata['rubygems_mfa_required'] = 'true' end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
spell_craft-0.1.0 | spell_craft.gemspec |