fixture_kit 0.9.0 → 0.9.1

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 88d0180f3f9f71e9ed9546d271dafbd0f29d4b468e0720281a84ddec29757e9a
4
- data.tar.gz: 1d977134a7bc00fb605110489d3dea4d262cc67bed576dd536c93ea5b1bcd1a7
3
+ metadata.gz: ad45a151930afb73f5c8ba3f22a93536046fa783d240ea703c248e5329d6ceae
4
+ data.tar.gz: fdcf019b31154c187c5057df7990647e2102c173cc6310236866202d549e846c
5
5
  SHA512:
6
- metadata.gz: a6fea52776d34437dfab5e892d8185d63894bf9f45a8a0dc8c53ff435ef343ce7a3b90891166ef63a760b4c5bcec5a7d6c6a4ab7b4e077f53366a9b2dfcc2563
7
- data.tar.gz: 2fb7a08b6657e1e23dfe165e919cfd30fbb08b626d40e3ff81672db94795346ec7082afc39d107c17a40ebc79169b9325f60d3e9ef9281b17f73994eceb633d6
6
+ metadata.gz: 73e72901b28d7f55c7714cbb581b3fa4703533968d23b20c6d0e010be4001a7cc39655ad56726f125d7b655a9ad94ff770735a72eef54a50041b9f21a81511fd
7
+ data.tar.gz: b104a22228a595e9cac03e8facb58ca9174b62d22d15cb347b4fd9ef6c5fb11de1187b3d05c1c8cd9bd71ae0b417d965e1af436a0c4af9efdd6f4f06e75649ba
data/README.md CHANGED
@@ -1,6 +1,10 @@
1
1
  # FixtureKit
2
2
 
3
- Fast test fixtures with SQL caching.
3
+ Fixture-level performance without giving up FactoryBot-style test setup.
4
+
5
+ Rails fixtures are very performant. But in large companies with hundreds of models and varying Rails familiarity, maintaining a well-manicured garden of YAML files quickly becomes unrealistic.
6
+
7
+ Teams reach for tools like FactoryBot to simplify test setup and keep things readable. The tradeoff is performance. FixtureKit gives you the speed wins while letting you keep the test setup tooling your teams already use, by generating and caching fixture data on-demand.
4
8
 
5
9
  - Full documentation (guides): [GitHub Wiki](https://github.com/Gusto/fixture_kit/wiki)
6
10
  - API/reference (canonical): [docs/reference.md](docs/reference.md)
@@ -52,7 +52,7 @@ module FixtureKit
52
52
  FixtureKit.runner.configuration.adapter(FixtureKit::RSpecAdapter)
53
53
 
54
54
  config.extend ClassMethods
55
- config.include InstanceMethods, DECLARATION_METADATA_KEY
55
+ config.include InstanceMethods
56
56
 
57
57
  # Load declared fixtures at the beginning of each example.
58
58
  # Runs inside transactional fixtures and before user-defined before hooks.
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module FixtureKit
4
- VERSION = "0.9.0"
4
+ VERSION = "0.9.1"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fixture_kit
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.0
4
+ version: 0.9.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ngan Pham