time_difference 0.5.0 → 0.6.0.pre.activesupport42
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/.travis.yml +8 -2
 - data/Gemfile.activesupport32 +4 -4
 - data/Gemfile.activesupport42 +4 -0
 - data/time_difference.gemspec +1 -1
 - metadata +5 -4
 
    
        checksums.yaml
    CHANGED
    
    | 
         @@ -1,7 +1,7 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            ---
         
     | 
| 
       2 
2 
     | 
    
         
             
            SHA1:
         
     | 
| 
       3 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       4 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 3 
     | 
    
         
            +
              metadata.gz: 0d41c2f733312fe79731e39b1b814bba3ba12f8d
         
     | 
| 
      
 4 
     | 
    
         
            +
              data.tar.gz: ee732324a2be9b25e187150683bd5b97975fd4b6
         
     | 
| 
       5 
5 
     | 
    
         
             
            SHA512:
         
     | 
| 
       6 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       7 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 6 
     | 
    
         
            +
              metadata.gz: 85e019c7f393dc05b523b10cc5ec71ce1f0c8278d9944e6bb7c486a1cf86a1eb018e7e4f633911ec6e2db894ba3c1e9ecd8aced1c29cdff22acb8f6193a4d761
         
     | 
| 
      
 7 
     | 
    
         
            +
              data.tar.gz: 5c0b619fd768f1b7fb1cc22de691500cb2c1b857389efdd6c786b1d30e2b79baad642abdf44e235f9ea586e8c0ca037584efe3503e52655daecb8122442ed690
         
     | 
    
        data/.travis.yml
    CHANGED
    
    | 
         @@ -2,13 +2,19 @@ language: ruby 
     | 
|
| 
       2 
2 
     | 
    
         
             
            rvm:
         
     | 
| 
       3 
3 
     | 
    
         
             
              - "1.9.3"
         
     | 
| 
       4 
4 
     | 
    
         
             
              - 2.2
         
     | 
| 
      
 5 
     | 
    
         
            +
              - 2.3
         
     | 
| 
      
 6 
     | 
    
         
            +
              - 2.4
         
     | 
| 
       5 
7 
     | 
    
         
             
              - jruby-19mode # JRuby in 1.9 mode
         
     | 
| 
       6 
     | 
    
         
            -
              - rbx-19mode
         
     | 
| 
       7 
8 
     | 
    
         
             
            # uncomment this line if your project needs to run something other than `rake`:
         
     | 
| 
       8 
9 
     | 
    
         
             
            script: bundle exec rspec spec
         
     | 
| 
       9 
10 
     | 
    
         
             
            gemfile:
         
     | 
| 
       10 
11 
     | 
    
         
             
              - Gemfile.activesupport32
         
     | 
| 
       11 
     | 
    
         
            -
              - Gemfile
         
     | 
| 
      
 12 
     | 
    
         
            +
              - Gemfile.activesupport42
         
     | 
| 
      
 13 
     | 
    
         
            +
             
     | 
| 
      
 14 
     | 
    
         
            +
            matrix:
         
     | 
| 
      
 15 
     | 
    
         
            +
              exclude:
         
     | 
| 
      
 16 
     | 
    
         
            +
              - rvm: 2.4
         
     | 
| 
      
 17 
     | 
    
         
            +
                gemfile: Gemfile.activesupport32
         
     | 
| 
       12 
18 
     | 
    
         | 
| 
       13 
19 
     | 
    
         
             
            before_install:
         
     | 
| 
       14 
20 
     | 
    
         
             
              - gem install bundler
         
     | 
    
        data/Gemfile.activesupport32
    CHANGED
    
    | 
         @@ -1,4 +1,4 @@ 
     | 
|
| 
       1 
     | 
    
         
            -
            source "https://rubygems.org"
         
     | 
| 
       2 
     | 
    
         
            -
            gemspec
         
     | 
| 
       3 
     | 
    
         
            -
             
     | 
| 
       4 
     | 
    
         
            -
            gem 'activesupport', '~> 3.2'
         
     | 
| 
      
 1 
     | 
    
         
            +
            source "https://rubygems.org"		
         
     | 
| 
      
 2 
     | 
    
         
            +
            gemspec		
         
     | 
| 
      
 3 
     | 
    
         
            +
            		
         
     | 
| 
      
 4 
     | 
    
         
            +
            gem 'activesupport', '~> 3.2'
         
     | 
    
        data/time_difference.gemspec
    CHANGED
    
    | 
         @@ -11,7 +11,7 @@ Gem::Specification.new do |gem| 
     | 
|
| 
       11 
11 
     | 
    
         
             
              gem.test_files    = gem.files.grep(%r{^(test|spec|features)/})
         
     | 
| 
       12 
12 
     | 
    
         
             
              gem.name          = "time_difference"
         
     | 
| 
       13 
13 
     | 
    
         
             
              gem.require_paths = ["lib"]
         
     | 
| 
       14 
     | 
    
         
            -
              gem.version       = "0. 
     | 
| 
      
 14 
     | 
    
         
            +
              gem.version       = "0.6.0-activesupport42"
         
     | 
| 
       15 
15 
     | 
    
         
             
              gem.license = 'MIT'
         
     | 
| 
       16 
16 
     | 
    
         | 
| 
       17 
17 
     | 
    
         
             
              gem.add_runtime_dependency('activesupport')
         
     | 
    
        metadata
    CHANGED
    
    | 
         @@ -1,14 +1,14 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            --- !ruby/object:Gem::Specification
         
     | 
| 
       2 
2 
     | 
    
         
             
            name: time_difference
         
     | 
| 
       3 
3 
     | 
    
         
             
            version: !ruby/object:Gem::Version
         
     | 
| 
       4 
     | 
    
         
            -
              version: 0. 
     | 
| 
      
 4 
     | 
    
         
            +
              version: 0.6.0.pre.activesupport42
         
     | 
| 
       5 
5 
     | 
    
         
             
            platform: ruby
         
     | 
| 
       6 
6 
     | 
    
         
             
            authors:
         
     | 
| 
       7 
7 
     | 
    
         
             
            - TM Lee
         
     | 
| 
       8 
8 
     | 
    
         
             
            autorequire: 
         
     | 
| 
       9 
9 
     | 
    
         
             
            bindir: bin
         
     | 
| 
       10 
10 
     | 
    
         
             
            cert_chain: []
         
     | 
| 
       11 
     | 
    
         
            -
            date:  
     | 
| 
      
 11 
     | 
    
         
            +
            date: 2017-10-21 00:00:00.000000000 Z
         
     | 
| 
       12 
12 
     | 
    
         
             
            dependencies:
         
     | 
| 
       13 
13 
     | 
    
         
             
            - !ruby/object:Gem::Dependency
         
     | 
| 
       14 
14 
     | 
    
         
             
              name: activesupport
         
     | 
| 
         @@ -66,6 +66,7 @@ files: 
     | 
|
| 
       66 
66 
     | 
    
         
             
            - CHANGELOG.md
         
     | 
| 
       67 
67 
     | 
    
         
             
            - Gemfile
         
     | 
| 
       68 
68 
     | 
    
         
             
            - Gemfile.activesupport32
         
     | 
| 
      
 69 
     | 
    
         
            +
            - Gemfile.activesupport42
         
     | 
| 
       69 
70 
     | 
    
         
             
            - LICENSE
         
     | 
| 
       70 
71 
     | 
    
         
             
            - README.md
         
     | 
| 
       71 
72 
     | 
    
         
             
            - Rakefile
         
     | 
| 
         @@ -88,9 +89,9 @@ required_ruby_version: !ruby/object:Gem::Requirement 
     | 
|
| 
       88 
89 
     | 
    
         
             
                  version: '0'
         
     | 
| 
       89 
90 
     | 
    
         
             
            required_rubygems_version: !ruby/object:Gem::Requirement
         
     | 
| 
       90 
91 
     | 
    
         
             
              requirements:
         
     | 
| 
       91 
     | 
    
         
            -
              - - " 
     | 
| 
      
 92 
     | 
    
         
            +
              - - ">"
         
     | 
| 
       92 
93 
     | 
    
         
             
                - !ruby/object:Gem::Version
         
     | 
| 
       93 
     | 
    
         
            -
                  version:  
     | 
| 
      
 94 
     | 
    
         
            +
                  version: 1.3.1
         
     | 
| 
       94 
95 
     | 
    
         
             
            requirements: []
         
     | 
| 
       95 
96 
     | 
    
         
             
            rubyforge_project: 
         
     | 
| 
       96 
97 
     | 
    
         
             
            rubygems_version: 2.5.0
         
     |