dohutil 0.2.23 → 0.2.24
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/dohutil/core_ext/array.rb +11 -0
 - data/test/core_ext/array.dt.rb +17 -0
 - metadata +7 -5
 - data/lib/dohutil/core_ext/random.rb +0 -8
 
    
        checksums.yaml
    CHANGED
    
    | 
         @@ -1,7 +1,7 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            ---
         
     | 
| 
       2 
2 
     | 
    
         
             
            SHA1:
         
     | 
| 
       3 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       4 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 3 
     | 
    
         
            +
              metadata.gz: 8073d378dc766aa32dc4f531b73291fcf4a8c548
         
     | 
| 
      
 4 
     | 
    
         
            +
              data.tar.gz: 9ab30fa59a185da238b175463485453b4df8c163
         
     | 
| 
       5 
5 
     | 
    
         
             
            SHA512:
         
     | 
| 
       6 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       7 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 6 
     | 
    
         
            +
              metadata.gz: 738e5836c9c4f36fd138a0ac5919d4ef90425451dba12afccb7674c7a2779681e51d82bb8544fb87d1fd7c556e91b7d9a9f298e701710ffcb767e82a993330d0
         
     | 
| 
      
 7 
     | 
    
         
            +
              data.tar.gz: 03cfb8772430db2e84718b0e2b4f4e545aabdc533f968a954ba4930f8d0ae0151a4c4d420173604de4bd54386b3aee6dd2b51f6310f48b5a02104728e013d21e
         
     | 
| 
         @@ -0,0 +1,17 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            require 'dohutil/core_ext/array'
         
     | 
| 
      
 2 
     | 
    
         
            +
             
     | 
| 
      
 3 
     | 
    
         
            +
            module Doh
         
     | 
| 
      
 4 
     | 
    
         
            +
             
     | 
| 
      
 5 
     | 
    
         
            +
            class Test_core_ext_array < DohTest::TestGroup
         
     | 
| 
      
 6 
     | 
    
         
            +
              def test_include_any
         
     | 
| 
      
 7 
     | 
    
         
            +
                assert([1, 2, 3].include_any?([1,4,5]))
         
     | 
| 
      
 8 
     | 
    
         
            +
                assert(![1, 2, 3].include_any?([4,5,6]))
         
     | 
| 
      
 9 
     | 
    
         
            +
              end
         
     | 
| 
      
 10 
     | 
    
         
            +
             
     | 
| 
      
 11 
     | 
    
         
            +
              def test_include_all
         
     | 
| 
      
 12 
     | 
    
         
            +
                assert([1, 2, 3].include_all?([1,2]))
         
     | 
| 
      
 13 
     | 
    
         
            +
                assert(![1, 2, 3].include_all?([1,2,4]))
         
     | 
| 
      
 14 
     | 
    
         
            +
              end
         
     | 
| 
      
 15 
     | 
    
         
            +
            end
         
     | 
| 
      
 16 
     | 
    
         
            +
             
     | 
| 
      
 17 
     | 
    
         
            +
            end
         
     | 
    
        metadata
    CHANGED
    
    | 
         @@ -1,7 +1,7 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            --- !ruby/object:Gem::Specification
         
     | 
| 
       2 
2 
     | 
    
         
             
            name: dohutil
         
     | 
| 
       3 
3 
     | 
    
         
             
            version: !ruby/object:Gem::Version
         
     | 
| 
       4 
     | 
    
         
            -
              version: 0.2. 
     | 
| 
      
 4 
     | 
    
         
            +
              version: 0.2.24
         
     | 
| 
       5 
5 
     | 
    
         
             
            platform: ruby
         
     | 
| 
       6 
6 
     | 
    
         
             
            authors:
         
     | 
| 
       7 
7 
     | 
    
         
             
            - Makani Mason
         
     | 
| 
         @@ -9,7 +9,7 @@ authors: 
     | 
|
| 
       9 
9 
     | 
    
         
             
            autorequire: 
         
     | 
| 
       10 
10 
     | 
    
         
             
            bindir: bin
         
     | 
| 
       11 
11 
     | 
    
         
             
            cert_chain: []
         
     | 
| 
       12 
     | 
    
         
            -
            date: 2015- 
     | 
| 
      
 12 
     | 
    
         
            +
            date: 2015-07-23 00:00:00.000000000 Z
         
     | 
| 
       13 
13 
     | 
    
         
             
            dependencies:
         
     | 
| 
       14 
14 
     | 
    
         
             
            - !ruby/object:Gem::Dependency
         
     | 
| 
       15 
15 
     | 
    
         
             
              name: dohroot
         
     | 
| 
         @@ -61,7 +61,6 @@ extensions: [] 
     | 
|
| 
       61 
61 
     | 
    
         
             
            extra_rdoc_files:
         
     | 
| 
       62 
62 
     | 
    
         
             
            - MIT-LICENSE
         
     | 
| 
       63 
63 
     | 
    
         
             
            files:
         
     | 
| 
       64 
     | 
    
         
            -
            - MIT-LICENSE
         
     | 
| 
       65 
64 
     | 
    
         
             
            - lib/dohutil/app/cli.rb
         
     | 
| 
       66 
65 
     | 
    
         
             
            - lib/dohutil/app/init_from_prog.rb
         
     | 
| 
       67 
66 
     | 
    
         
             
            - lib/dohutil/app/init_from_pwd.rb
         
     | 
| 
         @@ -71,6 +70,7 @@ files: 
     | 
|
| 
       71 
70 
     | 
    
         
             
            - lib/dohutil/array_to_hash.rb
         
     | 
| 
       72 
71 
     | 
    
         
             
            - lib/dohutil/class_basename.rb
         
     | 
| 
       73 
72 
     | 
    
         
             
            - lib/dohutil/config.rb
         
     | 
| 
      
 73 
     | 
    
         
            +
            - lib/dohutil/core_ext/array.rb
         
     | 
| 
       74 
74 
     | 
    
         
             
            - lib/dohutil/core_ext/bigdecimal.rb
         
     | 
| 
       75 
75 
     | 
    
         
             
            - lib/dohutil/core_ext/boolean.rb
         
     | 
| 
       76 
76 
     | 
    
         
             
            - lib/dohutil/core_ext/date.rb
         
     | 
| 
         @@ -80,7 +80,6 @@ files: 
     | 
|
| 
       80 
80 
     | 
    
         
             
            - lib/dohutil/core_ext/force_deep_copy.rb
         
     | 
| 
       81 
81 
     | 
    
         
             
            - lib/dohutil/core_ext/hash.rb
         
     | 
| 
       82 
82 
     | 
    
         
             
            - lib/dohutil/core_ext/inspect.rb
         
     | 
| 
       83 
     | 
    
         
            -
            - lib/dohutil/core_ext/random.rb
         
     | 
| 
       84 
83 
     | 
    
         
             
            - lib/dohutil/core_ext/string.rb
         
     | 
| 
       85 
84 
     | 
    
         
             
            - lib/dohutil/current_date.rb
         
     | 
| 
       86 
85 
     | 
    
         
             
            - lib/dohutil/disable_verbose.rb
         
     | 
| 
         @@ -89,6 +88,7 @@ files: 
     | 
|
| 
       89 
88 
     | 
    
         
             
            - lib/dohutil/move_weekday.rb
         
     | 
| 
       90 
89 
     | 
    
         
             
            - lib/dohutil/password_helper.rb
         
     | 
| 
       91 
90 
     | 
    
         
             
            - lib/dohutil/to_display.rb
         
     | 
| 
      
 91 
     | 
    
         
            +
            - test/core_ext/array.dt.rb
         
     | 
| 
       92 
92 
     | 
    
         
             
            - test/core_ext/bigdecimal.dt.rb
         
     | 
| 
       93 
93 
     | 
    
         
             
            - test/core_ext/date.dt.rb
         
     | 
| 
       94 
94 
     | 
    
         
             
            - test/core_ext/datewithtime.dt.rb
         
     | 
| 
         @@ -96,6 +96,7 @@ files: 
     | 
|
| 
       96 
96 
     | 
    
         
             
            - test/core_ext/string.dt.rb
         
     | 
| 
       97 
97 
     | 
    
         
             
            - test/exception.dt.rb
         
     | 
| 
       98 
98 
     | 
    
         
             
            - test/move_weekday.dt.rb
         
     | 
| 
      
 99 
     | 
    
         
            +
            - MIT-LICENSE
         
     | 
| 
       99 
100 
     | 
    
         
             
            homepage: https://github.com/atpsoft/dohutil
         
     | 
| 
       100 
101 
     | 
    
         
             
            licenses:
         
     | 
| 
       101 
102 
     | 
    
         
             
            - MIT
         
     | 
| 
         @@ -116,11 +117,12 @@ required_rubygems_version: !ruby/object:Gem::Requirement 
     | 
|
| 
       116 
117 
     | 
    
         
             
                  version: '0'
         
     | 
| 
       117 
118 
     | 
    
         
             
            requirements: []
         
     | 
| 
       118 
119 
     | 
    
         
             
            rubyforge_project: 
         
     | 
| 
       119 
     | 
    
         
            -
            rubygems_version: 2. 
     | 
| 
      
 120 
     | 
    
         
            +
            rubygems_version: 2.0.6
         
     | 
| 
       120 
121 
     | 
    
         
             
            signing_key: 
         
     | 
| 
       121 
122 
     | 
    
         
             
            specification_version: 4
         
     | 
| 
       122 
123 
     | 
    
         
             
            summary: assorted tiny utilities
         
     | 
| 
       123 
124 
     | 
    
         
             
            test_files:
         
     | 
| 
      
 125 
     | 
    
         
            +
            - test/core_ext/array.dt.rb
         
     | 
| 
       124 
126 
     | 
    
         
             
            - test/core_ext/bigdecimal.dt.rb
         
     | 
| 
       125 
127 
     | 
    
         
             
            - test/core_ext/date.dt.rb
         
     | 
| 
       126 
128 
     | 
    
         
             
            - test/core_ext/datewithtime.dt.rb
         
     |