trailer_vote-fixtures 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +8 -0
- data/.travis.yml +7 -0
- data/Gemfile +6 -0
- data/Gemfile.lock +36 -0
- data/README.md +37 -0
- data/Rakefile +10 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/lib/trailer_vote/fixtures.rb +15 -0
- data/lib/trailer_vote/fixtures/application/vnd.trailervote.audio_fragment.v1+json +23 -0
- data/lib/trailer_vote/fixtures/application/vnd.trailervote.audio_fragment.v1.index+json +25 -0
- data/lib/trailer_vote/fixtures/application/vnd.trailervote.carousel.v1+json +9223 -0
- data/lib/trailer_vote/fixtures/application/vnd.trailervote.client_configuration.v1+json +6 -0
- data/lib/trailer_vote/fixtures/application/vnd.trailervote.configuration.v1+json +23 -0
- data/lib/trailer_vote/fixtures/application/vnd.trailervote.configuration.v2+json +31 -0
- data/lib/trailer_vote/fixtures/application/vnd.trailervote.errors.v1+json +8 -0
- data/lib/trailer_vote/fixtures/application/vnd.trailervote.feedback.v1+json +17 -0
- data/lib/trailer_vote/fixtures/application/vnd.trailervote.feedback.v1.collection+json +22 -0
- data/lib/trailer_vote/fixtures/application/vnd.trailervote.feedback.v1.create+json +6 -0
- data/lib/trailer_vote/fixtures/application/vnd.trailervote.feedback_listing.v1+json +63 -0
- data/lib/trailer_vote/fixtures/application/vnd.trailervote.interactive_player.v1+json +19 -0
- data/lib/trailer_vote/fixtures/application/vnd.trailervote.issue.v1+json +21 -0
- data/lib/trailer_vote/fixtures/application/vnd.trailervote.issue.v1.create+json +15 -0
- data/lib/trailer_vote/fixtures/application/vnd.trailervote.persona.v1+json +13 -0
- data/lib/trailer_vote/fixtures/application/vnd.trailervote.place.v1+json +19 -0
- data/lib/trailer_vote/fixtures/application/vnd.trailervote.place.v2+json +19 -0
- data/lib/trailer_vote/fixtures/application/vnd.trailervote.product.image.v1+json +68 -0
- data/lib/trailer_vote/fixtures/application/vnd.trailervote.product.image.v1.index+json +19 -0
- data/lib/trailer_vote/fixtures/application/vnd.trailervote.product.lookup.v1+json +6 -0
- data/lib/trailer_vote/fixtures/application/vnd.trailervote.product.v1+json +89 -0
- data/lib/trailer_vote/fixtures/application/vnd.trailervote.product.v1.index+json +2821 -0
- data/lib/trailer_vote/fixtures/application/vnd.trailervote.product.v2+json +97 -0
- data/lib/trailer_vote/fixtures/application/vnd.trailervote.product.v2.index+json +2821 -0
- data/lib/trailer_vote/fixtures/application/vnd.trailervote.product.video.v1+json +36 -0
- data/lib/trailer_vote/fixtures/application/vnd.trailervote.product.video.v1.index+json +39 -0
- data/lib/trailer_vote/fixtures/application/vnd.trailervote.products_listing.v1+json +14318 -0
- data/lib/trailer_vote/fixtures/application/vnd.trailervote.sentiment_feedback.v1+json +538 -0
- data/lib/trailer_vote/fixtures/version.rb +5 -0
- data/trailer_vote-fixtures.gemspec +31 -0
- metadata +166 -0
@@ -0,0 +1,31 @@
|
|
1
|
+
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'trailer_vote/fixtures/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = 'trailer_vote-fixtures'
|
8
|
+
spec.version = TrailerVote::Fixtures::VERSION
|
9
|
+
spec.authors = ['Derk-Jan Karrenbeld']
|
10
|
+
spec.email = ['dj@trailervote.com']
|
11
|
+
|
12
|
+
spec.summary = 'Fixtures for TrailerVote media types, api calls, and so forth'
|
13
|
+
spec.homepage = 'https://github.com/TrailerVote/trailervote-fixtures'
|
14
|
+
|
15
|
+
# Specify which files should be added to the gem when it is released.
|
16
|
+
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
17
|
+
spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
|
18
|
+
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
19
|
+
end
|
20
|
+
spec.bindir = 'exe'
|
21
|
+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
22
|
+
spec.require_paths = ['lib']
|
23
|
+
|
24
|
+
spec.add_development_dependency 'oj', '~> 3.6'
|
25
|
+
|
26
|
+
spec.add_development_dependency 'bundler', '~> 1.16'
|
27
|
+
spec.add_development_dependency 'rake', '~> 12.3'
|
28
|
+
spec.add_development_dependency 'minitest', '~> 5.11'
|
29
|
+
spec.add_development_dependency 'minitest-ci', '~> 3.4'
|
30
|
+
spec.add_development_dependency 'minitest-reporters', '~> 1.3'
|
31
|
+
end
|
metadata
ADDED
@@ -0,0 +1,166 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: trailer_vote-fixtures
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Derk-Jan Karrenbeld
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
|
+
cert_chain: []
|
11
|
+
date: 2018-10-21 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: oj
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '3.6'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '3.6'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: bundler
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '1.16'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '1.16'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: rake
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '12.3'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '12.3'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: minitest
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - "~>"
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '5.11'
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - "~>"
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '5.11'
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: minitest-ci
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - "~>"
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '3.4'
|
76
|
+
type: :development
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - "~>"
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '3.4'
|
83
|
+
- !ruby/object:Gem::Dependency
|
84
|
+
name: minitest-reporters
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - "~>"
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: '1.3'
|
90
|
+
type: :development
|
91
|
+
prerelease: false
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
93
|
+
requirements:
|
94
|
+
- - "~>"
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: '1.3'
|
97
|
+
description:
|
98
|
+
email:
|
99
|
+
- dj@trailervote.com
|
100
|
+
executables: []
|
101
|
+
extensions: []
|
102
|
+
extra_rdoc_files: []
|
103
|
+
files:
|
104
|
+
- ".gitignore"
|
105
|
+
- ".travis.yml"
|
106
|
+
- Gemfile
|
107
|
+
- Gemfile.lock
|
108
|
+
- README.md
|
109
|
+
- Rakefile
|
110
|
+
- bin/console
|
111
|
+
- bin/setup
|
112
|
+
- lib/trailer_vote/fixtures.rb
|
113
|
+
- lib/trailer_vote/fixtures/application/vnd.trailervote.audio_fragment.v1+json
|
114
|
+
- lib/trailer_vote/fixtures/application/vnd.trailervote.audio_fragment.v1.index+json
|
115
|
+
- lib/trailer_vote/fixtures/application/vnd.trailervote.carousel.v1+json
|
116
|
+
- lib/trailer_vote/fixtures/application/vnd.trailervote.client_configuration.v1+json
|
117
|
+
- lib/trailer_vote/fixtures/application/vnd.trailervote.configuration.v1+json
|
118
|
+
- lib/trailer_vote/fixtures/application/vnd.trailervote.configuration.v2+json
|
119
|
+
- lib/trailer_vote/fixtures/application/vnd.trailervote.errors.v1+json
|
120
|
+
- lib/trailer_vote/fixtures/application/vnd.trailervote.feedback.v1+json
|
121
|
+
- lib/trailer_vote/fixtures/application/vnd.trailervote.feedback.v1.collection+json
|
122
|
+
- lib/trailer_vote/fixtures/application/vnd.trailervote.feedback.v1.create+json
|
123
|
+
- lib/trailer_vote/fixtures/application/vnd.trailervote.feedback_listing.v1+json
|
124
|
+
- lib/trailer_vote/fixtures/application/vnd.trailervote.interactive_player.v1+json
|
125
|
+
- lib/trailer_vote/fixtures/application/vnd.trailervote.issue.v1+json
|
126
|
+
- lib/trailer_vote/fixtures/application/vnd.trailervote.issue.v1.create+json
|
127
|
+
- lib/trailer_vote/fixtures/application/vnd.trailervote.persona.v1+json
|
128
|
+
- lib/trailer_vote/fixtures/application/vnd.trailervote.place.v1+json
|
129
|
+
- lib/trailer_vote/fixtures/application/vnd.trailervote.place.v2+json
|
130
|
+
- lib/trailer_vote/fixtures/application/vnd.trailervote.product.image.v1+json
|
131
|
+
- lib/trailer_vote/fixtures/application/vnd.trailervote.product.image.v1.index+json
|
132
|
+
- lib/trailer_vote/fixtures/application/vnd.trailervote.product.lookup.v1+json
|
133
|
+
- lib/trailer_vote/fixtures/application/vnd.trailervote.product.v1+json
|
134
|
+
- lib/trailer_vote/fixtures/application/vnd.trailervote.product.v1.index+json
|
135
|
+
- lib/trailer_vote/fixtures/application/vnd.trailervote.product.v2+json
|
136
|
+
- lib/trailer_vote/fixtures/application/vnd.trailervote.product.v2.index+json
|
137
|
+
- lib/trailer_vote/fixtures/application/vnd.trailervote.product.video.v1+json
|
138
|
+
- lib/trailer_vote/fixtures/application/vnd.trailervote.product.video.v1.index+json
|
139
|
+
- lib/trailer_vote/fixtures/application/vnd.trailervote.products_listing.v1+json
|
140
|
+
- lib/trailer_vote/fixtures/application/vnd.trailervote.sentiment_feedback.v1+json
|
141
|
+
- lib/trailer_vote/fixtures/version.rb
|
142
|
+
- trailer_vote-fixtures.gemspec
|
143
|
+
homepage: https://github.com/TrailerVote/trailervote-fixtures
|
144
|
+
licenses: []
|
145
|
+
metadata: {}
|
146
|
+
post_install_message:
|
147
|
+
rdoc_options: []
|
148
|
+
require_paths:
|
149
|
+
- lib
|
150
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
151
|
+
requirements:
|
152
|
+
- - ">="
|
153
|
+
- !ruby/object:Gem::Version
|
154
|
+
version: '0'
|
155
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
156
|
+
requirements:
|
157
|
+
- - ">="
|
158
|
+
- !ruby/object:Gem::Version
|
159
|
+
version: '0'
|
160
|
+
requirements: []
|
161
|
+
rubyforge_project:
|
162
|
+
rubygems_version: 2.6.14.1
|
163
|
+
signing_key:
|
164
|
+
specification_version: 4
|
165
|
+
summary: Fixtures for TrailerVote media types, api calls, and so forth
|
166
|
+
test_files: []
|