infinity_test 1.0.3 → 2.0.0.rc1
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.
- checksums.yaml +7 -0
- data/.github/workflows/ci.yml +31 -0
- data/.gitignore +3 -0
- data/.rspec +2 -2
- data/AI_INTEGRATION_IDEAS.md +203 -0
- data/Gemfile +3 -15
- data/History.markdown +82 -0
- data/{.infinity_test → INFINITY_TEST} +18 -15
- data/LICENSE.txt +2 -2
- data/README.md +627 -0
- data/Rakefile +1 -65
- data/TODO.markdown +24 -19
- data/bin/infinity_test +1 -4
- data/images/fuuu/pending.png +0 -0
- data/images/fuuu/success.png +0 -0
- data/infinity_test.gemspec +41 -189
- data/lib/infinity_test/core/auto_discover.rb +67 -0
- data/lib/infinity_test/core/base.rb +369 -0
- data/lib/infinity_test/core/callback.rb +59 -0
- data/lib/infinity_test/core/changed_file.rb +13 -0
- data/lib/infinity_test/core/command_builder.rb +48 -0
- data/lib/infinity_test/core/command_runner.rb +62 -0
- data/lib/infinity_test/core/configuration_merge.rb +37 -0
- data/lib/infinity_test/core/continuous_test_server.rb +106 -0
- data/lib/infinity_test/core/load_configuration.rb +48 -0
- data/lib/infinity_test/core/notifier.rb +59 -0
- data/lib/infinity_test/core/options.rb +134 -0
- data/lib/infinity_test/core/runner.rb +18 -0
- data/lib/infinity_test/core/version.rb +5 -0
- data/lib/infinity_test/framework/base.rb +57 -0
- data/lib/infinity_test/framework/padrino.rb +33 -0
- data/lib/infinity_test/framework/rails.rb +35 -0
- data/lib/infinity_test/framework/rubygems.rb +29 -0
- data/lib/infinity_test/framework/shared_example.rb +47 -0
- data/lib/infinity_test/observer/base.rb +40 -0
- data/lib/infinity_test/observer/filewatcher.rb +72 -0
- data/lib/infinity_test/observer/listen.rb +74 -0
- data/lib/infinity_test/observer/shared_example.rb +35 -0
- data/lib/infinity_test/old_dsl/configuration.rb +26 -0
- data/lib/infinity_test/strategy/base.rb +34 -0
- data/lib/infinity_test/strategy/rbenv.rb +32 -0
- data/lib/infinity_test/strategy/ruby_default.rb +20 -0
- data/lib/infinity_test/strategy/rvm.rb +50 -0
- data/lib/infinity_test/strategy/shared_example.rb +32 -0
- data/lib/infinity_test/test_framework/base.rb +64 -0
- data/lib/infinity_test/test_framework/rspec.rb +48 -0
- data/lib/infinity_test/test_framework/shared_example.rb +56 -0
- data/lib/infinity_test/test_framework/test_unit.rb +57 -0
- data/lib/infinity_test.rb +53 -35
- data/spec/infinity_test/core/auto_discover_spec.rb +149 -0
- data/spec/infinity_test/core/base_spec.rb +240 -0
- data/spec/infinity_test/core/callback_spec.rb +89 -0
- data/spec/infinity_test/core/changed_file_spec.rb +26 -0
- data/spec/infinity_test/core/command_builder_spec.rb +38 -0
- data/spec/infinity_test/core/configuration_merge_spec.rb +124 -0
- data/spec/infinity_test/core/continuous_test_server_spec.rb +116 -0
- data/spec/infinity_test/core/load_configuration_spec.rb +43 -0
- data/spec/infinity_test/core/notifier_spec.rb +151 -0
- data/spec/infinity_test/core/options_spec.rb +168 -0
- data/spec/infinity_test/core/runner_spec.rb +17 -0
- data/spec/infinity_test/framework/base_spec.rb +55 -0
- data/spec/infinity_test/framework/padrino_spec.rb +36 -0
- data/spec/infinity_test/framework/rails_spec.rb +36 -0
- data/spec/infinity_test/framework/rubygems_spec.rb +34 -0
- data/spec/infinity_test/observer/base_spec.rb +78 -0
- data/spec/infinity_test/observer/filewatcher_spec.rb +51 -0
- data/spec/infinity_test/observer/listen_spec.rb +50 -0
- data/spec/infinity_test/{builder_spec.rb → strategy/base_spec.rb} +1 -2
- data/spec/infinity_test/strategy/rbenv_spec.rb +53 -0
- data/spec/infinity_test/strategy/ruby_default_spec.rb +32 -0
- data/spec/infinity_test/strategy/rvm_spec.rb +69 -0
- data/spec/infinity_test/test_framework/rspec_spec.rb +119 -0
- data/spec/infinity_test/test_framework/test_unit_spec.rb +193 -0
- data/spec/spec_helper.rb +34 -119
- metadata +272 -176
- data/.rvmrc +0 -1
- data/Gemfile.lock +0 -62
- data/Readme.markdown +0 -147
- data/Tasks +0 -4
- data/VERSION.yml +0 -5
- data/buzz_images/buzz_lightyear.jpg +0 -0
- data/buzz_images/buzz_lightyear_continencia.gif +0 -0
- data/buzz_images/to_infinity_and_beyond.png +0 -0
- data/features/heuristics.feature +0 -23
- data/features/support/env.rb +0 -2
- data/images/fuuu/sucess.png +0 -0
- data/lib/infinity_test/application.rb +0 -362
- data/lib/infinity_test/application_library/rails.rb +0 -94
- data/lib/infinity_test/application_library/rubygems.rb +0 -43
- data/lib/infinity_test/binary_path.rb +0 -43
- data/lib/infinity_test/builder.rb +0 -66
- data/lib/infinity_test/command.rb +0 -58
- data/lib/infinity_test/configuration.rb +0 -277
- data/lib/infinity_test/continuous_testing.rb +0 -40
- data/lib/infinity_test/dependencies.rb +0 -80
- data/lib/infinity_test/environment.rb +0 -15
- data/lib/infinity_test/heuristics.rb +0 -36
- data/lib/infinity_test/heuristics_helper.rb +0 -9
- data/lib/infinity_test/options.rb +0 -96
- data/lib/infinity_test/runner.rb +0 -38
- data/lib/infinity_test/test_framework.rb +0 -110
- data/lib/infinity_test/test_library/bacon.rb +0 -55
- data/lib/infinity_test/test_library/cucumber.rb +0 -22
- data/lib/infinity_test/test_library/rspec.rb +0 -60
- data/lib/infinity_test/test_library/test_unit.rb +0 -52
- data/lib/infinity_test/test_unit_loader.rb +0 -5
- data/spec/factories/buzz/lib/buzz.rb +0 -0
- data/spec/factories/buzz/spec/buzz_spec.rb +0 -0
- data/spec/factories/company/Gemfile +0 -0
- data/spec/factories/company/lib/company.rb +0 -0
- data/spec/factories/company/test/company_test.rb +0 -0
- data/spec/factories/images/failure.png +0 -0
- data/spec/factories/images/pending.png +0 -0
- data/spec/factories/images/sucess.png +0 -0
- data/spec/factories/infinity_test +0 -5
- data/spec/factories/infinity_test_example +0 -7
- data/spec/factories/slinky/spec/slinky/slinky_spec.rb +0 -0
- data/spec/factories/travel/lib/travel.rb +0 -0
- data/spec/factories/travel/test/partner_test.rb +0 -0
- data/spec/factories/travel/test/travel_test.rb +0 -0
- data/spec/factories/wood/lib/wood.rb +0 -0
- data/spec/factories/wood/spec/wood_spec.rb +0 -0
- data/spec/infinity_test/application_library/rails_spec.rb +0 -140
- data/spec/infinity_test/application_library/rubygems_spec.rb +0 -52
- data/spec/infinity_test/application_spec.rb +0 -434
- data/spec/infinity_test/binary_path_spec.rb +0 -72
- data/spec/infinity_test/command_spec.rb +0 -53
- data/spec/infinity_test/configuration_spec.rb +0 -382
- data/spec/infinity_test/continuous_testing_spec.rb +0 -25
- data/spec/infinity_test/environment_spec.rb +0 -23
- data/spec/infinity_test/heuristics_helper_spec.rb +0 -15
- data/spec/infinity_test/heuristics_spec.rb +0 -127
- data/spec/infinity_test/options_spec.rb +0 -111
- data/spec/infinity_test/runner_spec.rb +0 -42
- data/spec/infinity_test/test_framework_spec.rb +0 -127
- data/spec/infinity_test/test_library/bacon_spec.rb +0 -150
- data/spec/infinity_test/test_library/cucumber_spec.rb +0 -8
- data/spec/infinity_test/test_library/rspec_spec.rb +0 -189
- data/spec/infinity_test/test_library/test_unit_spec.rb +0 -184
- data/spec/infinity_test_spec.rb +0 -40
- /data/images/faces/{sucess.png → success.png} +0 -0
- /data/images/hands/{sucess.png → success.png} +0 -0
- /data/images/mario_bros/{sucess.jpg → success.jpg} +0 -0
- /data/images/rails/{sucess.png → success.png} +0 -0
- /data/images/rubies/{sucess.png → success.png} +0 -0
- /data/images/simpson/{sucess.jpg → success.jpg} +0 -0
- /data/images/street_fighter/{sucess.jpg → success.jpg} +0 -0
- /data/images/toy_story/{sucess.png → success.png} +0 -0
metadata
CHANGED
|
@@ -1,229 +1,325 @@
|
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: infinity_test
|
|
3
|
-
version: !ruby/object:Gem::Version
|
|
4
|
-
|
|
5
|
-
version: 1.0.3
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 2.0.0.rc1
|
|
6
5
|
platform: ruby
|
|
7
|
-
authors:
|
|
6
|
+
authors:
|
|
8
7
|
- Tomas D'Stefano
|
|
9
|
-
autorequire:
|
|
10
8
|
bindir: bin
|
|
11
9
|
cert_chain: []
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
10
|
+
date: 2026-02-02 00:00:00.000000000 Z
|
|
11
|
+
dependencies:
|
|
12
|
+
- !ruby/object:Gem::Dependency
|
|
13
|
+
name: activesupport
|
|
14
|
+
requirement: !ruby/object:Gem::Requirement
|
|
15
|
+
requirements:
|
|
16
|
+
- - ">="
|
|
17
|
+
- !ruby/object:Gem::Version
|
|
18
|
+
version: '0'
|
|
19
|
+
type: :runtime
|
|
17
20
|
prerelease: false
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
requirements:
|
|
21
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
22
|
+
requirements:
|
|
21
23
|
- - ">="
|
|
22
|
-
- !ruby/object:Gem::Version
|
|
23
|
-
version:
|
|
24
|
+
- !ruby/object:Gem::Version
|
|
25
|
+
version: '0'
|
|
26
|
+
- !ruby/object:Gem::Dependency
|
|
27
|
+
name: listen
|
|
28
|
+
requirement: !ruby/object:Gem::Requirement
|
|
29
|
+
requirements:
|
|
30
|
+
- - ">="
|
|
31
|
+
- !ruby/object:Gem::Version
|
|
32
|
+
version: '0'
|
|
33
|
+
type: :runtime
|
|
34
|
+
prerelease: false
|
|
35
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
36
|
+
requirements:
|
|
37
|
+
- - ">="
|
|
38
|
+
- !ruby/object:Gem::Version
|
|
39
|
+
version: '0'
|
|
40
|
+
- !ruby/object:Gem::Dependency
|
|
41
|
+
name: filewatcher
|
|
42
|
+
requirement: !ruby/object:Gem::Requirement
|
|
43
|
+
requirements:
|
|
44
|
+
- - ">="
|
|
45
|
+
- !ruby/object:Gem::Version
|
|
46
|
+
version: '0'
|
|
47
|
+
type: :runtime
|
|
48
|
+
prerelease: false
|
|
49
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
50
|
+
requirements:
|
|
51
|
+
- - ">="
|
|
52
|
+
- !ruby/object:Gem::Version
|
|
53
|
+
version: '0'
|
|
54
|
+
- !ruby/object:Gem::Dependency
|
|
55
|
+
name: hike
|
|
56
|
+
requirement: !ruby/object:Gem::Requirement
|
|
57
|
+
requirements:
|
|
58
|
+
- - ">="
|
|
59
|
+
- !ruby/object:Gem::Version
|
|
60
|
+
version: '0'
|
|
24
61
|
type: :runtime
|
|
25
|
-
version_requirements: *id001
|
|
26
|
-
- !ruby/object:Gem::Dependency
|
|
27
|
-
name: notifiers
|
|
28
62
|
prerelease: false
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
63
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
64
|
+
requirements:
|
|
65
|
+
- - ">="
|
|
66
|
+
- !ruby/object:Gem::Version
|
|
67
|
+
version: '0'
|
|
68
|
+
- !ruby/object:Gem::Dependency
|
|
69
|
+
name: notifiers
|
|
70
|
+
requirement: !ruby/object:Gem::Requirement
|
|
71
|
+
requirements:
|
|
32
72
|
- - ">="
|
|
33
|
-
- !ruby/object:Gem::Version
|
|
34
|
-
version:
|
|
73
|
+
- !ruby/object:Gem::Version
|
|
74
|
+
version: '0'
|
|
35
75
|
type: :runtime
|
|
36
|
-
|
|
37
|
-
|
|
76
|
+
prerelease: false
|
|
77
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
78
|
+
requirements:
|
|
79
|
+
- - ">="
|
|
80
|
+
- !ruby/object:Gem::Version
|
|
81
|
+
version: '0'
|
|
82
|
+
- !ruby/object:Gem::Dependency
|
|
83
|
+
name: bundler
|
|
84
|
+
requirement: !ruby/object:Gem::Requirement
|
|
85
|
+
requirements:
|
|
86
|
+
- - ">="
|
|
87
|
+
- !ruby/object:Gem::Version
|
|
88
|
+
version: '0'
|
|
89
|
+
type: :development
|
|
90
|
+
prerelease: false
|
|
91
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
92
|
+
requirements:
|
|
93
|
+
- - ">="
|
|
94
|
+
- !ruby/object:Gem::Version
|
|
95
|
+
version: '0'
|
|
96
|
+
- !ruby/object:Gem::Dependency
|
|
97
|
+
name: rake
|
|
98
|
+
requirement: !ruby/object:Gem::Requirement
|
|
99
|
+
requirements:
|
|
100
|
+
- - ">="
|
|
101
|
+
- !ruby/object:Gem::Version
|
|
102
|
+
version: '0'
|
|
103
|
+
type: :development
|
|
104
|
+
prerelease: false
|
|
105
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
106
|
+
requirements:
|
|
107
|
+
- - ">="
|
|
108
|
+
- !ruby/object:Gem::Version
|
|
109
|
+
version: '0'
|
|
110
|
+
- !ruby/object:Gem::Dependency
|
|
38
111
|
name: rspec
|
|
112
|
+
requirement: !ruby/object:Gem::Requirement
|
|
113
|
+
requirements:
|
|
114
|
+
- - ">="
|
|
115
|
+
- !ruby/object:Gem::Version
|
|
116
|
+
version: '0'
|
|
117
|
+
type: :development
|
|
39
118
|
prerelease: false
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
119
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
120
|
+
requirements:
|
|
121
|
+
- - ">="
|
|
122
|
+
- !ruby/object:Gem::Version
|
|
123
|
+
version: '0'
|
|
124
|
+
- !ruby/object:Gem::Dependency
|
|
125
|
+
name: simplecov
|
|
126
|
+
requirement: !ruby/object:Gem::Requirement
|
|
127
|
+
requirements:
|
|
43
128
|
- - ">="
|
|
44
|
-
- !ruby/object:Gem::Version
|
|
45
|
-
version:
|
|
129
|
+
- !ruby/object:Gem::Version
|
|
130
|
+
version: '0'
|
|
46
131
|
type: :development
|
|
47
|
-
version_requirements: *id003
|
|
48
|
-
- !ruby/object:Gem::Dependency
|
|
49
|
-
name: jeweler
|
|
50
132
|
prerelease: false
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
requirements:
|
|
133
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
134
|
+
requirements:
|
|
54
135
|
- - ">="
|
|
55
|
-
- !ruby/object:Gem::Version
|
|
56
|
-
version:
|
|
136
|
+
- !ruby/object:Gem::Version
|
|
137
|
+
version: '0'
|
|
138
|
+
- !ruby/object:Gem::Dependency
|
|
139
|
+
name: pry
|
|
140
|
+
requirement: !ruby/object:Gem::Requirement
|
|
141
|
+
requirements:
|
|
142
|
+
- - ">="
|
|
143
|
+
- !ruby/object:Gem::Version
|
|
144
|
+
version: '0'
|
|
57
145
|
type: :development
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
146
|
+
prerelease: false
|
|
147
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
148
|
+
requirements:
|
|
149
|
+
- - ">="
|
|
150
|
+
- !ruby/object:Gem::Version
|
|
151
|
+
version: '0'
|
|
152
|
+
description: Infinity Test is a continuous testing library and a flexible alternative
|
|
153
|
+
to Autotest and Guard.
|
|
154
|
+
email:
|
|
155
|
+
- tomas_stefano@successoft.com
|
|
156
|
+
executables:
|
|
62
157
|
- infinity_test
|
|
63
158
|
extensions: []
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
-
|
|
67
|
-
|
|
68
|
-
- .
|
|
69
|
-
- .
|
|
70
|
-
- .rspec
|
|
71
|
-
- .rvmrc
|
|
159
|
+
extra_rdoc_files: []
|
|
160
|
+
files:
|
|
161
|
+
- ".github/workflows/ci.yml"
|
|
162
|
+
- ".gitignore"
|
|
163
|
+
- ".rspec"
|
|
164
|
+
- AI_INTEGRATION_IDEAS.md
|
|
72
165
|
- Gemfile
|
|
73
|
-
- Gemfile.lock
|
|
74
166
|
- History.markdown
|
|
167
|
+
- INFINITY_TEST
|
|
75
168
|
- LICENSE.txt
|
|
169
|
+
- README.md
|
|
76
170
|
- Rakefile
|
|
77
|
-
- Readme.markdown
|
|
78
171
|
- TODO.markdown
|
|
79
|
-
- Tasks
|
|
80
|
-
- VERSION.yml
|
|
81
172
|
- bin/infinity_test
|
|
82
|
-
- buzz_images/buzz_lightyear.jpg
|
|
83
|
-
- buzz_images/buzz_lightyear_continencia.gif
|
|
84
|
-
- buzz_images/to_infinity_and_beyond.png
|
|
85
|
-
- features/heuristics.feature
|
|
86
|
-
- features/support/env.rb
|
|
87
173
|
- images/faces/failure.png
|
|
88
174
|
- images/faces/pending.png
|
|
89
|
-
- images/faces/
|
|
175
|
+
- images/faces/success.png
|
|
90
176
|
- images/fuuu/failure.png
|
|
91
177
|
- images/fuuu/pending.png
|
|
92
|
-
- images/fuuu/
|
|
178
|
+
- images/fuuu/success.png
|
|
93
179
|
- images/hands/failure.png
|
|
94
180
|
- images/hands/pending.png
|
|
95
|
-
- images/hands/
|
|
181
|
+
- images/hands/success.png
|
|
96
182
|
- images/mario_bros/failure.jpg
|
|
97
183
|
- images/mario_bros/pending.jpg
|
|
98
|
-
- images/mario_bros/
|
|
184
|
+
- images/mario_bros/success.jpg
|
|
99
185
|
- images/rails/failure.png
|
|
100
186
|
- images/rails/pending.png
|
|
101
|
-
- images/rails/
|
|
187
|
+
- images/rails/success.png
|
|
102
188
|
- images/rubies/failure.png
|
|
103
189
|
- images/rubies/pending.png
|
|
104
|
-
- images/rubies/
|
|
190
|
+
- images/rubies/success.png
|
|
105
191
|
- images/simpson/failure.gif
|
|
106
192
|
- images/simpson/pending.jpg
|
|
107
|
-
- images/simpson/
|
|
193
|
+
- images/simpson/success.jpg
|
|
108
194
|
- images/street_fighter/failure.gif
|
|
109
195
|
- images/street_fighter/pending.gif
|
|
110
|
-
- images/street_fighter/
|
|
196
|
+
- images/street_fighter/success.jpg
|
|
111
197
|
- images/toy_story/failure.gif
|
|
112
198
|
- images/toy_story/pending.png
|
|
113
|
-
- images/toy_story/
|
|
199
|
+
- images/toy_story/success.png
|
|
114
200
|
- infinity_test.gemspec
|
|
115
201
|
- lib/infinity_test.rb
|
|
116
|
-
- lib/infinity_test/
|
|
117
|
-
- lib/infinity_test/
|
|
118
|
-
- lib/infinity_test/
|
|
119
|
-
- lib/infinity_test/
|
|
120
|
-
- lib/infinity_test/
|
|
121
|
-
- lib/infinity_test/
|
|
122
|
-
- lib/infinity_test/
|
|
123
|
-
- lib/infinity_test/
|
|
124
|
-
- lib/infinity_test/
|
|
125
|
-
- lib/infinity_test/
|
|
126
|
-
- lib/infinity_test/
|
|
127
|
-
- lib/infinity_test/
|
|
128
|
-
- lib/infinity_test/
|
|
129
|
-
- lib/infinity_test/
|
|
130
|
-
- lib/infinity_test/
|
|
131
|
-
- lib/infinity_test/
|
|
132
|
-
- lib/infinity_test/
|
|
133
|
-
- lib/infinity_test/
|
|
134
|
-
- lib/infinity_test/
|
|
135
|
-
- lib/infinity_test/
|
|
136
|
-
-
|
|
137
|
-
-
|
|
138
|
-
-
|
|
139
|
-
-
|
|
140
|
-
-
|
|
141
|
-
-
|
|
142
|
-
-
|
|
143
|
-
-
|
|
144
|
-
-
|
|
145
|
-
-
|
|
146
|
-
-
|
|
147
|
-
-
|
|
148
|
-
- spec/
|
|
149
|
-
- spec/
|
|
150
|
-
- spec/
|
|
151
|
-
- spec/
|
|
152
|
-
- spec/infinity_test/
|
|
153
|
-
- spec/infinity_test/
|
|
154
|
-
- spec/infinity_test/
|
|
155
|
-
- spec/infinity_test/
|
|
156
|
-
- spec/infinity_test/
|
|
157
|
-
- spec/infinity_test/
|
|
158
|
-
- spec/infinity_test/
|
|
159
|
-
- spec/infinity_test/
|
|
160
|
-
- spec/infinity_test/
|
|
161
|
-
- spec/infinity_test/
|
|
162
|
-
- spec/infinity_test/
|
|
163
|
-
- spec/infinity_test/
|
|
164
|
-
- spec/infinity_test/
|
|
165
|
-
- spec/infinity_test/
|
|
166
|
-
- spec/infinity_test/
|
|
167
|
-
- spec/infinity_test/
|
|
168
|
-
- spec/infinity_test/
|
|
169
|
-
- spec/infinity_test/
|
|
170
|
-
- spec/
|
|
202
|
+
- lib/infinity_test/core/auto_discover.rb
|
|
203
|
+
- lib/infinity_test/core/base.rb
|
|
204
|
+
- lib/infinity_test/core/callback.rb
|
|
205
|
+
- lib/infinity_test/core/changed_file.rb
|
|
206
|
+
- lib/infinity_test/core/command_builder.rb
|
|
207
|
+
- lib/infinity_test/core/command_runner.rb
|
|
208
|
+
- lib/infinity_test/core/configuration_merge.rb
|
|
209
|
+
- lib/infinity_test/core/continuous_test_server.rb
|
|
210
|
+
- lib/infinity_test/core/load_configuration.rb
|
|
211
|
+
- lib/infinity_test/core/notifier.rb
|
|
212
|
+
- lib/infinity_test/core/options.rb
|
|
213
|
+
- lib/infinity_test/core/runner.rb
|
|
214
|
+
- lib/infinity_test/core/version.rb
|
|
215
|
+
- lib/infinity_test/framework/base.rb
|
|
216
|
+
- lib/infinity_test/framework/padrino.rb
|
|
217
|
+
- lib/infinity_test/framework/rails.rb
|
|
218
|
+
- lib/infinity_test/framework/rubygems.rb
|
|
219
|
+
- lib/infinity_test/framework/shared_example.rb
|
|
220
|
+
- lib/infinity_test/observer/base.rb
|
|
221
|
+
- lib/infinity_test/observer/filewatcher.rb
|
|
222
|
+
- lib/infinity_test/observer/listen.rb
|
|
223
|
+
- lib/infinity_test/observer/shared_example.rb
|
|
224
|
+
- lib/infinity_test/old_dsl/configuration.rb
|
|
225
|
+
- lib/infinity_test/strategy/base.rb
|
|
226
|
+
- lib/infinity_test/strategy/rbenv.rb
|
|
227
|
+
- lib/infinity_test/strategy/ruby_default.rb
|
|
228
|
+
- lib/infinity_test/strategy/rvm.rb
|
|
229
|
+
- lib/infinity_test/strategy/shared_example.rb
|
|
230
|
+
- lib/infinity_test/test_framework/base.rb
|
|
231
|
+
- lib/infinity_test/test_framework/rspec.rb
|
|
232
|
+
- lib/infinity_test/test_framework/shared_example.rb
|
|
233
|
+
- lib/infinity_test/test_framework/test_unit.rb
|
|
234
|
+
- spec/infinity_test/core/auto_discover_spec.rb
|
|
235
|
+
- spec/infinity_test/core/base_spec.rb
|
|
236
|
+
- spec/infinity_test/core/callback_spec.rb
|
|
237
|
+
- spec/infinity_test/core/changed_file_spec.rb
|
|
238
|
+
- spec/infinity_test/core/command_builder_spec.rb
|
|
239
|
+
- spec/infinity_test/core/configuration_merge_spec.rb
|
|
240
|
+
- spec/infinity_test/core/continuous_test_server_spec.rb
|
|
241
|
+
- spec/infinity_test/core/load_configuration_spec.rb
|
|
242
|
+
- spec/infinity_test/core/notifier_spec.rb
|
|
243
|
+
- spec/infinity_test/core/options_spec.rb
|
|
244
|
+
- spec/infinity_test/core/runner_spec.rb
|
|
245
|
+
- spec/infinity_test/framework/base_spec.rb
|
|
246
|
+
- spec/infinity_test/framework/padrino_spec.rb
|
|
247
|
+
- spec/infinity_test/framework/rails_spec.rb
|
|
248
|
+
- spec/infinity_test/framework/rubygems_spec.rb
|
|
249
|
+
- spec/infinity_test/observer/base_spec.rb
|
|
250
|
+
- spec/infinity_test/observer/filewatcher_spec.rb
|
|
251
|
+
- spec/infinity_test/observer/listen_spec.rb
|
|
252
|
+
- spec/infinity_test/strategy/base_spec.rb
|
|
253
|
+
- spec/infinity_test/strategy/rbenv_spec.rb
|
|
254
|
+
- spec/infinity_test/strategy/ruby_default_spec.rb
|
|
255
|
+
- spec/infinity_test/strategy/rvm_spec.rb
|
|
256
|
+
- spec/infinity_test/test_framework/rspec_spec.rb
|
|
257
|
+
- spec/infinity_test/test_framework/test_unit_spec.rb
|
|
171
258
|
- spec/spec_helper.rb
|
|
172
|
-
homepage:
|
|
173
|
-
licenses:
|
|
259
|
+
homepage: https://github.com/tomas-stefano/infinity_test
|
|
260
|
+
licenses:
|
|
261
|
+
- MIT
|
|
262
|
+
metadata: {}
|
|
263
|
+
post_install_message: |2
|
|
264
|
+
|
|
265
|
+
--------------------------------------------------------------------------------
|
|
266
|
+
T O I N F I N I T Y A N D B E Y O N D !!!
|
|
267
|
+
|
|
268
|
+
Infinity Test can be used with RVM, RbEnv or just Ruby without package manager.
|
|
269
|
+
If you don't have RVM or Rbenv installed.
|
|
174
270
|
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
271
|
+
RVM Installation Instructions:
|
|
272
|
+
https://rvm.io/rvm/install/
|
|
273
|
+
|
|
274
|
+
Rbenv Installation Instructions:
|
|
275
|
+
https://github.com/sstephenson/rbenv#installation
|
|
276
|
+
|
|
277
|
+
And don't forget to see how you can customize Infinity Test here:
|
|
278
|
+
http://github.com/tomas-stefano/infinity_test/wiki/Customize-Infinity-Test
|
|
279
|
+
|
|
280
|
+
Happy Coding! :)
|
|
281
|
+
--------------------------------------------------------------------------------
|
|
282
|
+
rdoc_options: []
|
|
283
|
+
require_paths:
|
|
179
284
|
- lib
|
|
180
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
|
181
|
-
|
|
182
|
-
requirements:
|
|
285
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
286
|
+
requirements:
|
|
183
287
|
- - ">="
|
|
184
|
-
- !ruby/object:Gem::Version
|
|
185
|
-
version:
|
|
186
|
-
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
187
|
-
|
|
188
|
-
requirements:
|
|
288
|
+
- !ruby/object:Gem::Version
|
|
289
|
+
version: '0'
|
|
290
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
291
|
+
requirements:
|
|
189
292
|
- - ">="
|
|
190
|
-
- !ruby/object:Gem::Version
|
|
191
|
-
version:
|
|
293
|
+
- !ruby/object:Gem::Version
|
|
294
|
+
version: '0'
|
|
192
295
|
requirements: []
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
- spec/
|
|
201
|
-
- spec/
|
|
202
|
-
- spec/
|
|
203
|
-
- spec/
|
|
204
|
-
- spec/
|
|
205
|
-
- spec/
|
|
206
|
-
- spec/
|
|
207
|
-
- spec/
|
|
208
|
-
- spec/
|
|
209
|
-
- spec/
|
|
210
|
-
- spec/infinity_test/
|
|
211
|
-
- spec/infinity_test/
|
|
212
|
-
- spec/infinity_test/
|
|
213
|
-
- spec/infinity_test/
|
|
214
|
-
- spec/infinity_test/
|
|
215
|
-
- spec/infinity_test/
|
|
216
|
-
- spec/infinity_test/
|
|
217
|
-
- spec/infinity_test/
|
|
218
|
-
- spec/infinity_test/
|
|
219
|
-
- spec/infinity_test/
|
|
220
|
-
- spec/infinity_test/
|
|
221
|
-
- spec/infinity_test/
|
|
222
|
-
- spec/infinity_test/runner_spec.rb
|
|
223
|
-
- spec/infinity_test/test_framework_spec.rb
|
|
224
|
-
- spec/infinity_test/test_library/bacon_spec.rb
|
|
225
|
-
- spec/infinity_test/test_library/cucumber_spec.rb
|
|
226
|
-
- spec/infinity_test/test_library/rspec_spec.rb
|
|
227
|
-
- spec/infinity_test/test_library/test_unit_spec.rb
|
|
228
|
-
- spec/infinity_test_spec.rb
|
|
296
|
+
rubygems_version: 3.6.2
|
|
297
|
+
specification_version: 4
|
|
298
|
+
summary: Infinity Test is a continuous testing library and a flexible alternative
|
|
299
|
+
to Autotest and Guard.
|
|
300
|
+
test_files:
|
|
301
|
+
- spec/infinity_test/core/auto_discover_spec.rb
|
|
302
|
+
- spec/infinity_test/core/base_spec.rb
|
|
303
|
+
- spec/infinity_test/core/callback_spec.rb
|
|
304
|
+
- spec/infinity_test/core/changed_file_spec.rb
|
|
305
|
+
- spec/infinity_test/core/command_builder_spec.rb
|
|
306
|
+
- spec/infinity_test/core/configuration_merge_spec.rb
|
|
307
|
+
- spec/infinity_test/core/continuous_test_server_spec.rb
|
|
308
|
+
- spec/infinity_test/core/load_configuration_spec.rb
|
|
309
|
+
- spec/infinity_test/core/notifier_spec.rb
|
|
310
|
+
- spec/infinity_test/core/options_spec.rb
|
|
311
|
+
- spec/infinity_test/core/runner_spec.rb
|
|
312
|
+
- spec/infinity_test/framework/base_spec.rb
|
|
313
|
+
- spec/infinity_test/framework/padrino_spec.rb
|
|
314
|
+
- spec/infinity_test/framework/rails_spec.rb
|
|
315
|
+
- spec/infinity_test/framework/rubygems_spec.rb
|
|
316
|
+
- spec/infinity_test/observer/base_spec.rb
|
|
317
|
+
- spec/infinity_test/observer/filewatcher_spec.rb
|
|
318
|
+
- spec/infinity_test/observer/listen_spec.rb
|
|
319
|
+
- spec/infinity_test/strategy/base_spec.rb
|
|
320
|
+
- spec/infinity_test/strategy/rbenv_spec.rb
|
|
321
|
+
- spec/infinity_test/strategy/ruby_default_spec.rb
|
|
322
|
+
- spec/infinity_test/strategy/rvm_spec.rb
|
|
323
|
+
- spec/infinity_test/test_framework/rspec_spec.rb
|
|
324
|
+
- spec/infinity_test/test_framework/test_unit_spec.rb
|
|
229
325
|
- spec/spec_helper.rb
|
data/.rvmrc
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
rvm --create 1.9.2@infinity_test
|
data/Gemfile.lock
DELETED
|
@@ -1,62 +0,0 @@
|
|
|
1
|
-
GEM
|
|
2
|
-
remote: http://rubygems.org/
|
|
3
|
-
specs:
|
|
4
|
-
aruba (0.2.1)
|
|
5
|
-
builder (2.1.2)
|
|
6
|
-
cucumber (0.9.0)
|
|
7
|
-
builder (~> 2.1.2)
|
|
8
|
-
diff-lcs (~> 1.1.2)
|
|
9
|
-
gherkin (~> 2.2.2)
|
|
10
|
-
json (~> 1.4.6)
|
|
11
|
-
term-ansicolor (~> 1.0.5)
|
|
12
|
-
diff-lcs (1.1.2)
|
|
13
|
-
fuubar (0.0.1)
|
|
14
|
-
progressbar (~> 0.9)
|
|
15
|
-
rspec (~> 2.0)
|
|
16
|
-
rspec-instafail (~> 0.1)
|
|
17
|
-
gemcutter (0.6.1)
|
|
18
|
-
gherkin (2.2.4)
|
|
19
|
-
json (~> 1.4.6)
|
|
20
|
-
term-ansicolor (~> 1.0.5)
|
|
21
|
-
trollop (~> 1.16.2)
|
|
22
|
-
gherkin (2.2.4-java)
|
|
23
|
-
json (~> 1.4.6)
|
|
24
|
-
term-ansicolor (~> 1.0.5)
|
|
25
|
-
trollop (~> 1.16.2)
|
|
26
|
-
git (1.2.5)
|
|
27
|
-
jeweler (1.4.0)
|
|
28
|
-
gemcutter (>= 0.1.0)
|
|
29
|
-
git (>= 1.2.5)
|
|
30
|
-
rubyforge (>= 2.0.0)
|
|
31
|
-
json (1.4.6)
|
|
32
|
-
json (1.4.6-java)
|
|
33
|
-
json_pure (1.4.6)
|
|
34
|
-
notifiers (1.1.0)
|
|
35
|
-
progressbar (0.9.0)
|
|
36
|
-
rspec (2.1.0)
|
|
37
|
-
rspec-core (~> 2.1.0)
|
|
38
|
-
rspec-expectations (~> 2.1.0)
|
|
39
|
-
rspec-mocks (~> 2.1.0)
|
|
40
|
-
rspec-core (2.1.0)
|
|
41
|
-
rspec-expectations (2.1.0)
|
|
42
|
-
diff-lcs (~> 1.1.2)
|
|
43
|
-
rspec-instafail (0.1.2)
|
|
44
|
-
rspec-mocks (2.1.0)
|
|
45
|
-
rubyforge (2.0.4)
|
|
46
|
-
json_pure (>= 1.1.7)
|
|
47
|
-
term-ansicolor (1.0.5)
|
|
48
|
-
trollop (1.16.2)
|
|
49
|
-
watchr (0.7)
|
|
50
|
-
|
|
51
|
-
PLATFORMS
|
|
52
|
-
java
|
|
53
|
-
ruby
|
|
54
|
-
|
|
55
|
-
DEPENDENCIES
|
|
56
|
-
aruba (= 0.2.1)
|
|
57
|
-
cucumber (= 0.9.0)
|
|
58
|
-
fuubar
|
|
59
|
-
jeweler
|
|
60
|
-
notifiers (= 1.1.0)
|
|
61
|
-
rspec (>= 2.1.0)
|
|
62
|
-
watchr (= 0.7)
|