zapata 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +14 -0
- data/.rspec +3 -0
- data/CONTRIBUTING.md +5 -0
- data/Gemfile +4 -0
- data/LICENSE +22 -0
- data/README.md +152 -0
- data/Rakefile +2 -0
- data/bin/zapata +20 -0
- data/lib/zapata.rb +91 -0
- data/lib/zapata/analyst.rb +34 -0
- data/lib/zapata/core/collector.rb +9 -0
- data/lib/zapata/core/loader.rb +38 -0
- data/lib/zapata/core/reader.rb +10 -0
- data/lib/zapata/core/writer.rb +33 -0
- data/lib/zapata/db.rb +32 -0
- data/lib/zapata/diver.rb +81 -0
- data/lib/zapata/predictor/args.rb +94 -0
- data/lib/zapata/predictor/chooser.rb +27 -0
- data/lib/zapata/primitive/arg.rb +24 -0
- data/lib/zapata/primitive/array.rb +39 -0
- data/lib/zapata/primitive/base.rb +28 -0
- data/lib/zapata/primitive/basic.rb +22 -0
- data/lib/zapata/primitive/casgn.rb +15 -0
- data/lib/zapata/primitive/const.rb +15 -0
- data/lib/zapata/primitive/def.rb +33 -0
- data/lib/zapata/primitive/defs.rb +32 -0
- data/lib/zapata/primitive/hash.rb +31 -0
- data/lib/zapata/primitive/ivar.rb +6 -0
- data/lib/zapata/primitive/klass.rb +34 -0
- data/lib/zapata/primitive/lvar.rb +24 -0
- data/lib/zapata/primitive/missing.rb +17 -0
- data/lib/zapata/primitive/modul.rb +20 -0
- data/lib/zapata/primitive/nil.rb +16 -0
- data/lib/zapata/primitive/optarg.rb +18 -0
- data/lib/zapata/primitive/raw.rb +16 -0
- data/lib/zapata/primitive/send.rb +48 -0
- data/lib/zapata/primitive/sklass.rb +20 -0
- data/lib/zapata/primitive/var.rb +25 -0
- data/lib/zapata/printer.rb +93 -0
- data/lib/zapata/rzpec/runner.rb +67 -0
- data/lib/zapata/rzpec/writer.rb +115 -0
- data/lib/zapata/version.rb +3 -0
- data/spec/array_spec.rb +37 -0
- data/spec/definition_spec.rb +43 -0
- data/spec/hash_spec.rb +43 -0
- data/spec/klass_types_spec.rb +55 -0
- data/spec/send_spec.rb +31 -0
- data/spec/simple_types_spec.rb +90 -0
- data/spec/spec_helper.rb +124 -0
- data/spec/support/rails_test_app/.gitignore +16 -0
- data/spec/support/rails_test_app/.rspec +3 -0
- data/spec/support/rails_test_app/Gemfile +45 -0
- data/spec/support/rails_test_app/Gemfile.lock +200 -0
- data/spec/support/rails_test_app/README.md +3 -0
- data/spec/support/rails_test_app/Rakefile +6 -0
- data/spec/support/rails_test_app/app/assets/images/.keep +0 -0
- data/spec/support/rails_test_app/app/assets/javascripts/application.js +16 -0
- data/spec/support/rails_test_app/app/assets/stylesheets/application.css +15 -0
- data/spec/support/rails_test_app/app/controllers/application_controller.rb +5 -0
- data/spec/support/rails_test_app/app/controllers/concerns/.keep +0 -0
- data/spec/support/rails_test_app/app/helpers/application_helper.rb +2 -0
- data/spec/support/rails_test_app/app/mailers/.keep +0 -0
- data/spec/support/rails_test_app/app/models/.keep +0 -0
- data/spec/support/rails_test_app/app/models/concerns/.keep +0 -0
- data/spec/support/rails_test_app/app/models/robot_to_test.rb +49 -0
- data/spec/support/rails_test_app/app/models/test_array.rb +34 -0
- data/spec/support/rails_test_app/app/models/test_const.rb +14 -0
- data/spec/support/rails_test_app/app/models/test_definition.rb +38 -0
- data/spec/support/rails_test_app/app/models/test_float.rb +14 -0
- data/spec/support/rails_test_app/app/models/test_hash.rb +39 -0
- data/spec/support/rails_test_app/app/models/test_int.rb +14 -0
- data/spec/support/rails_test_app/app/models/test_send.rb +75 -0
- data/spec/support/rails_test_app/app/models/test_str.rb +14 -0
- data/spec/support/rails_test_app/app/models/test_sym.rb +14 -0
- data/spec/support/rails_test_app/app/models/testing_module/bare.rb +6 -0
- data/spec/support/rails_test_app/app/models/testing_module/klass_methods.rb +47 -0
- data/spec/support/rails_test_app/app/models/testing_module/nested/inside.rb +8 -0
- data/spec/support/rails_test_app/app/views/layouts/application.html.erb +14 -0
- data/spec/support/rails_test_app/config.ru +4 -0
- data/spec/support/rails_test_app/config/application.rb +23 -0
- data/spec/support/rails_test_app/config/boot.rb +4 -0
- data/spec/support/rails_test_app/config/database.yml +25 -0
- data/spec/support/rails_test_app/config/environment.rb +5 -0
- data/spec/support/rails_test_app/config/environments/development.rb +37 -0
- data/spec/support/rails_test_app/config/environments/production.rb +83 -0
- data/spec/support/rails_test_app/config/environments/test.rb +39 -0
- data/spec/support/rails_test_app/config/initializers/backtrace_silencers.rb +7 -0
- data/spec/support/rails_test_app/config/initializers/cookies_serializer.rb +3 -0
- data/spec/support/rails_test_app/config/initializers/filter_parameter_logging.rb +4 -0
- data/spec/support/rails_test_app/config/initializers/inflections.rb +16 -0
- data/spec/support/rails_test_app/config/initializers/mime_types.rb +4 -0
- data/spec/support/rails_test_app/config/initializers/session_store.rb +3 -0
- data/spec/support/rails_test_app/config/initializers/wrap_parameters.rb +14 -0
- data/spec/support/rails_test_app/config/locales/en.yml +23 -0
- data/spec/support/rails_test_app/config/routes.rb +56 -0
- data/spec/support/rails_test_app/config/secrets.yml +22 -0
- data/spec/support/rails_test_app/db/seeds.rb +7 -0
- data/spec/support/rails_test_app/lib/assets/.keep +0 -0
- data/spec/support/rails_test_app/lib/tasks/.keep +0 -0
- data/spec/support/rails_test_app/log/.keep +0 -0
- data/spec/support/rails_test_app/public/404.html +67 -0
- data/spec/support/rails_test_app/public/422.html +67 -0
- data/spec/support/rails_test_app/public/500.html +66 -0
- data/spec/support/rails_test_app/public/favicon.ico +0 -0
- data/spec/support/rails_test_app/public/robots.txt +5 -0
- data/spec/support/rails_test_app/spec/models/robot_to_test_spec.rb +33 -0
- data/spec/support/rails_test_app/spec/models/test_array_spec.rb +27 -0
- data/spec/support/rails_test_app/spec/models/test_const_spec.rb +11 -0
- data/spec/support/rails_test_app/spec/models/test_definition_spec.rb +31 -0
- data/spec/support/rails_test_app/spec/models/test_float_spec.rb +11 -0
- data/spec/support/rails_test_app/spec/models/test_hash_spec.rb +31 -0
- data/spec/support/rails_test_app/spec/models/test_int_spec.rb +11 -0
- data/spec/support/rails_test_app/spec/models/test_send_spec.rb +53 -0
- data/spec/support/rails_test_app/spec/models/test_str_spec.rb +11 -0
- data/spec/support/rails_test_app/spec/models/test_sym_spec.rb +11 -0
- data/spec/support/rails_test_app/spec/models/testing_module/bare_spec.rb +7 -0
- data/spec/support/rails_test_app/spec/models/testing_module/klass_methods_spec.rb +19 -0
- data/spec/support/rails_test_app/spec/models/testing_module/nested/inside_spec.rb +7 -0
- data/spec/support/rails_test_app/spec/rails_helper.rb +43 -0
- data/spec/support/rails_test_app/spec/spec_helper.rb +78 -0
- data/spec/support/rails_test_app/test/controllers/.keep +0 -0
- data/spec/support/rails_test_app/test/fixtures/.keep +0 -0
- data/spec/support/rails_test_app/test/helpers/.keep +0 -0
- data/spec/support/rails_test_app/test/integration/.keep +0 -0
- data/spec/support/rails_test_app/test/mailers/.keep +0 -0
- data/spec/support/rails_test_app/test/models/.keep +0 -0
- data/spec/support/rails_test_app/test/test_helper.rb +13 -0
- data/spec/support/rails_test_app/vendor/assets/javascripts/.keep +0 -0
- data/spec/support/rails_test_app/vendor/assets/stylesheets/.keep +0 -0
- data/zapata.gemspec +34 -0
- metadata +446 -0
metadata
ADDED
@@ -0,0 +1,446 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: zapata
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Domas Bitvinskas
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2014-08-11 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: parser
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '2.1'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '2.1'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: unparser
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '0.1'
|
34
|
+
type: :runtime
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '0.1'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: andand
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '1.3'
|
48
|
+
type: :runtime
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '1.3'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: pry
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - "~>"
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '0.9'
|
62
|
+
type: :runtime
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - "~>"
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '0.9'
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: pry-stack_explorer
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - "~>"
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '0.4'
|
76
|
+
type: :runtime
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - "~>"
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '0.4'
|
83
|
+
- !ruby/object:Gem::Dependency
|
84
|
+
name: rails
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - ">="
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: 3.0.0
|
90
|
+
type: :runtime
|
91
|
+
prerelease: false
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
93
|
+
requirements:
|
94
|
+
- - ">="
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: 3.0.0
|
97
|
+
- !ruby/object:Gem::Dependency
|
98
|
+
name: slop
|
99
|
+
requirement: !ruby/object:Gem::Requirement
|
100
|
+
requirements:
|
101
|
+
- - "~>"
|
102
|
+
- !ruby/object:Gem::Version
|
103
|
+
version: '3.4'
|
104
|
+
type: :runtime
|
105
|
+
prerelease: false
|
106
|
+
version_requirements: !ruby/object:Gem::Requirement
|
107
|
+
requirements:
|
108
|
+
- - "~>"
|
109
|
+
- !ruby/object:Gem::Version
|
110
|
+
version: '3.4'
|
111
|
+
- !ruby/object:Gem::Dependency
|
112
|
+
name: rspec-rails
|
113
|
+
requirement: !ruby/object:Gem::Requirement
|
114
|
+
requirements:
|
115
|
+
- - "~>"
|
116
|
+
- !ruby/object:Gem::Version
|
117
|
+
version: '3.0'
|
118
|
+
type: :runtime
|
119
|
+
prerelease: false
|
120
|
+
version_requirements: !ruby/object:Gem::Requirement
|
121
|
+
requirements:
|
122
|
+
- - "~>"
|
123
|
+
- !ruby/object:Gem::Version
|
124
|
+
version: '3.0'
|
125
|
+
- !ruby/object:Gem::Dependency
|
126
|
+
name: require_all
|
127
|
+
requirement: !ruby/object:Gem::Requirement
|
128
|
+
requirements:
|
129
|
+
- - "~>"
|
130
|
+
- !ruby/object:Gem::Version
|
131
|
+
version: '1.3'
|
132
|
+
type: :runtime
|
133
|
+
prerelease: false
|
134
|
+
version_requirements: !ruby/object:Gem::Requirement
|
135
|
+
requirements:
|
136
|
+
- - "~>"
|
137
|
+
- !ruby/object:Gem::Version
|
138
|
+
version: '1.3'
|
139
|
+
- !ruby/object:Gem::Dependency
|
140
|
+
name: file-temp
|
141
|
+
requirement: !ruby/object:Gem::Requirement
|
142
|
+
requirements:
|
143
|
+
- - "~>"
|
144
|
+
- !ruby/object:Gem::Version
|
145
|
+
version: '1.2'
|
146
|
+
type: :runtime
|
147
|
+
prerelease: false
|
148
|
+
version_requirements: !ruby/object:Gem::Requirement
|
149
|
+
requirements:
|
150
|
+
- - "~>"
|
151
|
+
- !ruby/object:Gem::Version
|
152
|
+
version: '1.2'
|
153
|
+
- !ruby/object:Gem::Dependency
|
154
|
+
name: rspec
|
155
|
+
requirement: !ruby/object:Gem::Requirement
|
156
|
+
requirements:
|
157
|
+
- - "~>"
|
158
|
+
- !ruby/object:Gem::Version
|
159
|
+
version: '3.0'
|
160
|
+
type: :development
|
161
|
+
prerelease: false
|
162
|
+
version_requirements: !ruby/object:Gem::Requirement
|
163
|
+
requirements:
|
164
|
+
- - "~>"
|
165
|
+
- !ruby/object:Gem::Version
|
166
|
+
version: '3.0'
|
167
|
+
- !ruby/object:Gem::Dependency
|
168
|
+
name: bundler
|
169
|
+
requirement: !ruby/object:Gem::Requirement
|
170
|
+
requirements:
|
171
|
+
- - "~>"
|
172
|
+
- !ruby/object:Gem::Version
|
173
|
+
version: '1.6'
|
174
|
+
type: :development
|
175
|
+
prerelease: false
|
176
|
+
version_requirements: !ruby/object:Gem::Requirement
|
177
|
+
requirements:
|
178
|
+
- - "~>"
|
179
|
+
- !ruby/object:Gem::Version
|
180
|
+
version: '1.6'
|
181
|
+
- !ruby/object:Gem::Dependency
|
182
|
+
name: rake
|
183
|
+
requirement: !ruby/object:Gem::Requirement
|
184
|
+
requirements:
|
185
|
+
- - "~>"
|
186
|
+
- !ruby/object:Gem::Version
|
187
|
+
version: '10.0'
|
188
|
+
type: :development
|
189
|
+
prerelease: false
|
190
|
+
version_requirements: !ruby/object:Gem::Requirement
|
191
|
+
requirements:
|
192
|
+
- - "~>"
|
193
|
+
- !ruby/object:Gem::Version
|
194
|
+
version: '10.0'
|
195
|
+
description: Who has time to write tests? This is a revolutional tool to make them
|
196
|
+
write themselves.
|
197
|
+
email:
|
198
|
+
- domas.bitvinskas@me.com
|
199
|
+
executables:
|
200
|
+
- zapata
|
201
|
+
extensions: []
|
202
|
+
extra_rdoc_files: []
|
203
|
+
files:
|
204
|
+
- ".gitignore"
|
205
|
+
- ".rspec"
|
206
|
+
- CONTRIBUTING.md
|
207
|
+
- Gemfile
|
208
|
+
- LICENSE
|
209
|
+
- README.md
|
210
|
+
- Rakefile
|
211
|
+
- bin/zapata
|
212
|
+
- lib/zapata.rb
|
213
|
+
- lib/zapata/analyst.rb
|
214
|
+
- lib/zapata/core/collector.rb
|
215
|
+
- lib/zapata/core/loader.rb
|
216
|
+
- lib/zapata/core/reader.rb
|
217
|
+
- lib/zapata/core/writer.rb
|
218
|
+
- lib/zapata/db.rb
|
219
|
+
- lib/zapata/diver.rb
|
220
|
+
- lib/zapata/predictor/args.rb
|
221
|
+
- lib/zapata/predictor/chooser.rb
|
222
|
+
- lib/zapata/primitive/arg.rb
|
223
|
+
- lib/zapata/primitive/array.rb
|
224
|
+
- lib/zapata/primitive/base.rb
|
225
|
+
- lib/zapata/primitive/basic.rb
|
226
|
+
- lib/zapata/primitive/casgn.rb
|
227
|
+
- lib/zapata/primitive/const.rb
|
228
|
+
- lib/zapata/primitive/def.rb
|
229
|
+
- lib/zapata/primitive/defs.rb
|
230
|
+
- lib/zapata/primitive/hash.rb
|
231
|
+
- lib/zapata/primitive/ivar.rb
|
232
|
+
- lib/zapata/primitive/klass.rb
|
233
|
+
- lib/zapata/primitive/lvar.rb
|
234
|
+
- lib/zapata/primitive/missing.rb
|
235
|
+
- lib/zapata/primitive/modul.rb
|
236
|
+
- lib/zapata/primitive/nil.rb
|
237
|
+
- lib/zapata/primitive/optarg.rb
|
238
|
+
- lib/zapata/primitive/raw.rb
|
239
|
+
- lib/zapata/primitive/send.rb
|
240
|
+
- lib/zapata/primitive/sklass.rb
|
241
|
+
- lib/zapata/primitive/var.rb
|
242
|
+
- lib/zapata/printer.rb
|
243
|
+
- lib/zapata/rzpec/runner.rb
|
244
|
+
- lib/zapata/rzpec/writer.rb
|
245
|
+
- lib/zapata/version.rb
|
246
|
+
- spec/array_spec.rb
|
247
|
+
- spec/definition_spec.rb
|
248
|
+
- spec/hash_spec.rb
|
249
|
+
- spec/klass_types_spec.rb
|
250
|
+
- spec/send_spec.rb
|
251
|
+
- spec/simple_types_spec.rb
|
252
|
+
- spec/spec_helper.rb
|
253
|
+
- spec/support/rails_test_app/.gitignore
|
254
|
+
- spec/support/rails_test_app/.rspec
|
255
|
+
- spec/support/rails_test_app/Gemfile
|
256
|
+
- spec/support/rails_test_app/Gemfile.lock
|
257
|
+
- spec/support/rails_test_app/README.md
|
258
|
+
- spec/support/rails_test_app/Rakefile
|
259
|
+
- spec/support/rails_test_app/app/assets/images/.keep
|
260
|
+
- spec/support/rails_test_app/app/assets/javascripts/application.js
|
261
|
+
- spec/support/rails_test_app/app/assets/stylesheets/application.css
|
262
|
+
- spec/support/rails_test_app/app/controllers/application_controller.rb
|
263
|
+
- spec/support/rails_test_app/app/controllers/concerns/.keep
|
264
|
+
- spec/support/rails_test_app/app/helpers/application_helper.rb
|
265
|
+
- spec/support/rails_test_app/app/mailers/.keep
|
266
|
+
- spec/support/rails_test_app/app/models/.keep
|
267
|
+
- spec/support/rails_test_app/app/models/concerns/.keep
|
268
|
+
- spec/support/rails_test_app/app/models/robot_to_test.rb
|
269
|
+
- spec/support/rails_test_app/app/models/test_array.rb
|
270
|
+
- spec/support/rails_test_app/app/models/test_const.rb
|
271
|
+
- spec/support/rails_test_app/app/models/test_definition.rb
|
272
|
+
- spec/support/rails_test_app/app/models/test_float.rb
|
273
|
+
- spec/support/rails_test_app/app/models/test_hash.rb
|
274
|
+
- spec/support/rails_test_app/app/models/test_int.rb
|
275
|
+
- spec/support/rails_test_app/app/models/test_send.rb
|
276
|
+
- spec/support/rails_test_app/app/models/test_str.rb
|
277
|
+
- spec/support/rails_test_app/app/models/test_sym.rb
|
278
|
+
- spec/support/rails_test_app/app/models/testing_module/bare.rb
|
279
|
+
- spec/support/rails_test_app/app/models/testing_module/klass_methods.rb
|
280
|
+
- spec/support/rails_test_app/app/models/testing_module/nested/inside.rb
|
281
|
+
- spec/support/rails_test_app/app/views/layouts/application.html.erb
|
282
|
+
- spec/support/rails_test_app/config.ru
|
283
|
+
- spec/support/rails_test_app/config/application.rb
|
284
|
+
- spec/support/rails_test_app/config/boot.rb
|
285
|
+
- spec/support/rails_test_app/config/database.yml
|
286
|
+
- spec/support/rails_test_app/config/environment.rb
|
287
|
+
- spec/support/rails_test_app/config/environments/development.rb
|
288
|
+
- spec/support/rails_test_app/config/environments/production.rb
|
289
|
+
- spec/support/rails_test_app/config/environments/test.rb
|
290
|
+
- spec/support/rails_test_app/config/initializers/backtrace_silencers.rb
|
291
|
+
- spec/support/rails_test_app/config/initializers/cookies_serializer.rb
|
292
|
+
- spec/support/rails_test_app/config/initializers/filter_parameter_logging.rb
|
293
|
+
- spec/support/rails_test_app/config/initializers/inflections.rb
|
294
|
+
- spec/support/rails_test_app/config/initializers/mime_types.rb
|
295
|
+
- spec/support/rails_test_app/config/initializers/session_store.rb
|
296
|
+
- spec/support/rails_test_app/config/initializers/wrap_parameters.rb
|
297
|
+
- spec/support/rails_test_app/config/locales/en.yml
|
298
|
+
- spec/support/rails_test_app/config/routes.rb
|
299
|
+
- spec/support/rails_test_app/config/secrets.yml
|
300
|
+
- spec/support/rails_test_app/db/seeds.rb
|
301
|
+
- spec/support/rails_test_app/lib/assets/.keep
|
302
|
+
- spec/support/rails_test_app/lib/tasks/.keep
|
303
|
+
- spec/support/rails_test_app/log/.keep
|
304
|
+
- spec/support/rails_test_app/public/404.html
|
305
|
+
- spec/support/rails_test_app/public/422.html
|
306
|
+
- spec/support/rails_test_app/public/500.html
|
307
|
+
- spec/support/rails_test_app/public/favicon.ico
|
308
|
+
- spec/support/rails_test_app/public/robots.txt
|
309
|
+
- spec/support/rails_test_app/spec/models/robot_to_test_spec.rb
|
310
|
+
- spec/support/rails_test_app/spec/models/test_array_spec.rb
|
311
|
+
- spec/support/rails_test_app/spec/models/test_const_spec.rb
|
312
|
+
- spec/support/rails_test_app/spec/models/test_definition_spec.rb
|
313
|
+
- spec/support/rails_test_app/spec/models/test_float_spec.rb
|
314
|
+
- spec/support/rails_test_app/spec/models/test_hash_spec.rb
|
315
|
+
- spec/support/rails_test_app/spec/models/test_int_spec.rb
|
316
|
+
- spec/support/rails_test_app/spec/models/test_send_spec.rb
|
317
|
+
- spec/support/rails_test_app/spec/models/test_str_spec.rb
|
318
|
+
- spec/support/rails_test_app/spec/models/test_sym_spec.rb
|
319
|
+
- spec/support/rails_test_app/spec/models/testing_module/bare_spec.rb
|
320
|
+
- spec/support/rails_test_app/spec/models/testing_module/klass_methods_spec.rb
|
321
|
+
- spec/support/rails_test_app/spec/models/testing_module/nested/inside_spec.rb
|
322
|
+
- spec/support/rails_test_app/spec/rails_helper.rb
|
323
|
+
- spec/support/rails_test_app/spec/spec_helper.rb
|
324
|
+
- spec/support/rails_test_app/test/controllers/.keep
|
325
|
+
- spec/support/rails_test_app/test/fixtures/.keep
|
326
|
+
- spec/support/rails_test_app/test/helpers/.keep
|
327
|
+
- spec/support/rails_test_app/test/integration/.keep
|
328
|
+
- spec/support/rails_test_app/test/mailers/.keep
|
329
|
+
- spec/support/rails_test_app/test/models/.keep
|
330
|
+
- spec/support/rails_test_app/test/test_helper.rb
|
331
|
+
- spec/support/rails_test_app/vendor/assets/javascripts/.keep
|
332
|
+
- spec/support/rails_test_app/vendor/assets/stylesheets/.keep
|
333
|
+
- zapata.gemspec
|
334
|
+
homepage: https://github.com/Nedomas/zapata
|
335
|
+
licenses:
|
336
|
+
- MIT
|
337
|
+
metadata: {}
|
338
|
+
post_install_message:
|
339
|
+
rdoc_options: []
|
340
|
+
require_paths:
|
341
|
+
- lib
|
342
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
343
|
+
requirements:
|
344
|
+
- - ">="
|
345
|
+
- !ruby/object:Gem::Version
|
346
|
+
version: '0'
|
347
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
348
|
+
requirements:
|
349
|
+
- - ">="
|
350
|
+
- !ruby/object:Gem::Version
|
351
|
+
version: '0'
|
352
|
+
requirements: []
|
353
|
+
rubyforge_project:
|
354
|
+
rubygems_version: 2.2.2
|
355
|
+
signing_key:
|
356
|
+
specification_version: 4
|
357
|
+
summary: Automatic automated test writer
|
358
|
+
test_files:
|
359
|
+
- spec/array_spec.rb
|
360
|
+
- spec/definition_spec.rb
|
361
|
+
- spec/hash_spec.rb
|
362
|
+
- spec/klass_types_spec.rb
|
363
|
+
- spec/send_spec.rb
|
364
|
+
- spec/simple_types_spec.rb
|
365
|
+
- spec/spec_helper.rb
|
366
|
+
- spec/support/rails_test_app/.gitignore
|
367
|
+
- spec/support/rails_test_app/.rspec
|
368
|
+
- spec/support/rails_test_app/Gemfile
|
369
|
+
- spec/support/rails_test_app/Gemfile.lock
|
370
|
+
- spec/support/rails_test_app/README.md
|
371
|
+
- spec/support/rails_test_app/Rakefile
|
372
|
+
- spec/support/rails_test_app/app/assets/images/.keep
|
373
|
+
- spec/support/rails_test_app/app/assets/javascripts/application.js
|
374
|
+
- spec/support/rails_test_app/app/assets/stylesheets/application.css
|
375
|
+
- spec/support/rails_test_app/app/controllers/application_controller.rb
|
376
|
+
- spec/support/rails_test_app/app/controllers/concerns/.keep
|
377
|
+
- spec/support/rails_test_app/app/helpers/application_helper.rb
|
378
|
+
- spec/support/rails_test_app/app/mailers/.keep
|
379
|
+
- spec/support/rails_test_app/app/models/.keep
|
380
|
+
- spec/support/rails_test_app/app/models/concerns/.keep
|
381
|
+
- spec/support/rails_test_app/app/models/robot_to_test.rb
|
382
|
+
- spec/support/rails_test_app/app/models/test_array.rb
|
383
|
+
- spec/support/rails_test_app/app/models/test_const.rb
|
384
|
+
- spec/support/rails_test_app/app/models/test_definition.rb
|
385
|
+
- spec/support/rails_test_app/app/models/test_float.rb
|
386
|
+
- spec/support/rails_test_app/app/models/test_hash.rb
|
387
|
+
- spec/support/rails_test_app/app/models/test_int.rb
|
388
|
+
- spec/support/rails_test_app/app/models/test_send.rb
|
389
|
+
- spec/support/rails_test_app/app/models/test_str.rb
|
390
|
+
- spec/support/rails_test_app/app/models/test_sym.rb
|
391
|
+
- spec/support/rails_test_app/app/models/testing_module/bare.rb
|
392
|
+
- spec/support/rails_test_app/app/models/testing_module/klass_methods.rb
|
393
|
+
- spec/support/rails_test_app/app/models/testing_module/nested/inside.rb
|
394
|
+
- spec/support/rails_test_app/app/views/layouts/application.html.erb
|
395
|
+
- spec/support/rails_test_app/config.ru
|
396
|
+
- spec/support/rails_test_app/config/application.rb
|
397
|
+
- spec/support/rails_test_app/config/boot.rb
|
398
|
+
- spec/support/rails_test_app/config/database.yml
|
399
|
+
- spec/support/rails_test_app/config/environment.rb
|
400
|
+
- spec/support/rails_test_app/config/environments/development.rb
|
401
|
+
- spec/support/rails_test_app/config/environments/production.rb
|
402
|
+
- spec/support/rails_test_app/config/environments/test.rb
|
403
|
+
- spec/support/rails_test_app/config/initializers/backtrace_silencers.rb
|
404
|
+
- spec/support/rails_test_app/config/initializers/cookies_serializer.rb
|
405
|
+
- spec/support/rails_test_app/config/initializers/filter_parameter_logging.rb
|
406
|
+
- spec/support/rails_test_app/config/initializers/inflections.rb
|
407
|
+
- spec/support/rails_test_app/config/initializers/mime_types.rb
|
408
|
+
- spec/support/rails_test_app/config/initializers/session_store.rb
|
409
|
+
- spec/support/rails_test_app/config/initializers/wrap_parameters.rb
|
410
|
+
- spec/support/rails_test_app/config/locales/en.yml
|
411
|
+
- spec/support/rails_test_app/config/routes.rb
|
412
|
+
- spec/support/rails_test_app/config/secrets.yml
|
413
|
+
- spec/support/rails_test_app/db/seeds.rb
|
414
|
+
- spec/support/rails_test_app/lib/assets/.keep
|
415
|
+
- spec/support/rails_test_app/lib/tasks/.keep
|
416
|
+
- spec/support/rails_test_app/log/.keep
|
417
|
+
- spec/support/rails_test_app/public/404.html
|
418
|
+
- spec/support/rails_test_app/public/422.html
|
419
|
+
- spec/support/rails_test_app/public/500.html
|
420
|
+
- spec/support/rails_test_app/public/favicon.ico
|
421
|
+
- spec/support/rails_test_app/public/robots.txt
|
422
|
+
- spec/support/rails_test_app/spec/models/robot_to_test_spec.rb
|
423
|
+
- spec/support/rails_test_app/spec/models/test_array_spec.rb
|
424
|
+
- spec/support/rails_test_app/spec/models/test_const_spec.rb
|
425
|
+
- spec/support/rails_test_app/spec/models/test_definition_spec.rb
|
426
|
+
- spec/support/rails_test_app/spec/models/test_float_spec.rb
|
427
|
+
- spec/support/rails_test_app/spec/models/test_hash_spec.rb
|
428
|
+
- spec/support/rails_test_app/spec/models/test_int_spec.rb
|
429
|
+
- spec/support/rails_test_app/spec/models/test_send_spec.rb
|
430
|
+
- spec/support/rails_test_app/spec/models/test_str_spec.rb
|
431
|
+
- spec/support/rails_test_app/spec/models/test_sym_spec.rb
|
432
|
+
- spec/support/rails_test_app/spec/models/testing_module/bare_spec.rb
|
433
|
+
- spec/support/rails_test_app/spec/models/testing_module/klass_methods_spec.rb
|
434
|
+
- spec/support/rails_test_app/spec/models/testing_module/nested/inside_spec.rb
|
435
|
+
- spec/support/rails_test_app/spec/rails_helper.rb
|
436
|
+
- spec/support/rails_test_app/spec/spec_helper.rb
|
437
|
+
- spec/support/rails_test_app/test/controllers/.keep
|
438
|
+
- spec/support/rails_test_app/test/fixtures/.keep
|
439
|
+
- spec/support/rails_test_app/test/helpers/.keep
|
440
|
+
- spec/support/rails_test_app/test/integration/.keep
|
441
|
+
- spec/support/rails_test_app/test/mailers/.keep
|
442
|
+
- spec/support/rails_test_app/test/models/.keep
|
443
|
+
- spec/support/rails_test_app/test/test_helper.rb
|
444
|
+
- spec/support/rails_test_app/vendor/assets/javascripts/.keep
|
445
|
+
- spec/support/rails_test_app/vendor/assets/stylesheets/.keep
|
446
|
+
has_rdoc:
|