Sha256: fff4aa0329cd6e3adb82107037510689801011cda5c4e1a7ea6d967cae17a761
Contents?: true
Size: 983 Bytes
Versions: 1
Compression:
Stored size: 983 Bytes
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'defekt/version' Gem::Specification.new do |spec| spec.name = 'defekt' spec.version = Defekt::VERSION spec.authors = ['David Boot'] spec.email = ['kodnin@gmail.com'] spec.summary = 'Micro testing framework' spec.description = 'Micro testing framework in Ruby' spec.homepage = 'https://github.com/kodnin/defekt' spec.license = 'MIT' spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) } spec.bindir = 'exe' spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ['lib'] spec.add_development_dependency 'bundler', '~> 1.8' spec.add_development_dependency 'rake', '~> 10.0' spec.add_development_dependency 'minitest', '~> 5.5.1' spec.add_development_dependency 'pry', '~> 0.10.1' end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
defekt-0.0.1 | defekt.gemspec |