boxxspring 2.4.6 → 2.4.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: 79ba1971a27732a1da593c45d1792a1c21996ef4
4
- data.tar.gz: bb46afd1819f0d814c44674cd034588edc3ce62f
3
+ metadata.gz: 2c89e5dd272fad0f5e382eb1dfbd18728998a2ad
4
+ data.tar.gz: ce159fe18b284590d386f5ae31ca45b8db423d38
5
5
  SHA512:
6
- metadata.gz: 56b8c4fb4175d8b31af4658c5e24b17aff3464384749cf1e11162afd838823b8a511494b760922b91c6c8f31d76e134e72b23e5f0620298be3814f0aff1038c3
7
- data.tar.gz: 61ab37ca3d1bbf8b5cf5808604027b8957a71c11e50ff2bd2ff60f5f12c72366e654769e92930b2d44cb5b53833c9ac270c35bffbfec2792e691a874d86fd7f7
6
+ metadata.gz: 06595c7a3ed80cb42e9275c82fb68618378ac38bf2550dfe971a0fc8d471aee3c2aea1565c8b862ae7944f4871ea0e9892a0cbe8ad37a589642f7dbd693b62bb
7
+ data.tar.gz: 1924e17a5c7a7308537dae5e6bb0ffeb666d7a6051da96e688403e30da01902646d2c00f2f6c77d470ee32e7d9d32c333639ffc00af036c2c6778f2cbb519c88
@@ -0,0 +1,16 @@
1
+ module Boxxspring
2
+
3
+ class DistributionActivity < Base
4
+ field :id
5
+ field :property_id
6
+ field :artifact_id
7
+ field :distribution_id
8
+ field :artifact_locator_id
9
+ field :completed_at
10
+ field :state
11
+ field :message
12
+
13
+ has_one :distribution
14
+ end
15
+
16
+ end
@@ -1,6 +1,6 @@
1
1
  module Boxxspring
2
2
 
3
- class Source < Base
3
+ class Subscription < Base
4
4
 
5
5
  field :created_at
6
6
  field :updated_at
@@ -15,7 +15,7 @@ module Boxxspring
15
15
  field :original
16
16
 
17
17
  field :auto_publish
18
- field :source_url
18
+ field :url
19
19
  field :state
20
20
 
21
21
  has_many :artifacts
@@ -1,3 +1,3 @@
1
1
  module Boxxspring
2
- VERSION = '2.4.6'
2
+ VERSION = '2.4.7'
3
3
  end
data/lib/boxxspring.rb CHANGED
@@ -39,7 +39,7 @@ require 'boxxspring/resources/artifact'
39
39
  require 'boxxspring/resources/artifact_locator'
40
40
 
41
41
 
42
- # Services
42
+ # Services & Distributions
43
43
  require 'boxxspring/resources/service'
44
44
  require 'boxxspring/resources/setting'
45
45
  require 'boxxspring/resources/sponsor'
@@ -49,7 +49,7 @@ require 'boxxspring/resources/facebook_page_service'
49
49
  require 'boxxspring/resources/twitter_service'
50
50
  require 'boxxspring/resources/youtube_channel_service'
51
51
  require 'boxxspring/resources/dailymotion_channel_service'
52
- require 'boxxspring/resources/source'
52
+ require 'boxxspring/resources/subscription'
53
53
  require 'boxxspring/resources/distribution'
54
54
  require 'boxxspring/resources/verizon_distribution'
55
55
  require 'boxxspring/resources/facebook_page_distribution'
@@ -57,6 +57,7 @@ require 'boxxspring/resources/twitter_distribution'
57
57
  require 'boxxspring/resources/youtube_distribution'
58
58
  require 'boxxspring/resources/dailymotion_distribution'
59
59
  require 'boxxspring/resources/boxxspring_distribution'
60
+ require 'boxxspring/resources/distribution_activity'
60
61
  require 'boxxspring/resources/branding_rule'
61
62
 
62
63
 
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.6
4
+ version: 2.4.7
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: 2015-10-07 00:00:00.000000000 Z
11
+ date: 2015-10-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport
@@ -95,6 +95,7 @@ files:
95
95
  - lib/boxxspring/resources/dailymotion_distribution.rb
96
96
  - lib/boxxspring/resources/dailymotion_distribution_task.rb
97
97
  - lib/boxxspring/resources/distribution.rb
98
+ - lib/boxxspring/resources/distribution_activity.rb
98
99
  - lib/boxxspring/resources/error.rb
99
100
  - lib/boxxspring/resources/facebook_page_distribution.rb
100
101
  - lib/boxxspring/resources/facebook_page_distribution_task.rb
@@ -115,8 +116,8 @@ files:
115
116
  - lib/boxxspring/resources/service.rb
116
117
  - lib/boxxspring/resources/setting.rb
117
118
  - lib/boxxspring/resources/social_service.rb
118
- - lib/boxxspring/resources/source.rb
119
119
  - lib/boxxspring/resources/sponsor.rb
120
+ - lib/boxxspring/resources/subscription.rb
120
121
  - lib/boxxspring/resources/subscription_ingestion_task.rb
121
122
  - lib/boxxspring/resources/task.rb
122
123
  - lib/boxxspring/resources/task_dependent.rb