mtbuild 0.0.5 → 0.0.6
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/CHANGES.md +7 -0
 - data/lib/mtbuild/test_application_configuration.rb +1 -1
 - data/lib/mtbuild/version.rb +1 -1
 - metadata +2 -2
 
    
        checksums.yaml
    CHANGED
    
    | 
         @@ -1,7 +1,7 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            ---
         
     | 
| 
       2 
2 
     | 
    
         
             
            SHA1:
         
     | 
| 
       3 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       4 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 3 
     | 
    
         
            +
              metadata.gz: 64574656119d9eadc3f2c0050475425e3d27956f
         
     | 
| 
      
 4 
     | 
    
         
            +
              data.tar.gz: db30b6a8fe5aae2ce9a501ab8f873c37a117fa45
         
     | 
| 
       5 
5 
     | 
    
         
             
            SHA512:
         
     | 
| 
       6 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       7 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 6 
     | 
    
         
            +
              metadata.gz: 4a0810cca6b2fcf8b6503dc6fa3357eae2496ab537432f8d280605cae1e624fd5dd23a8414cbca79e534228fc57c990d1d7713191c38e02d53f89ad26c5cea09
         
     | 
| 
      
 7 
     | 
    
         
            +
              data.tar.gz: 8a016d464bf650a27026f2f6d91e20166757bedee25816db8f53d1193a0ceb8f867f2f26bfef35f3b2ed7643169b315241a1ff6cde7bd526fff7dab169c02465
         
     | 
    
        data/CHANGES.md
    CHANGED
    
    
| 
         @@ -23,7 +23,7 @@ module MTBuild 
     | 
|
| 
       23 
23 
     | 
    
         
             
                  desc "Build and run test application '#{@project_name}' with configuration '#{@configuration_name}'"
         
     | 
| 
       24 
24 
     | 
    
         
             
                  new_task = test_application_task @configuration_name => dependencies do |t|
         
     | 
| 
       25 
25 
     | 
    
         
             
                    puts "built test application #{t.name}."
         
     | 
| 
       26 
     | 
    
         
            -
                    sh application_binaries.first
         
     | 
| 
      
 26 
     | 
    
         
            +
                    sh "\"#{application_binaries.first}\""
         
     | 
| 
       27 
27 
     | 
    
         
             
                    puts "ran test application #{t.name}."
         
     | 
| 
       28 
28 
     | 
    
         
             
                  end
         
     | 
| 
       29 
29 
     | 
    
         
             
                end
         
     | 
    
        data/lib/mtbuild/version.rb
    CHANGED
    
    
    
        metadata
    CHANGED
    
    | 
         @@ -1,14 +1,14 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            --- !ruby/object:Gem::Specification
         
     | 
| 
       2 
2 
     | 
    
         
             
            name: mtbuild
         
     | 
| 
       3 
3 
     | 
    
         
             
            version: !ruby/object:Gem::Version
         
     | 
| 
       4 
     | 
    
         
            -
              version: 0.0. 
     | 
| 
      
 4 
     | 
    
         
            +
              version: 0.0.6
         
     | 
| 
       5 
5 
     | 
    
         
             
            platform: ruby
         
     | 
| 
       6 
6 
     | 
    
         
             
            authors:
         
     | 
| 
       7 
7 
     | 
    
         
             
            - Jerry Ryle
         
     | 
| 
       8 
8 
     | 
    
         
             
            autorequire: 
         
     | 
| 
       9 
9 
     | 
    
         
             
            bindir: bin
         
     | 
| 
       10 
10 
     | 
    
         
             
            cert_chain: []
         
     | 
| 
       11 
     | 
    
         
            -
            date: 2014-07- 
     | 
| 
      
 11 
     | 
    
         
            +
            date: 2014-07-02 00:00:00.000000000 Z
         
     | 
| 
       12 
12 
     | 
    
         
             
            dependencies:
         
     | 
| 
       13 
13 
     | 
    
         
             
            - !ruby/object:Gem::Dependency
         
     | 
| 
       14 
14 
     | 
    
         
             
              name: rake
         
     |