spyke 5.3.1 → 5.3.2
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/lib/spyke/attribute_assignment.rb +4 -0
 - data/lib/spyke/version.rb +1 -1
 - data/test/config_test.rb +11 -0
 - data/test/orm_test.rb +8 -0
 - metadata +4 -2
 
    
        checksums.yaml
    CHANGED
    
    | 
         @@ -1,7 +1,7 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            ---
         
     | 
| 
       2 
2 
     | 
    
         
             
            SHA256:
         
     | 
| 
       3 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       4 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 3 
     | 
    
         
            +
              metadata.gz: 7b4cc7a2c704c8dd15ed7c5aaa2f0f19e198643ea5ee5f91de7d5842da4b6c9b
         
     | 
| 
      
 4 
     | 
    
         
            +
              data.tar.gz: 1b92e7a21d361198245a969be7e27635cafecfa17b3001649b0cb07d7f4ccc42
         
     | 
| 
       5 
5 
     | 
    
         
             
            SHA512:
         
     | 
| 
       6 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       7 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 6 
     | 
    
         
            +
              metadata.gz: f8748c573657622a373d25a234a2fc628385601a4651f2ce7308aebf929909b0c4bd4eb06aa24ccf7378e3dd3fa469a9b598457b2faf0092646ffba2a257b2a3
         
     | 
| 
      
 7 
     | 
    
         
            +
              data.tar.gz: 05f35ee6a8e7d11755c784c0903e83de0f970f4b071108048045c1570009a5cc514d7ea8121b8b26a125f24b06db08b5138a65e52899b61d4c0e8929351603d7
         
     | 
    
        data/lib/spyke/version.rb
    CHANGED
    
    
    
        data/test/config_test.rb
    ADDED
    
    | 
         @@ -0,0 +1,11 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            require 'test_helper'
         
     | 
| 
      
 2 
     | 
    
         
            +
             
     | 
| 
      
 3 
     | 
    
         
            +
            module Spyke
         
     | 
| 
      
 4 
     | 
    
         
            +
              class ConfigConnectionWarnTest < MiniTest::Test
         
     | 
| 
      
 5 
     | 
    
         
            +
                def test_config_connection_warn
         
     | 
| 
      
 6 
     | 
    
         
            +
                  assert_output '', "[DEPRECATION] `Spyke::Config.connection=` is deprecated.  Please use `Spyke::Base.connection=` instead.\n" do
         
     | 
| 
      
 7 
     | 
    
         
            +
                    Spyke::Config.connection = Spyke::Base.connection
         
     | 
| 
      
 8 
     | 
    
         
            +
                  end
         
     | 
| 
      
 9 
     | 
    
         
            +
                end
         
     | 
| 
      
 10 
     | 
    
         
            +
              end
         
     | 
| 
      
 11 
     | 
    
         
            +
            end
         
     | 
    
        data/test/orm_test.rb
    CHANGED
    
    | 
         @@ -206,5 +206,13 @@ module Spyke 
     | 
|
| 
       206 
206 
     | 
    
         
             
                  assert_equal 1, user[:uuid]
         
     | 
| 
       207 
207 
     | 
    
         
             
                  assert_equal 42, user[:id]
         
     | 
| 
       208 
208 
     | 
    
         
             
                end
         
     | 
| 
      
 209 
     | 
    
         
            +
             
     | 
| 
      
 210 
     | 
    
         
            +
                def test_custom_primary_key_used_for_persistence_check
         
     | 
| 
      
 211 
     | 
    
         
            +
                  user = User.new
         
     | 
| 
      
 212 
     | 
    
         
            +
                  refute user.persisted?
         
     | 
| 
      
 213 
     | 
    
         
            +
             
     | 
| 
      
 214 
     | 
    
         
            +
                  user.uuid = 1
         
     | 
| 
      
 215 
     | 
    
         
            +
                  assert user.persisted?
         
     | 
| 
      
 216 
     | 
    
         
            +
                end
         
     | 
| 
       209 
217 
     | 
    
         
             
              end
         
     | 
| 
       210 
218 
     | 
    
         
             
            end
         
     | 
    
        metadata
    CHANGED
    
    | 
         @@ -1,14 +1,14 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            --- !ruby/object:Gem::Specification
         
     | 
| 
       2 
2 
     | 
    
         
             
            name: spyke
         
     | 
| 
       3 
3 
     | 
    
         
             
            version: !ruby/object:Gem::Version
         
     | 
| 
       4 
     | 
    
         
            -
              version: 5.3. 
     | 
| 
      
 4 
     | 
    
         
            +
              version: 5.3.2
         
     | 
| 
       5 
5 
     | 
    
         
             
            platform: ruby
         
     | 
| 
       6 
6 
     | 
    
         
             
            authors:
         
     | 
| 
       7 
7 
     | 
    
         
             
            - Jens Balvig
         
     | 
| 
       8 
8 
     | 
    
         
             
            autorequire: 
         
     | 
| 
       9 
9 
     | 
    
         
             
            bindir: bin
         
     | 
| 
       10 
10 
     | 
    
         
             
            cert_chain: []
         
     | 
| 
       11 
     | 
    
         
            -
            date: 2018- 
     | 
| 
      
 11 
     | 
    
         
            +
            date: 2018-10-01 00:00:00.000000000 Z
         
     | 
| 
       12 
12 
     | 
    
         
             
            dependencies:
         
     | 
| 
       13 
13 
     | 
    
         
             
            - !ruby/object:Gem::Dependency
         
     | 
| 
       14 
14 
     | 
    
         
             
              name: activesupport
         
     | 
| 
         @@ -288,6 +288,7 @@ files: 
     | 
|
| 
       288 
288 
     | 
    
         
             
            - test/associations_test.rb
         
     | 
| 
       289 
289 
     | 
    
         
             
            - test/attributes_test.rb
         
     | 
| 
       290 
290 
     | 
    
         
             
            - test/callbacks_test.rb
         
     | 
| 
      
 291 
     | 
    
         
            +
            - test/config_test.rb
         
     | 
| 
       291 
292 
     | 
    
         
             
            - test/custom_request_test.rb
         
     | 
| 
       292 
293 
     | 
    
         
             
            - test/fallbacks_test.rb
         
     | 
| 
       293 
294 
     | 
    
         
             
            - test/orm_test.rb
         
     | 
| 
         @@ -324,6 +325,7 @@ test_files: 
     | 
|
| 
       324 
325 
     | 
    
         
             
            - test/associations_test.rb
         
     | 
| 
       325 
326 
     | 
    
         
             
            - test/attributes_test.rb
         
     | 
| 
       326 
327 
     | 
    
         
             
            - test/callbacks_test.rb
         
     | 
| 
      
 328 
     | 
    
         
            +
            - test/config_test.rb
         
     | 
| 
       327 
329 
     | 
    
         
             
            - test/custom_request_test.rb
         
     | 
| 
       328 
330 
     | 
    
         
             
            - test/fallbacks_test.rb
         
     | 
| 
       329 
331 
     | 
    
         
             
            - test/orm_test.rb
         
     |