Sha256: 7faa8d89fa3e58e42b88f359cfc66ef002c0d049ee38c5b93b286bc266349037
Contents?: true
Size: 1.54 KB
Versions: 3
Compression:
Stored size: 1.54 KB
Contents
lib = File.expand_path('lib', __dir__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'geordi/version' Gem::Specification.new do |spec| spec.name = 'geordi' spec.version = Geordi::VERSION spec.required_ruby_version = '>= 2.3.0' spec.authors = ['Henning Koch'] spec.email = ['henning.koch@makandra.de'] spec.summary = 'Collection of command line tools we use in our daily work with Ruby, Rails and Linux at makandra.' spec.description = spec.summary spec.homepage = 'https://makandra.com' spec.license = 'MIT' spec.metadata = { 'source_code_uri' => 'https://github.com/makandra/geordi', 'bug_tracker_uri' => 'https://github.com/makandra/geordi/issues', 'changelog_uri' => 'https://github.com/makandra/geordi/blob/master/CHANGELOG.md', 'rubygems_mfa_required' => 'true', } # 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_runtime_dependency 'thor', '~> 1' # Development dependencies are defined in the Gemfile (therefore no `spec.add_development_dependency` directives) spec.post_install_message = <<-ATTENTION Support for sequential running of integration tests tagged with @solo has been dropped. ATTENTION end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
geordi-9.5.0 | geordi.gemspec |
geordi-9.4.1 | geordi.gemspec |
geordi-9.4.0 | geordi.gemspec |