universal_s3_uploader 0.0.6 → 0.0.7
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
    CHANGED
    
    | 
         @@ -1,7 +1,7 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            ---
         
     | 
| 
       2 
2 
     | 
    
         
             
            SHA1:
         
     | 
| 
       3 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       4 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 3 
     | 
    
         
            +
              metadata.gz: 800e8a43b5dcf968d9890ec37be6fda8440dc44b
         
     | 
| 
      
 4 
     | 
    
         
            +
              data.tar.gz: cb56f92a80cb24418fd83a6f8b59bdd99c05146b
         
     | 
| 
       5 
5 
     | 
    
         
             
            SHA512:
         
     | 
| 
       6 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       7 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 6 
     | 
    
         
            +
              metadata.gz: 8bfecee2172513cca34c13d5f387d87f653ca5a45f44e81fdd08ad850ae0b0c3607d6bc4bf4911487fd54711c305327af53e8e2fde31f8fe09c2de24a52d582a
         
     | 
| 
      
 7 
     | 
    
         
            +
              data.tar.gz: 9d987157bf4309879a7fdde5d0ff2913897b64e70a8f1c84b91245d0384ee3b303e27020193d072ad5c29918cc93afcdd40fdf1cac359e90f5504523d8988b8b
         
     | 
| 
         Binary file 
     | 
| 
         @@ -25,7 +25,7 @@ 
     | 
|
| 
       25 
25 
     | 
    
         
             
                {
         
     | 
| 
       26 
26 
     | 
    
         
             
                  console.log(index + " was successfully uploaded.");
         
     | 
| 
       27 
27 
     | 
    
         
             
                },
         
     | 
| 
       28 
     | 
    
         
            -
                onResponse: function(response)
         
     | 
| 
      
 28 
     | 
    
         
            +
                onResponse: function(index, response)
         
     | 
| 
       29 
29 
     | 
    
         
             
                {
         
     | 
| 
       30 
30 
     | 
    
         
             
                  console.log(response);
         
     | 
| 
       31 
31 
     | 
    
         
             
                }
         
     | 
| 
         @@ -108,7 +108,7 @@ 
     | 
|
| 
       108 
108 
     | 
    
         
             
                  var onResponse = this.options.onResponse;
         
     | 
| 
       109 
109 
     | 
    
         
             
                  function callResponseHandler(event)
         
     | 
| 
       110 
110 
     | 
    
         
             
                  {
         
     | 
| 
       111 
     | 
    
         
            -
                    onResponse(this.response);
         
     | 
| 
      
 111 
     | 
    
         
            +
                    onResponse(index, this.response);
         
     | 
| 
       112 
112 
     | 
    
         
             
                  }
         
     | 
| 
       113 
113 
     | 
    
         | 
| 
       114 
114 
     | 
    
         
             
                  var xhr = new XMLHttpRequest();
         
     | 
    
        metadata
    CHANGED
    
    | 
         @@ -1,7 +1,7 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            --- !ruby/object:Gem::Specification
         
     | 
| 
       2 
2 
     | 
    
         
             
            name: universal_s3_uploader
         
     | 
| 
       3 
3 
     | 
    
         
             
            version: !ruby/object:Gem::Version
         
     | 
| 
       4 
     | 
    
         
            -
              version: 0.0. 
     | 
| 
      
 4 
     | 
    
         
            +
              version: 0.0.7
         
     | 
| 
       5 
5 
     | 
    
         
             
            platform: ruby
         
     | 
| 
       6 
6 
     | 
    
         
             
            authors:
         
     | 
| 
       7 
7 
     | 
    
         
             
            - Dohan Kim
         
     | 
| 
         @@ -20,6 +20,7 @@ extra_rdoc_files: [] 
     | 
|
| 
       20 
20 
     | 
    
         
             
            files:
         
     | 
| 
       21 
21 
     | 
    
         
             
            - lib/universal_s3_uploader.rb
         
     | 
| 
       22 
22 
     | 
    
         
             
            - lib/universal_s3_uploader/engine.rb
         
     | 
| 
      
 23 
     | 
    
         
            +
            - lib/universal_s3_uploader/version.rb
         
     | 
| 
       23 
24 
     | 
    
         
             
            - lib/universal_s3_uploader/view_helper.rb
         
     | 
| 
       24 
25 
     | 
    
         
             
            - vendor/assets/flash/UniversalS3Uploader.swf
         
     | 
| 
       25 
26 
     | 
    
         
             
            - vendor/assets/javascripts/universal_s3_uploader.js
         
     |