flatware-cucumber 2.2.0 → 2.3.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 +4 -4
 - data/README.md +26 -0
 - metadata +4 -4
 
    
        checksums.yaml
    CHANGED
    
    | 
         @@ -1,7 +1,7 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            ---
         
     | 
| 
       2 
2 
     | 
    
         
             
            SHA256:
         
     | 
| 
       3 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       4 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 3 
     | 
    
         
            +
              metadata.gz: 2c168afa4eab8c03507ce2da5e9fcd3489691025d50f019b112528038dc817b4
         
     | 
| 
      
 4 
     | 
    
         
            +
              data.tar.gz: 3730dbdbf70dbcd9506a9373111ee9302783d032d4b6d16131e9b64aa075a037
         
     | 
| 
       5 
5 
     | 
    
         
             
            SHA512:
         
     | 
| 
       6 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       7 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 6 
     | 
    
         
            +
              metadata.gz: ef6706142a433f74d1683916bdd8929744e03421c629d711200f6514438a92d14e8ecdb4d18b37625764e15da8789a5fa24c03e164b0504ef02b516effcbb74a
         
     | 
| 
      
 7 
     | 
    
         
            +
              data.tar.gz: 5cc6b0b9ac563994ab8b47f7cc161f0d7f5f9c731f64d072eae63a46d74dd47123aa9576304ffffcd65f80a28ad6dad3568abdc25cf8019449980bf0d7963e27
         
     | 
    
        data/README.md
    CHANGED
    
    | 
         @@ -106,6 +106,11 @@ Flatware has a couple lifecycle callbacks that you can use to avoid booting your 
     | 
|
| 
       106 
106 
     | 
    
         
             
            over again on every core. One way to take advantage of this via a `spec/flatware_helper.rb` file like so:
         
     | 
| 
       107 
107 
     | 
    
         | 
| 
       108 
108 
     | 
    
         
             
            ```ruby
         
     | 
| 
      
 109 
     | 
    
         
            +
            ##
         
     | 
| 
      
 110 
     | 
    
         
            +
            # uncomment if you get a segmentation fault from the "pg" gem
         
     | 
| 
      
 111 
     | 
    
         
            +
            # @see https://github.com/ged/ruby-pg/issues/311#issuecomment-1609970533
         
     | 
| 
      
 112 
     | 
    
         
            +
            # ENV["PGGSSENCMODE"] = "disable"
         
     | 
| 
      
 113 
     | 
    
         
            +
             
     | 
| 
       109 
114 
     | 
    
         
             
            Flatware.configure do |conf|
         
     | 
| 
       110 
115 
     | 
    
         
             
              conf.before_fork do
         
     | 
| 
       111 
116 
     | 
    
         
             
                require 'rails_helper'
         
     | 
| 
         @@ -114,6 +119,11 @@ Flatware.configure do |conf| 
     | 
|
| 
       114 
119 
     | 
    
         
             
              end
         
     | 
| 
       115 
120 
     | 
    
         | 
| 
       116 
121 
     | 
    
         
             
              conf.after_fork do |test_env_number|
         
     | 
| 
      
 122 
     | 
    
         
            +
                ##
         
     | 
| 
      
 123 
     | 
    
         
            +
                # uncomment if you're using SimpleCov and have started it in `rails_helper` as suggested here:
         
     | 
| 
      
 124 
     | 
    
         
            +
                # @see https://github.com/simplecov-ruby/simplecov/tree/main?tab=readme-ov-file#use-it-with-any-framework
         
     | 
| 
      
 125 
     | 
    
         
            +
                # SimpleCov.at_fork.call(test_env_number)
         
     | 
| 
      
 126 
     | 
    
         
            +
             
     | 
| 
       117 
127 
     | 
    
         
             
                config = ActiveRecord::Base.connection_db_config.configuration_hash
         
     | 
| 
       118 
128 
     | 
    
         | 
| 
       119 
129 
     | 
    
         
             
                ActiveRecord::Base.establish_connection(
         
     | 
| 
         @@ -126,6 +136,15 @@ end 
     | 
|
| 
       126 
136 
     | 
    
         
             
            ```
         
     | 
| 
       127 
137 
     | 
    
         
             
            Now when I run `bundle exec flatware rspec -r ./spec/flatware_helper` My app only boots once, rather than once per core.
         
     | 
| 
       128 
138 
     | 
    
         | 
| 
      
 139 
     | 
    
         
            +
            ## SimpleCov
         
     | 
| 
      
 140 
     | 
    
         
            +
             
     | 
| 
      
 141 
     | 
    
         
            +
            If you're using SimpleCov, follow [their directions](https://github.com/simplecov-ruby/simplecov/tree/main?tab=readme-ov-file#use-it-with-any-framework) to install. When you have it working as desired for serial runs, add
         
     | 
| 
      
 142 
     | 
    
         
            +
            `SimpleCov.at_fork.call(test_env_number)` to flatware's `after_fork` hook. You should now get the same coverage stats from parallel and serial runs.
         
     | 
| 
      
 143 
     | 
    
         
            +
             
     | 
| 
      
 144 
     | 
    
         
            +
            ## Segmentation faults in the PG gem
         
     | 
| 
      
 145 
     | 
    
         
            +
             
     | 
| 
      
 146 
     | 
    
         
            +
            If you get a segmentation fault on start you may need to add `ENV["PGGSSENCMODE"] = "disable"` to the top of your flatware helper.
         
     | 
| 
      
 147 
     | 
    
         
            +
             
     | 
| 
       129 
148 
     | 
    
         
             
            ## Design Goals
         
     | 
| 
       130 
149 
     | 
    
         | 
| 
       131 
150 
     | 
    
         
             
            ### Maintainable
         
     | 
| 
         @@ -170,3 +189,10 @@ Do whatever you want. I'd love to help make sure Flatware meets your needs. 
     | 
|
| 
       170 
189 
     | 
    
         
             
            [](https://hashrocket.com)
         
     | 
| 
       171 
190 
     | 
    
         | 
| 
       172 
191 
     | 
    
         
             
            Flatware is supported by the team at [Hashrocket](https://hashrocket.com), a multidisciplinary design & development consultancy. If you'd like to [work with us](https://hashrocket.com/contact-us/hire-us) or [join our team](https://hashrocket.com/contact-us/jobs), don't hesitate to get in touch.
         
     | 
| 
      
 192 
     | 
    
         
            +
             
     | 
| 
      
 193 
     | 
    
         
            +
             
     | 
| 
      
 194 
     | 
    
         
            +
            # TODO:
         
     | 
| 
      
 195 
     | 
    
         
            +
             
     | 
| 
      
 196 
     | 
    
         
            +
            possible simplecov fixes
         
     | 
| 
      
 197 
     | 
    
         
            +
             
     | 
| 
      
 198 
     | 
    
         
            +
            1. seems like we won't get the same results as serial rspec runs unless we start simplecov after fork. And if we do that, I think a process needs to claim to be the last one for simplecov to run the merge.
         
     | 
    
        metadata
    CHANGED
    
    | 
         @@ -1,14 +1,14 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            --- !ruby/object:Gem::Specification
         
     | 
| 
       2 
2 
     | 
    
         
             
            name: flatware-cucumber
         
     | 
| 
       3 
3 
     | 
    
         
             
            version: !ruby/object:Gem::Version
         
     | 
| 
       4 
     | 
    
         
            -
              version: 2. 
     | 
| 
      
 4 
     | 
    
         
            +
              version: 2.3.1
         
     | 
| 
       5 
5 
     | 
    
         
             
            platform: ruby
         
     | 
| 
       6 
6 
     | 
    
         
             
            authors:
         
     | 
| 
       7 
7 
     | 
    
         
             
            - Brian Dunn
         
     | 
| 
       8 
8 
     | 
    
         
             
            autorequire:
         
     | 
| 
       9 
9 
     | 
    
         
             
            bindir: bin
         
     | 
| 
       10 
10 
     | 
    
         
             
            cert_chain: []
         
     | 
| 
       11 
     | 
    
         
            -
            date: 2024- 
     | 
| 
      
 11 
     | 
    
         
            +
            date: 2024-03-20 00:00:00.000000000 Z
         
     | 
| 
       12 
12 
     | 
    
         
             
            dependencies:
         
     | 
| 
       13 
13 
     | 
    
         
             
            - !ruby/object:Gem::Dependency
         
     | 
| 
       14 
14 
     | 
    
         
             
              name: cucumber
         
     | 
| 
         @@ -30,14 +30,14 @@ dependencies: 
     | 
|
| 
       30 
30 
     | 
    
         
             
                requirements:
         
     | 
| 
       31 
31 
     | 
    
         
             
                - - '='
         
     | 
| 
       32 
32 
     | 
    
         
             
                  - !ruby/object:Gem::Version
         
     | 
| 
       33 
     | 
    
         
            -
                    version: 2. 
     | 
| 
      
 33 
     | 
    
         
            +
                    version: 2.3.1
         
     | 
| 
       34 
34 
     | 
    
         
             
              type: :runtime
         
     | 
| 
       35 
35 
     | 
    
         
             
              prerelease: false
         
     | 
| 
       36 
36 
     | 
    
         
             
              version_requirements: !ruby/object:Gem::Requirement
         
     | 
| 
       37 
37 
     | 
    
         
             
                requirements:
         
     | 
| 
       38 
38 
     | 
    
         
             
                - - '='
         
     | 
| 
       39 
39 
     | 
    
         
             
                  - !ruby/object:Gem::Version
         
     | 
| 
       40 
     | 
    
         
            -
                    version: 2. 
     | 
| 
      
 40 
     | 
    
         
            +
                    version: 2.3.1
         
     | 
| 
       41 
41 
     | 
    
         
             
            description: A distributed cucumber runner
         
     | 
| 
       42 
42 
     | 
    
         
             
            email: brian@hashrocket.com
         
     | 
| 
       43 
43 
     | 
    
         
             
            executables: []
         
     |