boxxspring 2.7.9 → 2.8.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/boxxspring/request.rb +0 -1
- data/lib/boxxspring/resources/artifact_relationship.rb +1 -0
- data/lib/boxxspring/resources/dailymotion_stream_distribution_activity.rb +15 -0
- data/lib/boxxspring/resources/dailymotion_stream_distribution_task.rb +13 -0
- data/lib/boxxspring/resources/facebook_distribution_deletion_activity.rb +7 -0
- data/lib/boxxspring/resources/facebook_distribution_deletion_task.rb +8 -0
- data/lib/boxxspring/resources/youtube_stream_distribution_activity.rb +2 -0
- data/lib/boxxspring/version.rb +1 -1
- data/lib/boxxspring.rb +4 -0
- metadata +7 -3
    
        checksums.yaml
    CHANGED
    
    | @@ -1,7 +1,7 @@ | |
| 1 1 | 
             
            ---
         | 
| 2 2 | 
             
            SHA1:
         | 
| 3 | 
            -
              metadata.gz:  | 
| 4 | 
            -
              data.tar.gz:  | 
| 3 | 
            +
              metadata.gz: 2f1f2b017c9f80e2d85afce74d0e21b63f2e41f0
         | 
| 4 | 
            +
              data.tar.gz: d0186457b3e5f3d500490bc212d3531426151011
         | 
| 5 5 | 
             
            SHA512:
         | 
| 6 | 
            -
              metadata.gz:  | 
| 7 | 
            -
              data.tar.gz:  | 
| 6 | 
            +
              metadata.gz: 864e9506bfb1c83a0368dc4ebb758769411bc886983a6ea8f952c7e567f8c73e15cb0594e80c28c78abdf78c49b214846d7e90ce2c7395c66d78d1738e63bc10
         | 
| 7 | 
            +
              data.tar.gz: ac982435546d4ad42ca5c1001755f6c1e28d981e0049a789a267e40d33a7fcdd6cf7942b1def918e7c0c49e57dfff45ea470fdae22bfe6a43214087cb3e1d630
         | 
    
        data/lib/boxxspring/request.rb
    CHANGED
    
    
| @@ -0,0 +1,15 @@ | |
| 1 | 
            +
            module Boxxspring
         | 
| 2 | 
            +
             | 
| 3 | 
            +
              class DailymotionStreamDistributionActivity < Activity
         | 
| 4 | 
            +
                
         | 
| 5 | 
            +
                field   :stream_key
         | 
| 6 | 
            +
                field   :stream_url
         | 
| 7 | 
            +
                field  :video_title
         | 
| 8 | 
            +
                field  :video_description
         | 
| 9 | 
            +
                field  :video_public
         | 
| 10 | 
            +
                field  :video_category_id
         | 
| 11 | 
            +
                field  :video_tags
         | 
| 12 | 
            +
             | 
| 13 | 
            +
              end
         | 
| 14 | 
            +
             | 
| 15 | 
            +
            end
         | 
    
        data/lib/boxxspring/version.rb
    CHANGED
    
    
    
        data/lib/boxxspring.rb
    CHANGED
    
    | @@ -88,7 +88,9 @@ require 'boxxspring/resources/verizon_distribution_activity' | |
| 88 88 | 
             
            require 'boxxspring/resources/boxxspring_distribution_activity'
         | 
| 89 89 | 
             
            require 'boxxspring/resources/youtube_distribution_activity'
         | 
| 90 90 | 
             
            require 'boxxspring/resources/youtube_stream_distribution_activity'
         | 
| 91 | 
            +
            require 'boxxspring/resources/dailymotion_stream_distribution_activity'
         | 
| 91 92 | 
             
            require 'boxxspring/resources/rtmp_stream_distribution_activity'
         | 
| 93 | 
            +
            require 'boxxspring/resources/facebook_distribution_deletion_activity'
         | 
| 92 94 | 
             
            require 'boxxspring/resources/facebook_stream_distribution_activity'
         | 
| 93 95 | 
             
            require 'boxxspring/resources/facebook_page_distribution_activity'
         | 
| 94 96 | 
             
            require 'boxxspring/resources/twitter_distribution_activity'
         | 
| @@ -102,6 +104,7 @@ require 'boxxspring/resources/video_interrogation_task' | |
| 102 104 | 
             
            require 'boxxspring/resources/videos_picture_task'
         | 
| 103 105 | 
             
            require 'boxxspring/resources/feed_generation_task'
         | 
| 104 106 | 
             
            require 'boxxspring/resources/subscription_ingestion_task'
         | 
| 107 | 
            +
            require 'boxxspring/resources/facebook_distribution_deletion_task'
         | 
| 105 108 | 
             
            require 'boxxspring/resources/facebook_page_distribution_task'
         | 
| 106 109 | 
             
            require 'boxxspring/resources/facebook_stream_distribution_task'
         | 
| 107 110 | 
             
            require 'boxxspring/resources/rtmp_stream_distribution_task'
         | 
| @@ -109,6 +112,7 @@ require 'boxxspring/resources/twitter_distribution_task' | |
| 109 112 | 
             
            require 'boxxspring/resources/youtube_distribution_task'
         | 
| 110 113 | 
             
            require 'boxxspring/resources/dailymotion_distribution_task'
         | 
| 111 114 | 
             
            require 'boxxspring/resources/youtube_stream_distribution_task'
         | 
| 115 | 
            +
            require 'boxxspring/resources/dailymotion_stream_distribution_task'
         | 
| 112 116 | 
             
            require 'boxxspring/resources/verizon_distribution_task'
         | 
| 113 117 | 
             
            require 'boxxspring/resources/boxxspring_distribution_task'
         | 
| 114 118 | 
             
            require 'boxxspring/resources/boxxspring_update_task'
         | 
    
        metadata
    CHANGED
    
    | @@ -1,14 +1,14 @@ | |
| 1 1 | 
             
            --- !ruby/object:Gem::Specification
         | 
| 2 2 | 
             
            name: boxxspring
         | 
| 3 3 | 
             
            version: !ruby/object:Gem::Version
         | 
| 4 | 
            -
              version: 2. | 
| 4 | 
            +
              version: 2.8.0
         | 
| 5 5 | 
             
            platform: ruby
         | 
| 6 6 | 
             
            authors:
         | 
| 7 7 | 
             
            - Kristoph Cichocki-Romanov
         | 
| 8 8 | 
             
            autorequire: 
         | 
| 9 9 | 
             
            bindir: bin
         | 
| 10 10 | 
             
            cert_chain: []
         | 
| 11 | 
            -
            date: 2017-03- | 
| 11 | 
            +
            date: 2017-03-21 00:00:00.000000000 Z
         | 
| 12 12 | 
             
            dependencies:
         | 
| 13 13 | 
             
            - !ruby/object:Gem::Dependency
         | 
| 14 14 | 
             
              name: activesupport
         | 
| @@ -105,9 +105,13 @@ files: | |
| 105 105 | 
             
            - lib/boxxspring/resources/dailymotion_distribution.rb
         | 
| 106 106 | 
             
            - lib/boxxspring/resources/dailymotion_distribution_activity.rb
         | 
| 107 107 | 
             
            - lib/boxxspring/resources/dailymotion_distribution_task.rb
         | 
| 108 | 
            +
            - lib/boxxspring/resources/dailymotion_stream_distribution_activity.rb
         | 
| 109 | 
            +
            - lib/boxxspring/resources/dailymotion_stream_distribution_task.rb
         | 
| 108 110 | 
             
            - lib/boxxspring/resources/dailymotion_subscription_metadata_task.rb
         | 
| 109 111 | 
             
            - lib/boxxspring/resources/distribution.rb
         | 
| 110 112 | 
             
            - lib/boxxspring/resources/error.rb
         | 
| 113 | 
            +
            - lib/boxxspring/resources/facebook_distribution_deletion_activity.rb
         | 
| 114 | 
            +
            - lib/boxxspring/resources/facebook_distribution_deletion_task.rb
         | 
| 111 115 | 
             
            - lib/boxxspring/resources/facebook_page_distribution.rb
         | 
| 112 116 | 
             
            - lib/boxxspring/resources/facebook_page_distribution_activity.rb
         | 
| 113 117 | 
             
            - lib/boxxspring/resources/facebook_page_distribution_task.rb
         | 
| @@ -199,7 +203,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement | |
| 199 203 | 
             
                  version: '0'
         | 
| 200 204 | 
             
            requirements: []
         | 
| 201 205 | 
             
            rubyforge_project: 
         | 
| 202 | 
            -
            rubygems_version: 2. | 
| 206 | 
            +
            rubygems_version: 2.2.2
         | 
| 203 207 | 
             
            signing_key: 
         | 
| 204 208 | 
             
            specification_version: 4
         | 
| 205 209 | 
             
            summary: Bedrocket Media Ventrures Boxxspring property API.
         |