stones 1.3.3 → 1.4.0
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/stones/version.rb +2 -1
 - data/lib/stones/version.rb.bak +2 -1
 - metadata +1 -2
 - data/config/initializers/concerns.rb +0 -15
 
    
        checksums.yaml
    CHANGED
    
    | 
         @@ -1,7 +1,7 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            ---
         
     | 
| 
       2 
2 
     | 
    
         
             
            SHA256:
         
     | 
| 
       3 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       4 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 3 
     | 
    
         
            +
              metadata.gz: 7fe81d56b7136cf16257a0b65cdc824ae82fe3a0a3629c71d2fc2b90a0352aa4
         
     | 
| 
      
 4 
     | 
    
         
            +
              data.tar.gz: c1896708e566fb30745c19136fba3151ea8391662056d970d02cceae9dea21ca
         
     | 
| 
       5 
5 
     | 
    
         
             
            SHA512:
         
     | 
| 
       6 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       7 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 6 
     | 
    
         
            +
              metadata.gz: da5fb0c33b77ea9f2f805430c2edee3e186e706bf2fe74d77dfb65efa50dbb4b0d6456a56d8831bb0171c91a51a720b0a3336019836465d9b1789e8464cacb5c
         
     | 
| 
      
 7 
     | 
    
         
            +
              data.tar.gz: 994d966065c5b0fbf0f65a16feec1624b559955afb6f17ef5fa4c44e0501612c7a39ded32aa75739182b5b3978e3d31591d30832966ce09c9b72af89202ba826
         
     | 
    
        data/lib/stones/version.rb
    CHANGED
    
    
    
        data/lib/stones/version.rb.bak
    CHANGED
    
    
    
        metadata
    CHANGED
    
    | 
         @@ -1,7 +1,7 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            --- !ruby/object:Gem::Specification
         
     | 
| 
       2 
2 
     | 
    
         
             
            name: stones
         
     | 
| 
       3 
3 
     | 
    
         
             
            version: !ruby/object:Gem::Version
         
     | 
| 
       4 
     | 
    
         
            -
              version: 1. 
     | 
| 
      
 4 
     | 
    
         
            +
              version: 1.4.0
         
     | 
| 
       5 
5 
     | 
    
         
             
            platform: ruby
         
     | 
| 
       6 
6 
     | 
    
         
             
            authors:
         
     | 
| 
       7 
7 
     | 
    
         
             
            - Dittmar Krall
         
     | 
| 
         @@ -79,7 +79,6 @@ files: 
     | 
|
| 
       79 
79 
     | 
    
         
             
            - app/views/layouts/application.html.erb
         
     | 
| 
       80 
80 
     | 
    
         
             
            - app/views/root/about.slim
         
     | 
| 
       81 
81 
     | 
    
         
             
            - app/views/shared/_error_explanation.html.erb
         
     | 
| 
       82 
     | 
    
         
            -
            - config/initializers/concerns.rb
         
     | 
| 
       83 
82 
     | 
    
         
             
            - lib/stones.rb
         
     | 
| 
       84 
83 
     | 
    
         
             
            - lib/stones/engine.rb
         
     | 
| 
       85 
84 
     | 
    
         
             
            - lib/stones/version.rb
         
     | 
| 
         @@ -1,15 +0,0 @@ 
     | 
|
| 
       1 
     | 
    
         
            -
            class << ActiveRecord::Base
         
     | 
| 
       2 
     | 
    
         
            -
              def concerned_with(*concerns)
         
     | 
| 
       3 
     | 
    
         
            -
                concerns.each do |concern|
         
     | 
| 
       4 
     | 
    
         
            -
                  require_dependency "#{name.underscore}/#{concern}"
         
     | 
| 
       5 
     | 
    
         
            -
                end
         
     | 
| 
       6 
     | 
    
         
            -
              end
         
     | 
| 
       7 
     | 
    
         
            -
            end
         
     | 
| 
       8 
     | 
    
         
            -
             
     | 
| 
       9 
     | 
    
         
            -
            class << ActionController::Base
         
     | 
| 
       10 
     | 
    
         
            -
              def concerned_with(*concerns)
         
     | 
| 
       11 
     | 
    
         
            -
                concerns.each do |concern|
         
     | 
| 
       12 
     | 
    
         
            -
                  require_dependency "#{name.underscore}/#{concern}"
         
     | 
| 
       13 
     | 
    
         
            -
                end
         
     | 
| 
       14 
     | 
    
         
            -
              end
         
     | 
| 
       15 
     | 
    
         
            -
            end
         
     |