Sha256: e90ac88a49b86a5950042da1bb29fa8ad1b53fee80ed0688e1c9c249b31066c1

Contents?: true

Size: 1.12 KB

Versions: 5

Compression:

Stored size: 1.12 KB

Contents

# coding: utf-8

lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'test_diff/version'

Gem::Specification.new do |spec|
  spec.name          = 'test_diff'
  spec.version       = TestDiff::VERSION
  spec.authors       = ['Grant Speelman']
  spec.email         = ['grantspeelman@gmail.com']

  spec.summary       = 'Gem that attempts to find the tests that are required to run for the changes you have made.'
  spec.description   = 'Gem that attempts to find the tests that are required to run for the changes you have made.'
  spec.homepage      = 'https://github.com/grantspeelman/test_diff'
  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_dependency 'thor'
  spec.add_dependency 'git'

  spec.add_development_dependency 'minitest', '>= 0.8.0'
  spec.add_development_dependency 'bundler', '~> 1.6'
  spec.add_development_dependency 'rake', '~> 10.0'
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
test_diff-0.6.0 test_diff.gemspec
test_diff-0.5.0 test_diff.gemspec
test_diff-0.4.2 test_diff.gemspec
test_diff-0.4.1 test_diff.gemspec
test_diff-0.4.0 test_diff.gemspec