infinity_test 1.0.2 → 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.
Files changed (149) hide show
  1. checksums.yaml +7 -0
  2. data/.github/workflows/ci.yml +31 -0
  3. data/.gitignore +3 -0
  4. data/.rspec +2 -2
  5. data/AI_INTEGRATION_IDEAS.md +203 -0
  6. data/Gemfile +3 -15
  7. data/History.markdown +82 -0
  8. data/INFINITY_TEST +48 -0
  9. data/LICENSE.txt +2 -2
  10. data/README.md +627 -0
  11. data/Rakefile +1 -65
  12. data/TODO.markdown +26 -9
  13. data/bin/infinity_test +1 -4
  14. data/images/fuuu/pending.png +0 -0
  15. data/images/fuuu/success.png +0 -0
  16. data/infinity_test.gemspec +41 -191
  17. data/lib/infinity_test/core/auto_discover.rb +67 -0
  18. data/lib/infinity_test/core/base.rb +369 -0
  19. data/lib/infinity_test/core/callback.rb +59 -0
  20. data/lib/infinity_test/core/changed_file.rb +13 -0
  21. data/lib/infinity_test/core/command_builder.rb +48 -0
  22. data/lib/infinity_test/core/command_runner.rb +62 -0
  23. data/lib/infinity_test/core/configuration_merge.rb +37 -0
  24. data/lib/infinity_test/core/continuous_test_server.rb +106 -0
  25. data/lib/infinity_test/core/load_configuration.rb +48 -0
  26. data/lib/infinity_test/core/notifier.rb +59 -0
  27. data/lib/infinity_test/core/options.rb +134 -0
  28. data/lib/infinity_test/core/runner.rb +18 -0
  29. data/lib/infinity_test/core/version.rb +5 -0
  30. data/lib/infinity_test/framework/base.rb +57 -0
  31. data/lib/infinity_test/framework/padrino.rb +33 -0
  32. data/lib/infinity_test/framework/rails.rb +35 -0
  33. data/lib/infinity_test/framework/rubygems.rb +29 -0
  34. data/lib/infinity_test/framework/shared_example.rb +47 -0
  35. data/lib/infinity_test/observer/base.rb +40 -0
  36. data/lib/infinity_test/observer/filewatcher.rb +72 -0
  37. data/lib/infinity_test/observer/listen.rb +74 -0
  38. data/lib/infinity_test/observer/shared_example.rb +35 -0
  39. data/lib/infinity_test/old_dsl/configuration.rb +26 -0
  40. data/lib/infinity_test/strategy/base.rb +34 -0
  41. data/lib/infinity_test/strategy/rbenv.rb +32 -0
  42. data/lib/infinity_test/strategy/ruby_default.rb +20 -0
  43. data/lib/infinity_test/strategy/rvm.rb +50 -0
  44. data/lib/infinity_test/strategy/shared_example.rb +32 -0
  45. data/lib/infinity_test/test_framework/base.rb +64 -0
  46. data/lib/infinity_test/test_framework/rspec.rb +48 -0
  47. data/lib/infinity_test/test_framework/shared_example.rb +56 -0
  48. data/lib/infinity_test/test_framework/test_unit.rb +57 -0
  49. data/lib/infinity_test.rb +53 -35
  50. data/spec/infinity_test/core/auto_discover_spec.rb +149 -0
  51. data/spec/infinity_test/core/base_spec.rb +240 -0
  52. data/spec/infinity_test/core/callback_spec.rb +89 -0
  53. data/spec/infinity_test/core/changed_file_spec.rb +26 -0
  54. data/spec/infinity_test/core/command_builder_spec.rb +38 -0
  55. data/spec/infinity_test/core/configuration_merge_spec.rb +124 -0
  56. data/spec/infinity_test/core/continuous_test_server_spec.rb +116 -0
  57. data/spec/infinity_test/core/load_configuration_spec.rb +43 -0
  58. data/spec/infinity_test/core/notifier_spec.rb +151 -0
  59. data/spec/infinity_test/core/options_spec.rb +168 -0
  60. data/spec/infinity_test/core/runner_spec.rb +17 -0
  61. data/spec/infinity_test/framework/base_spec.rb +55 -0
  62. data/spec/infinity_test/framework/padrino_spec.rb +36 -0
  63. data/spec/infinity_test/framework/rails_spec.rb +36 -0
  64. data/spec/infinity_test/framework/rubygems_spec.rb +34 -0
  65. data/spec/infinity_test/observer/base_spec.rb +78 -0
  66. data/spec/infinity_test/observer/filewatcher_spec.rb +51 -0
  67. data/spec/infinity_test/observer/listen_spec.rb +50 -0
  68. data/spec/infinity_test/{builder_spec.rb → strategy/base_spec.rb} +1 -2
  69. data/spec/infinity_test/strategy/rbenv_spec.rb +53 -0
  70. data/spec/infinity_test/strategy/ruby_default_spec.rb +32 -0
  71. data/spec/infinity_test/strategy/rvm_spec.rb +69 -0
  72. data/spec/infinity_test/test_framework/rspec_spec.rb +119 -0
  73. data/spec/infinity_test/test_framework/test_unit_spec.rb +193 -0
  74. data/spec/spec_helper.rb +34 -119
  75. metadata +276 -205
  76. data/.infinity_test +0 -36
  77. data/.rvmrc +0 -1
  78. data/Gemfile.lock +0 -62
  79. data/Readme.markdown +0 -122
  80. data/Tasks +0 -4
  81. data/VERSION.yml +0 -5
  82. data/buzz_images/buzz_lightyear.jpg +0 -0
  83. data/buzz_images/buzz_lightyear_continencia.gif +0 -0
  84. data/buzz_images/to_infinity_and_beyond.png +0 -0
  85. data/features/heuristics.feature +0 -23
  86. data/features/support/env.rb +0 -2
  87. data/images/fuuu/sucess.png +0 -0
  88. data/lib/infinity_test/application.rb +0 -355
  89. data/lib/infinity_test/application_library/rails.rb +0 -94
  90. data/lib/infinity_test/application_library/rubygems.rb +0 -43
  91. data/lib/infinity_test/binary_path.rb +0 -43
  92. data/lib/infinity_test/builder.rb +0 -67
  93. data/lib/infinity_test/command.rb +0 -58
  94. data/lib/infinity_test/configuration.rb +0 -273
  95. data/lib/infinity_test/continuous_testing.rb +0 -40
  96. data/lib/infinity_test/dependencies.rb +0 -80
  97. data/lib/infinity_test/environment.rb +0 -15
  98. data/lib/infinity_test/heuristics.rb +0 -36
  99. data/lib/infinity_test/heuristics_helper.rb +0 -9
  100. data/lib/infinity_test/options.rb +0 -89
  101. data/lib/infinity_test/runner.rb +0 -38
  102. data/lib/infinity_test/test_framework.rb +0 -109
  103. data/lib/infinity_test/test_library/bacon.rb +0 -55
  104. data/lib/infinity_test/test_library/cucumber.rb +0 -22
  105. data/lib/infinity_test/test_library/rspec.rb +0 -58
  106. data/lib/infinity_test/test_library/test_unit.rb +0 -52
  107. data/lib/infinity_test/test_unit_loader.rb +0 -5
  108. data/spec/factories/buzz/lib/buzz.rb +0 -0
  109. data/spec/factories/buzz/spec/buzz_spec.rb +0 -0
  110. data/spec/factories/company/Gemfile +0 -0
  111. data/spec/factories/company/lib/company.rb +0 -0
  112. data/spec/factories/company/test/company_test.rb +0 -0
  113. data/spec/factories/images/failure.png +0 -0
  114. data/spec/factories/images/pending.png +0 -0
  115. data/spec/factories/images/sucess.png +0 -0
  116. data/spec/factories/infinity_test +0 -5
  117. data/spec/factories/infinity_test_example +0 -7
  118. data/spec/factories/slinky/spec/slinky/slinky_spec.rb +0 -0
  119. data/spec/factories/travel/lib/travel.rb +0 -0
  120. data/spec/factories/travel/test/partner_test.rb +0 -0
  121. data/spec/factories/travel/test/travel_test.rb +0 -0
  122. data/spec/factories/wood/lib/wood.rb +0 -0
  123. data/spec/factories/wood/spec/wood_spec.rb +0 -0
  124. data/spec/infinity_test/application_library/rails_spec.rb +0 -140
  125. data/spec/infinity_test/application_library/rubygems_spec.rb +0 -52
  126. data/spec/infinity_test/application_spec.rb +0 -424
  127. data/spec/infinity_test/binary_path_spec.rb +0 -72
  128. data/spec/infinity_test/command_spec.rb +0 -53
  129. data/spec/infinity_test/configuration_spec.rb +0 -377
  130. data/spec/infinity_test/continuous_testing_spec.rb +0 -25
  131. data/spec/infinity_test/environment_spec.rb +0 -23
  132. data/spec/infinity_test/heuristics_helper_spec.rb +0 -15
  133. data/spec/infinity_test/heuristics_spec.rb +0 -127
  134. data/spec/infinity_test/options_spec.rb +0 -91
  135. data/spec/infinity_test/runner_spec.rb +0 -42
  136. data/spec/infinity_test/test_framework_spec.rb +0 -127
  137. data/spec/infinity_test/test_library/bacon_spec.rb +0 -150
  138. data/spec/infinity_test/test_library/cucumber_spec.rb +0 -8
  139. data/spec/infinity_test/test_library/rspec_spec.rb +0 -185
  140. data/spec/infinity_test/test_library/test_unit_spec.rb +0 -184
  141. data/spec/infinity_test_spec.rb +0 -40
  142. /data/images/faces/{sucess.png → success.png} +0 -0
  143. /data/images/hands/{sucess.png → success.png} +0 -0
  144. /data/images/mario_bros/{sucess.jpg → success.jpg} +0 -0
  145. /data/images/rails/{sucess.png → success.png} +0 -0
  146. /data/images/rubies/{sucess.png → success.png} +0 -0
  147. /data/images/simpson/{sucess.jpg → success.jpg} +0 -0
  148. /data/images/street_fighter/{sucess.jpg → success.jpg} +0 -0
  149. /data/images/toy_story/{sucess.png → success.png} +0 -0
metadata CHANGED
@@ -1,254 +1,325 @@
1
- --- !ruby/object:Gem::Specification
1
+ --- !ruby/object:Gem::Specification
2
2
  name: infinity_test
3
- version: !ruby/object:Gem::Version
4
- prerelease: false
5
- segments:
6
- - 1
7
- - 0
8
- - 2
9
- version: 1.0.2
3
+ version: !ruby/object:Gem::Version
4
+ version: 2.0.0.rc1
10
5
  platform: ruby
11
- authors:
6
+ authors:
12
7
  - Tomas D'Stefano
13
- autorequire:
14
8
  bindir: bin
15
9
  cert_chain: []
16
-
17
- date: 2010-11-16 00:00:00 -02:00
18
- default_executable: infinity_test
19
- dependencies:
20
- - !ruby/object:Gem::Dependency
21
- name: watchr
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
22
20
  prerelease: false
23
- requirement: &id001 !ruby/object:Gem::Requirement
24
- none: false
25
- requirements:
26
- - - ">="
27
- - !ruby/object:Gem::Version
28
- segments:
29
- - 0
30
- - 7
31
- version: "0.7"
21
+ version_requirements: !ruby/object:Gem::Requirement
22
+ requirements:
23
+ - - ">="
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'
32
47
  type: :runtime
33
- version_requirements: *id001
34
- - !ruby/object:Gem::Dependency
35
- name: notifiers
36
48
  prerelease: false
37
- requirement: &id002 !ruby/object:Gem::Requirement
38
- none: false
39
- requirements:
40
- - - ">="
41
- - !ruby/object:Gem::Version
42
- segments:
43
- - 1
44
- - 1
45
- - 0
46
- version: 1.1.0
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'
47
61
  type: :runtime
48
- version_requirements: *id002
49
- - !ruby/object:Gem::Dependency
62
+ prerelease: false
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:
72
+ - - ">="
73
+ - !ruby/object:Gem::Version
74
+ version: '0'
75
+ type: :runtime
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
50
111
  name: rspec
112
+ requirement: !ruby/object:Gem::Requirement
113
+ requirements:
114
+ - - ">="
115
+ - !ruby/object:Gem::Version
116
+ version: '0'
117
+ type: :development
51
118
  prerelease: false
52
- requirement: &id003 !ruby/object:Gem::Requirement
53
- none: false
54
- requirements:
55
- - - ">="
56
- - !ruby/object:Gem::Version
57
- segments:
58
- - 2
59
- - 0
60
- - 1
61
- version: 2.0.1
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:
128
+ - - ">="
129
+ - !ruby/object:Gem::Version
130
+ version: '0'
62
131
  type: :development
63
- version_requirements: *id003
64
- - !ruby/object:Gem::Dependency
65
- name: jeweler
66
132
  prerelease: false
67
- requirement: &id004 !ruby/object:Gem::Requirement
68
- none: false
69
- requirements:
70
- - - ">="
71
- - !ruby/object:Gem::Version
72
- segments:
73
- - 1
74
- - 4
75
- - 0
76
- version: 1.4.0
133
+ version_requirements: !ruby/object:Gem::Requirement
134
+ requirements:
135
+ - - ">="
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'
77
145
  type: :development
78
- version_requirements: *id004
79
- description: Infinity Test is a continuous testing library and a flexible alternative to Autotest, using Watchr library with Rspec, Test::Unit or Bacon with RVM funcionality, giving the possibility to test with all Rubies that you have in your RVM configuration.
80
- email: tomasdestefi@gmail.com
81
- executables:
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:
82
157
  - infinity_test
83
158
  extensions: []
84
-
85
- extra_rdoc_files:
86
- - LICENSE.txt
87
- files:
88
- - .gitignore
89
- - .infinity_test
90
- - .rspec
91
- - .rvmrc
159
+ extra_rdoc_files: []
160
+ files:
161
+ - ".github/workflows/ci.yml"
162
+ - ".gitignore"
163
+ - ".rspec"
164
+ - AI_INTEGRATION_IDEAS.md
92
165
  - Gemfile
93
- - Gemfile.lock
94
166
  - History.markdown
167
+ - INFINITY_TEST
95
168
  - LICENSE.txt
169
+ - README.md
96
170
  - Rakefile
97
- - Readme.markdown
98
171
  - TODO.markdown
99
- - Tasks
100
- - VERSION.yml
101
172
  - bin/infinity_test
102
- - buzz_images/buzz_lightyear.jpg
103
- - buzz_images/buzz_lightyear_continencia.gif
104
- - buzz_images/to_infinity_and_beyond.png
105
- - features/heuristics.feature
106
- - features/support/env.rb
107
173
  - images/faces/failure.png
108
174
  - images/faces/pending.png
109
- - images/faces/sucess.png
175
+ - images/faces/success.png
110
176
  - images/fuuu/failure.png
111
177
  - images/fuuu/pending.png
112
- - images/fuuu/sucess.png
178
+ - images/fuuu/success.png
113
179
  - images/hands/failure.png
114
180
  - images/hands/pending.png
115
- - images/hands/sucess.png
181
+ - images/hands/success.png
116
182
  - images/mario_bros/failure.jpg
117
183
  - images/mario_bros/pending.jpg
118
- - images/mario_bros/sucess.jpg
184
+ - images/mario_bros/success.jpg
119
185
  - images/rails/failure.png
120
186
  - images/rails/pending.png
121
- - images/rails/sucess.png
187
+ - images/rails/success.png
122
188
  - images/rubies/failure.png
123
189
  - images/rubies/pending.png
124
- - images/rubies/sucess.png
190
+ - images/rubies/success.png
125
191
  - images/simpson/failure.gif
126
192
  - images/simpson/pending.jpg
127
- - images/simpson/sucess.jpg
193
+ - images/simpson/success.jpg
128
194
  - images/street_fighter/failure.gif
129
195
  - images/street_fighter/pending.gif
130
- - images/street_fighter/sucess.jpg
196
+ - images/street_fighter/success.jpg
131
197
  - images/toy_story/failure.gif
132
198
  - images/toy_story/pending.png
133
- - images/toy_story/sucess.png
199
+ - images/toy_story/success.png
134
200
  - infinity_test.gemspec
135
201
  - lib/infinity_test.rb
136
- - lib/infinity_test/application.rb
137
- - lib/infinity_test/application_library/rails.rb
138
- - lib/infinity_test/application_library/rubygems.rb
139
- - lib/infinity_test/binary_path.rb
140
- - lib/infinity_test/builder.rb
141
- - lib/infinity_test/command.rb
142
- - lib/infinity_test/configuration.rb
143
- - lib/infinity_test/continuous_testing.rb
144
- - lib/infinity_test/dependencies.rb
145
- - lib/infinity_test/environment.rb
146
- - lib/infinity_test/heuristics.rb
147
- - lib/infinity_test/heuristics_helper.rb
148
- - lib/infinity_test/options.rb
149
- - lib/infinity_test/runner.rb
150
- - lib/infinity_test/test_framework.rb
151
- - lib/infinity_test/test_library/bacon.rb
152
- - lib/infinity_test/test_library/cucumber.rb
153
- - lib/infinity_test/test_library/rspec.rb
154
- - lib/infinity_test/test_library/test_unit.rb
155
- - lib/infinity_test/test_unit_loader.rb
156
- - spec/factories/buzz/lib/buzz.rb
157
- - spec/factories/buzz/spec/buzz_spec.rb
158
- - spec/factories/company/Gemfile
159
- - spec/factories/company/lib/company.rb
160
- - spec/factories/company/test/company_test.rb
161
- - spec/factories/images/failure.png
162
- - spec/factories/images/pending.png
163
- - spec/factories/images/sucess.png
164
- - spec/factories/infinity_test
165
- - spec/factories/infinity_test_example
166
- - spec/factories/slinky/spec/slinky/slinky_spec.rb
167
- - spec/factories/travel/lib/travel.rb
168
- - spec/factories/travel/test/partner_test.rb
169
- - spec/factories/travel/test/travel_test.rb
170
- - spec/factories/wood/lib/wood.rb
171
- - spec/factories/wood/spec/wood_spec.rb
172
- - spec/infinity_test/application_library/rails_spec.rb
173
- - spec/infinity_test/application_library/rubygems_spec.rb
174
- - spec/infinity_test/application_spec.rb
175
- - spec/infinity_test/binary_path_spec.rb
176
- - spec/infinity_test/builder_spec.rb
177
- - spec/infinity_test/command_spec.rb
178
- - spec/infinity_test/configuration_spec.rb
179
- - spec/infinity_test/continuous_testing_spec.rb
180
- - spec/infinity_test/environment_spec.rb
181
- - spec/infinity_test/heuristics_helper_spec.rb
182
- - spec/infinity_test/heuristics_spec.rb
183
- - spec/infinity_test/options_spec.rb
184
- - spec/infinity_test/runner_spec.rb
185
- - spec/infinity_test/test_framework_spec.rb
186
- - spec/infinity_test/test_library/bacon_spec.rb
187
- - spec/infinity_test/test_library/cucumber_spec.rb
188
- - spec/infinity_test/test_library/rspec_spec.rb
189
- - spec/infinity_test/test_library/test_unit_spec.rb
190
- - spec/infinity_test_spec.rb
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
191
258
  - spec/spec_helper.rb
192
- has_rdoc: true
193
- homepage: http://github.com/tomas-stefano/infinity_test
194
- 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 !!!
195
267
 
196
- post_install_message: "\n --------------------------------------------------------------------------------\n T O I N F I N I T Y A N D B E Y O N D !!!\n\n The Infinity uses the awesome RVM to run.\n If you don't have the RVM installed, stop what you doing =p.\n RVM Installation Instructions:\n http://rvm.beginrescueend.com/rvm/install/\n And don't forget to see how you can customize Infinity Test here:\n http://github.com/tomas-stefano/infinity_test/wiki/Customize-Infinity-Test\n\n Happy Coding! :)\n\n --------------------------------------------------------------------------------\n\n"
197
- rdoc_options:
198
- - --charset=UTF-8
199
- require_paths:
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.
270
+
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:
200
284
  - lib
201
- required_ruby_version: !ruby/object:Gem::Requirement
202
- none: false
203
- requirements:
285
+ required_ruby_version: !ruby/object:Gem::Requirement
286
+ requirements:
204
287
  - - ">="
205
- - !ruby/object:Gem::Version
206
- segments:
207
- - 0
208
- version: "0"
209
- required_rubygems_version: !ruby/object:Gem::Requirement
210
- none: false
211
- requirements:
288
+ - !ruby/object:Gem::Version
289
+ version: '0'
290
+ required_rubygems_version: !ruby/object:Gem::Requirement
291
+ requirements:
212
292
  - - ">="
213
- - !ruby/object:Gem::Version
214
- segments:
215
- - 0
216
- version: "0"
293
+ - !ruby/object:Gem::Version
294
+ version: '0'
217
295
  requirements: []
218
-
219
- rubyforge_project:
220
- rubygems_version: 1.3.7
221
- signing_key:
222
- specification_version: 3
223
- summary: Continuous testing and a flexible alternative to Autotest using watchr and RVM
224
- test_files:
225
- - spec/factories/buzz/lib/buzz.rb
226
- - spec/factories/buzz/spec/buzz_spec.rb
227
- - spec/factories/company/lib/company.rb
228
- - spec/factories/company/test/company_test.rb
229
- - spec/factories/slinky/spec/slinky/slinky_spec.rb
230
- - spec/factories/travel/lib/travel.rb
231
- - spec/factories/travel/test/partner_test.rb
232
- - spec/factories/travel/test/travel_test.rb
233
- - spec/factories/wood/lib/wood.rb
234
- - spec/factories/wood/spec/wood_spec.rb
235
- - spec/infinity_test/application_library/rails_spec.rb
236
- - spec/infinity_test/application_library/rubygems_spec.rb
237
- - spec/infinity_test/application_spec.rb
238
- - spec/infinity_test/binary_path_spec.rb
239
- - spec/infinity_test/builder_spec.rb
240
- - spec/infinity_test/command_spec.rb
241
- - spec/infinity_test/configuration_spec.rb
242
- - spec/infinity_test/continuous_testing_spec.rb
243
- - spec/infinity_test/environment_spec.rb
244
- - spec/infinity_test/heuristics_helper_spec.rb
245
- - spec/infinity_test/heuristics_spec.rb
246
- - spec/infinity_test/options_spec.rb
247
- - spec/infinity_test/runner_spec.rb
248
- - spec/infinity_test/test_framework_spec.rb
249
- - spec/infinity_test/test_library/bacon_spec.rb
250
- - spec/infinity_test/test_library/cucumber_spec.rb
251
- - spec/infinity_test/test_library/rspec_spec.rb
252
- - spec/infinity_test/test_library/test_unit_spec.rb
253
- - 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
254
325
  - spec/spec_helper.rb
data/.infinity_test DELETED
@@ -1,36 +0,0 @@
1
- #!/usr/bin/env ruby
2
-
3
- infinity_test do
4
-
5
- use :rubies => ['1.8.7', '1.9.2', 'jruby', 'ree', 'rbx'], :gemset => 'infinity_test', :test_framework => :rspec
6
-
7
- heuristics do
8
- add '^lib/infinity_test/dependencies.rb' do |file|
9
- run :all => :files
10
- end
11
- end
12
-
13
- after(:all) do
14
- system('rake clean_without_verbose')
15
- end
16
-
17
- # heuristics do
18
- #
19
- # add :dir => 'app/models' do |file|
20
- # run_test :for => file
21
- # end
22
- #
23
- # add %r%^(test|spec)/fixtures/(.*).yml$% do |file|
24
- # run_test :for => file, :in_dir => "test"
25
- # end
26
- #
27
- # application_library.watch :dir => 'app/models' do |file|
28
- # run :test => "spec/models/"
29
- # end
30
- #
31
- # watch(%r%^(test|spec)/fixtures/(.*).yml$%) do |m|
32
- # "test/test_#{m[1]}.rb"
33
- # end
34
- # end
35
-
36
- end
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)