Sha256: 71fea4f02e5e80faa37867bba6e1090da928dfab4bd4b099a464a7a8caddd8a9

Contents?: true

Size: 989 Bytes

Versions: 5

Compression:

Stored size: 989 Bytes

Contents

$:.push File.expand_path("../lib", __FILE__)
require "gemika/version"

Gem::Specification.new do |s|
  s.name = 'gemika'
  s.version = Gemika::VERSION
  s.authors = ["Henning Koch"]
  s.email = 'henning.koch@makandra.de'
  s.homepage = 'https://github.com/makandra/gemika'
  s.summary = 'Helpers for testing Ruby gems'
  s.description = s.summary
  s.license = 'MIT'
  s.metadata = {
    'source_code_uri' => s.homepage,
    'bug_tracker_uri' => 'https://github.com/makandra/gemika/issues',
    'changelog_uri' => 'https://github.com/makandra/gemika/blob/master/CHANGELOG.md',
    'rubygems_mfa_required' => 'true',
  }

  s.files         = `git ls-files`.split("\n").reject { |path| !File.exist?(path) || File.lstat(path).symlink? }
  s.test_files    = `git ls-files -- {test,spec,features}/*`.split("\n").reject { |path| !File.exist?(path) || File.lstat(path).symlink? }
  s.executables   = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
  s.require_paths = ["lib"]
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
gemika-0.8.4 gemika.gemspec
gemika-0.8.3 gemika.gemspec
gemika-0.8.2 gemika.gemspec
gemika-0.8.1 gemika.gemspec
gemika-0.8.0 gemika.gemspec