-
Notifications
You must be signed in to change notification settings - Fork 4
/
cobratest.gemspec
36 lines (32 loc) · 1.64 KB
/
cobratest.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
Gem::Specification.new do |spec|
spec.name = 'cobratest'
spec.version = '0.1.4'
spec.authors = ['Stephan Hagemann']
spec.email = ['[email protected]']
spec.summary = %q{A test selector for your component-based Rails application}
spec.description = %q{A test selector that suggests the tests based on the recent changes of your application. Makes use of #cbra dependencies to infer which parts of the application are definitely unaffected and can thus be omitted from the current test run.}
spec.homepage = 'https://github.com/shageman/cobratest'
spec.license = 'MIT'
spec.files = %w(
bin/cobratest
cobratest.gemspec
Gemfile
lib/cobratest/affected_component_finder.rb
lib/cobratest/gemfile_scraper.rb
lib/cobratest/tests_to_run_selector.rb
lib/cobratest/transitive_affected_component_finder.rb
lib/cobratest.rb
LICENSE
Rakefile
README.md
)
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ['lib']
spec.add_dependency 'bundler', '>= 1.13'
spec.add_development_dependency 'rake', '~> 12.0'
spec.add_development_dependency 'rspec', '~> 3.5'
end