vanity 4.0.2 → 4.0.4
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 +4 -4
- data/.github/workflows/linting.yml +6 -1
- data/.github/workflows/test.yml +7 -1
- data/Appraisals +3 -3
- data/CHANGELOG +8 -0
- data/Gemfile +3 -2
- data/Gemfile.lock +20 -17
- data/README.md +3 -1
- data/gemfiles/rails52.gemfile +4 -3
- data/gemfiles/rails52.gemfile.lock +152 -153
- data/gemfiles/rails60.gemfile +4 -3
- data/gemfiles/rails60.gemfile.lock +173 -156
- data/gemfiles/rails61.gemfile +4 -3
- data/gemfiles/rails61.gemfile.lock +183 -163
- data/lib/vanity/configuration.rb +1 -1
- data/lib/vanity/frameworks/rails.rb +2 -1
- data/lib/vanity/safe_yaml.rb +21 -0
- data/lib/vanity/version.rb +1 -1
- data/lib/vanity.rb +1 -0
- data/test/metric/active_record_test.rb +3 -3
- data/test/test_helper.rb +5 -1
- data/vanity.gemspec +0 -1
- metadata +6 -65
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: vanity
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 4.0.
|
4
|
+
version: 4.0.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Assaf Arkin
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-
|
11
|
+
date: 2022-11-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: i18n
|
@@ -211,6 +211,7 @@ files:
|
|
211
211
|
- lib/vanity/metric/google_analytics.rb
|
212
212
|
- lib/vanity/metric/remote.rb
|
213
213
|
- lib/vanity/playground.rb
|
214
|
+
- lib/vanity/safe_yaml.rb
|
214
215
|
- lib/vanity/templates.rb
|
215
216
|
- lib/vanity/templates/_ab_test.erb
|
216
217
|
- lib/vanity/templates/_experiment.erb
|
@@ -295,7 +296,7 @@ metadata:
|
|
295
296
|
post_install_message: To get started run vanity --help
|
296
297
|
rdoc_options:
|
297
298
|
- "--title"
|
298
|
-
- Vanity 4.0.
|
299
|
+
- Vanity 4.0.4
|
299
300
|
- "--main"
|
300
301
|
- README.md
|
301
302
|
- "--webcvs"
|
@@ -313,68 +314,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
313
314
|
- !ruby/object:Gem::Version
|
314
315
|
version: '0'
|
315
316
|
requirements: []
|
316
|
-
rubygems_version: 3.
|
317
|
+
rubygems_version: 3.1.6
|
317
318
|
signing_key:
|
318
319
|
specification_version: 4
|
319
320
|
summary: Experience Driven Development framework for Ruby
|
320
|
-
test_files:
|
321
|
-
- test/adapters/active_record_adapter_test.rb
|
322
|
-
- test/adapters/mock_adapter_test.rb
|
323
|
-
- test/adapters/mongodb_adapter_test.rb
|
324
|
-
- test/adapters/redis_adapter_test.rb
|
325
|
-
- test/adapters/shared_tests.rb
|
326
|
-
- test/autoconnect_test.rb
|
327
|
-
- test/cli_test.rb
|
328
|
-
- test/commands/report_test.rb
|
329
|
-
- test/configuration_test.rb
|
330
|
-
- test/connection_test.rb
|
331
|
-
- test/data/redis.yml.url
|
332
|
-
- test/data/vanity.yml.activerecord
|
333
|
-
- test/data/vanity.yml.mock
|
334
|
-
- test/data/vanity.yml.redis
|
335
|
-
- test/data/vanity.yml.redis-erb
|
336
|
-
- test/dummy/Rakefile
|
337
|
-
- test/dummy/app/controllers/application_controller.rb
|
338
|
-
- test/dummy/app/controllers/use_vanity_controller.rb
|
339
|
-
- test/dummy/app/helpers/application_helper.rb
|
340
|
-
- test/dummy/app/mailers/vanity_mailer.rb
|
341
|
-
- test/dummy/app/views/layouts/application.html.erb
|
342
|
-
- test/dummy/config.ru
|
343
|
-
- test/dummy/config/application.rb
|
344
|
-
- test/dummy/config/boot.rb
|
345
|
-
- test/dummy/config/database.yml
|
346
|
-
- test/dummy/config/environment.rb
|
347
|
-
- test/dummy/config/environments/development.rb
|
348
|
-
- test/dummy/config/environments/production.rb
|
349
|
-
- test/dummy/config/environments/test.rb
|
350
|
-
- test/dummy/config/initializers/backtrace_silencers.rb
|
351
|
-
- test/dummy/config/initializers/inflections.rb
|
352
|
-
- test/dummy/config/initializers/mime_types.rb
|
353
|
-
- test/dummy/config/initializers/secret_token.rb
|
354
|
-
- test/dummy/config/initializers/session_store.rb
|
355
|
-
- test/dummy/config/initializers/vanity.rb
|
356
|
-
- test/dummy/config/locales/en.yml
|
357
|
-
- test/dummy/config/routes.rb
|
358
|
-
- test/dummy/config/vanity.yml
|
359
|
-
- test/dummy/log/development.log
|
360
|
-
- test/dummy/log/production.log
|
361
|
-
- test/dummy/log/server.log
|
362
|
-
- test/dummy/public/favicon.ico
|
363
|
-
- test/dummy/public/stylesheets/.gitkeep
|
364
|
-
- test/dummy/script/rails
|
365
|
-
- test/experiment/ab_test.rb
|
366
|
-
- test/experiment/base_test.rb
|
367
|
-
- test/frameworks/rails/action_controller_test.rb
|
368
|
-
- test/frameworks/rails/action_mailer_test.rb
|
369
|
-
- test/frameworks/rails/action_view_test.rb
|
370
|
-
- test/frameworks/rails/rails_test.rb
|
371
|
-
- test/helper_test.rb
|
372
|
-
- test/metric/active_record_test.rb
|
373
|
-
- test/metric/base_test.rb
|
374
|
-
- test/metric/google_analytics_test.rb
|
375
|
-
- test/metric/remote_test.rb
|
376
|
-
- test/playground_test.rb
|
377
|
-
- test/templates_test.rb
|
378
|
-
- test/test_helper.rb
|
379
|
-
- test/vanity_test.rb
|
380
|
-
- test/web/rails/dashboard_test.rb
|
321
|
+
test_files: []
|