spectracer 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
metadata ADDED
@@ -0,0 +1,86 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: spectracer
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.0.0
5
+ platform: ruby
6
+ authors:
7
+ - Mitch Smith
8
+ bindir: bin
9
+ cert_chain: []
10
+ date: 1980-01-02 00:00:00.000000000 Z
11
+ dependencies:
12
+ - !ruby/object:Gem::Dependency
13
+ name: git
14
+ requirement: !ruby/object:Gem::Requirement
15
+ requirements:
16
+ - - "~>"
17
+ - !ruby/object:Gem::Version
18
+ version: '2.0'
19
+ type: :runtime
20
+ prerelease: false
21
+ version_requirements: !ruby/object:Gem::Requirement
22
+ requirements:
23
+ - - "~>"
24
+ - !ruby/object:Gem::Version
25
+ version: '2.0'
26
+ description: "Spectracer traces RSpec and Minitest dependencies to determine which
27
+ specs \nto run based on git changes. It builds a dependency map during test execution,\nthen
28
+ uses this data to run only the tests affected by your changes.\n"
29
+ email:
30
+ - mitchpsmith1998@gmail.com
31
+ executables: []
32
+ extensions: []
33
+ extra_rdoc_files: []
34
+ files:
35
+ - AGENTS.md
36
+ - CHANGELOG.md
37
+ - LICENSE.txt
38
+ - README.md
39
+ - lib/spectacle.default.yml
40
+ - lib/spectracer.rb
41
+ - lib/spectracer/core/paths.rb
42
+ - lib/spectracer/core/spec_selector.rb
43
+ - lib/spectracer/integrations/minitest.rb
44
+ - lib/spectracer/integrations/railtie.rb
45
+ - lib/spectracer/integrations/rspec.rb
46
+ - lib/spectracer/io/command_runner.rb
47
+ - lib/spectracer/io/config_loader.rb
48
+ - lib/spectracer/io/dependency_store.rb
49
+ - lib/spectracer/io/git_adapter.rb
50
+ - lib/spectracer/logger.rb
51
+ - lib/spectracer/orchestrators/dependency_collector.rb
52
+ - lib/spectracer/orchestrators/dependency_tracer.rb
53
+ - lib/spectracer/orchestrators/spec_run_determiner.rb
54
+ - lib/spectracer/providers/git_changed_files.rb
55
+ - lib/spectracer/providers/repository.rb
56
+ - lib/spectracer/tasks/spectacle.rake
57
+ - lib/spectracer/version.rb
58
+ - sig/spectracer.rbs
59
+ homepage: https://github.com/mitchbne/spectracer
60
+ licenses:
61
+ - MIT
62
+ metadata:
63
+ allowed_push_host: https://rubygems.org
64
+ homepage_uri: https://github.com/mitchbne/spectracer
65
+ source_code_uri: https://github.com/mitchbne/spectracer
66
+ changelog_uri: https://github.com/mitchbne/spectracer/blob/main/CHANGELOG.md
67
+ documentation_uri: https://github.com/mitchbne/spectracer#readme
68
+ rubygems_mfa_required: 'true'
69
+ rdoc_options: []
70
+ require_paths:
71
+ - lib
72
+ required_ruby_version: !ruby/object:Gem::Requirement
73
+ requirements:
74
+ - - ">="
75
+ - !ruby/object:Gem::Version
76
+ version: 3.0.0
77
+ required_rubygems_version: !ruby/object:Gem::Requirement
78
+ requirements:
79
+ - - ">="
80
+ - !ruby/object:Gem::Version
81
+ version: '0'
82
+ requirements: []
83
+ rubygems_version: 3.7.2
84
+ specification_version: 4
85
+ summary: Intelligent test selection based on code changes
86
+ test_files: []