boxxspring 2.1.5 → 2.1.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/lib/boxxspring/resources/artifact.rb +1 -0
- data/lib/boxxspring/resources/artifact_location.rb +16 -0
- data/lib/boxxspring/resources/distribution.rb +15 -0
- data/lib/boxxspring/resources/facebook_distribution.rb +7 -0
- data/lib/boxxspring/resources/facebook_distribution_task.rb +14 -0
- data/lib/boxxspring/resources/legacy_service.rb +6 -0
- data/lib/boxxspring/resources/metric.rb +17 -0
- data/lib/boxxspring/resources/sample.rb +23 -0
- data/lib/boxxspring/resources/social_service.rb +15 -0
- data/lib/boxxspring/resources/source.rb +2 -0
- data/lib/boxxspring/resources/task.rb +2 -0
- data/lib/boxxspring/resources/twitter_distribution.rb +5 -0
- data/lib/boxxspring/resources/twitter_distribution_task.rb +10 -0
- data/lib/boxxspring/resources/youtube_channel_service.rb +8 -0
- data/lib/boxxspring/resources/youtube_distribution.rb +7 -0
- data/lib/boxxspring/resources/youtube_distribution_task.rb +13 -0
- data/lib/boxxspring/version.rb +1 -1
- data/lib/boxxspring.rb +14 -0
- metadata +17 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f259dbc1017c877f03b9371a7558235cb07f8825
|
4
|
+
data.tar.gz: ee735e84f69174a2525cd41b1bedf8fc6b18f5aa
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9b29a8935ddb9872b58eb183f3e9b071882a4f9b7d034a9b88559cb507b00e5e4b568f165160f806f46d7b1c879cd3ef45c2cfc7ee6a55900a8198f11a24d98b
|
7
|
+
data.tar.gz: ab405923fe97bb733137b39f871fa2105a00c3fc036540c53c07dc4d7e0d62e919a735e5f64afe9c30f2e2e488c63ecd6308cc98dcd576887a4f831b31c7ecce
|
@@ -0,0 +1,16 @@
|
|
1
|
+
module Boxxspring
|
2
|
+
class ArtifactLocation < Base
|
3
|
+
|
4
|
+
field :type_name
|
5
|
+
field :id
|
6
|
+
field :created_at
|
7
|
+
field :uploaded_at
|
8
|
+
field :artifact_id
|
9
|
+
field :provider
|
10
|
+
field :provider_url
|
11
|
+
field :provider_uid
|
12
|
+
|
13
|
+
has_one :artifact
|
14
|
+
|
15
|
+
end
|
16
|
+
end
|
@@ -0,0 +1,23 @@
|
|
1
|
+
module Boxxspring
|
2
|
+
class Sample < Base
|
3
|
+
|
4
|
+
field :id
|
5
|
+
|
6
|
+
field :created_at
|
7
|
+
field :updated_at
|
8
|
+
|
9
|
+
field :type_name
|
10
|
+
field :at
|
11
|
+
field :sum
|
12
|
+
field :average
|
13
|
+
field :count
|
14
|
+
field :median
|
15
|
+
|
16
|
+
field :metric_id
|
17
|
+
field :artifact_id
|
18
|
+
|
19
|
+
has_one :metric
|
20
|
+
has_one :artifact
|
21
|
+
|
22
|
+
end
|
23
|
+
end
|
data/lib/boxxspring/version.rb
CHANGED
data/lib/boxxspring.rb
CHANGED
@@ -51,9 +51,23 @@ require 'boxxspring/resources/playlist'
|
|
51
51
|
require 'boxxspring/resources/group'
|
52
52
|
require 'boxxspring/resources/property'
|
53
53
|
require 'boxxspring/resources/service'
|
54
|
+
require 'boxxspring/resources/legacy_service'
|
55
|
+
require 'boxxspring/resources/social_service'
|
54
56
|
require 'boxxspring/resources/source'
|
55
57
|
require 'boxxspring/resources/task'
|
56
58
|
require 'boxxspring/resources/videos_ingestion_task'
|
57
59
|
require 'boxxspring/resources/videos_picture_task'
|
58
60
|
require 'boxxspring/resources/feed_generation_task'
|
59
61
|
require 'boxxspring/resources/subscription_ingestion_task'
|
62
|
+
require 'boxxspring/resources/sample'
|
63
|
+
require 'boxxspring/resources/metric'
|
64
|
+
require 'boxxspring/resources/distribution'
|
65
|
+
require 'boxxspring/resources/facebook_distribution'
|
66
|
+
require 'boxxspring/resources/twitter_distribution'
|
67
|
+
require 'boxxspring/resources/youtube_distribution'
|
68
|
+
require 'boxxspring/resources/facebook_distribution_task'
|
69
|
+
require 'boxxspring/resources/twitter_distribution_task'
|
70
|
+
require 'boxxspring/resources/youtube_distribution_task'
|
71
|
+
require 'boxxspring/resources/artifact_location'
|
72
|
+
|
73
|
+
require 'boxxspring/resources/youtube_channel_service'
|
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.1.
|
4
|
+
version: 2.1.6
|
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-
|
11
|
+
date: 2015-02-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: multi_json
|
@@ -81,20 +81,26 @@ files:
|
|
81
81
|
- lib/boxxspring/resources/advertising_doubleclick_advertisement.rb
|
82
82
|
- lib/boxxspring/resources/advertising_liverail_advertisement.rb
|
83
83
|
- lib/boxxspring/resources/artifact.rb
|
84
|
+
- lib/boxxspring/resources/artifact_location.rb
|
84
85
|
- lib/boxxspring/resources/atomic_video_card.rb
|
85
86
|
- lib/boxxspring/resources/attribute_error.rb
|
86
87
|
- lib/boxxspring/resources/attribution.rb
|
87
88
|
- lib/boxxspring/resources/author.rb
|
88
89
|
- lib/boxxspring/resources/base.rb
|
89
90
|
- lib/boxxspring/resources/card.rb
|
91
|
+
- lib/boxxspring/resources/distribution.rb
|
90
92
|
- lib/boxxspring/resources/error.rb
|
93
|
+
- lib/boxxspring/resources/facebook_distribution.rb
|
94
|
+
- lib/boxxspring/resources/facebook_distribution_task.rb
|
91
95
|
- lib/boxxspring/resources/feed.rb
|
92
96
|
- lib/boxxspring/resources/feed_generation_task.rb
|
93
97
|
- lib/boxxspring/resources/filter.rb
|
94
98
|
- lib/boxxspring/resources/filter_criteria.rb
|
95
99
|
- lib/boxxspring/resources/forbidden_error.rb
|
96
100
|
- lib/boxxspring/resources/group.rb
|
101
|
+
- lib/boxxspring/resources/legacy_service.rb
|
97
102
|
- lib/boxxspring/resources/malformed_parameter_error.rb
|
103
|
+
- lib/boxxspring/resources/metric.rb
|
98
104
|
- lib/boxxspring/resources/missing_parameter_error.rb
|
99
105
|
- lib/boxxspring/resources/not_found_error.rb
|
100
106
|
- lib/boxxspring/resources/organization.rb
|
@@ -105,8 +111,10 @@ files:
|
|
105
111
|
- lib/boxxspring/resources/playlist.rb
|
106
112
|
- lib/boxxspring/resources/property.rb
|
107
113
|
- lib/boxxspring/resources/reaction.rb
|
114
|
+
- lib/boxxspring/resources/sample.rb
|
108
115
|
- lib/boxxspring/resources/school.rb
|
109
116
|
- lib/boxxspring/resources/service.rb
|
117
|
+
- lib/boxxspring/resources/social_service.rb
|
110
118
|
- lib/boxxspring/resources/source.rb
|
111
119
|
- lib/boxxspring/resources/sponsor.rb
|
112
120
|
- lib/boxxspring/resources/story.rb
|
@@ -118,6 +126,8 @@ files:
|
|
118
126
|
- lib/boxxspring/resources/theme.rb
|
119
127
|
- lib/boxxspring/resources/theme_environment.rb
|
120
128
|
- lib/boxxspring/resources/theme_template.rb
|
129
|
+
- lib/boxxspring/resources/twitter_distribution.rb
|
130
|
+
- lib/boxxspring/resources/twitter_distribution_task.rb
|
121
131
|
- lib/boxxspring/resources/user_agent.rb
|
122
132
|
- lib/boxxspring/resources/video.rb
|
123
133
|
- lib/boxxspring/resources/video_card.rb
|
@@ -125,6 +135,9 @@ files:
|
|
125
135
|
- lib/boxxspring/resources/video_source_segment.rb
|
126
136
|
- lib/boxxspring/resources/videos_ingestion_task.rb
|
127
137
|
- lib/boxxspring/resources/videos_picture_task.rb
|
138
|
+
- lib/boxxspring/resources/youtube_channel_service.rb
|
139
|
+
- lib/boxxspring/resources/youtube_distribution.rb
|
140
|
+
- lib/boxxspring/resources/youtube_distribution_task.rb
|
128
141
|
- lib/boxxspring/response.rb
|
129
142
|
- lib/boxxspring/serializer.rb
|
130
143
|
- lib/boxxspring/version.rb
|
@@ -148,8 +161,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
148
161
|
version: '0'
|
149
162
|
requirements: []
|
150
163
|
rubyforge_project:
|
151
|
-
rubygems_version: 2.
|
164
|
+
rubygems_version: 2.2.2
|
152
165
|
signing_key:
|
153
166
|
specification_version: 4
|
154
167
|
summary: Bedrocket Media Ventrures Boxxspring property API.
|
155
168
|
test_files: []
|
169
|
+
has_rdoc:
|