contentful_bootstrap 3.9.1 → 3.10.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/CHANGELOG.md +4 -0
- data/README.md +3 -1
- data/bin/contentful_bootstrap +3 -0
- data/lib/contentful/bootstrap/command_runner.rb +8 -1
- data/lib/contentful/bootstrap/commands/generate_json.rb +5 -3
- data/lib/contentful/bootstrap/generator.rb +18 -4
- data/lib/contentful/bootstrap/version.rb +1 -1
- data/spec/contentful/bootstrap/command_runner_spec.rb +2 -2
- data/spec/contentful/bootstrap/commands/generate_json_spec.rb +32 -0
- data/spec/contentful/bootstrap/generator_spec.rb +2 -2
- data/spec/fixtures/json_fixtures/cfexampleapi_cat.json +154 -0
- data/spec/fixtures/json_fixtures/cfexampleapi_cat_human.json +202 -0
- data/spec/fixtures/vcr_fixtures/generate_json_multi_ct.yml +474 -0
- data/spec/fixtures/vcr_fixtures/generate_json_single_ct.yml +474 -0
- metadata +10 -2
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: contentful_bootstrap
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.
|
4
|
+
version: 3.10.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- David Litvak Bruno
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-11-
|
11
|
+
date: 2017-11-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -298,6 +298,8 @@ files:
|
|
298
298
|
- spec/fixtures/ini_fixtures/sections.ini
|
299
299
|
- spec/fixtures/json_fixtures/asset_no_transform.json
|
300
300
|
- spec/fixtures/json_fixtures/assets_draft.json
|
301
|
+
- spec/fixtures/json_fixtures/cfexampleapi_cat.json
|
302
|
+
- spec/fixtures/json_fixtures/cfexampleapi_cat_human.json
|
301
303
|
- spec/fixtures/json_fixtures/display_field.json
|
302
304
|
- spec/fixtures/json_fixtures/f3abi4dqvrhg_preview.json
|
303
305
|
- spec/fixtures/json_fixtures/high.json
|
@@ -323,7 +325,9 @@ files:
|
|
323
325
|
- spec/fixtures/vcr_fixtures/create_space_with_gallery_template.yml
|
324
326
|
- spec/fixtures/vcr_fixtures/generate_json.yml
|
325
327
|
- spec/fixtures/vcr_fixtures/generate_json_content_types_only.yml
|
328
|
+
- spec/fixtures/vcr_fixtures/generate_json_multi_ct.yml
|
326
329
|
- spec/fixtures/vcr_fixtures/generate_json_preview.yml
|
330
|
+
- spec/fixtures/vcr_fixtures/generate_json_single_ct.yml
|
327
331
|
- spec/fixtures/vcr_fixtures/generate_token.yml
|
328
332
|
- spec/fixtures/vcr_fixtures/issue_22.yml
|
329
333
|
- spec/fixtures/vcr_fixtures/multiple_organizations.yml
|
@@ -383,6 +387,8 @@ test_files:
|
|
383
387
|
- spec/fixtures/ini_fixtures/sections.ini
|
384
388
|
- spec/fixtures/json_fixtures/asset_no_transform.json
|
385
389
|
- spec/fixtures/json_fixtures/assets_draft.json
|
390
|
+
- spec/fixtures/json_fixtures/cfexampleapi_cat.json
|
391
|
+
- spec/fixtures/json_fixtures/cfexampleapi_cat_human.json
|
386
392
|
- spec/fixtures/json_fixtures/display_field.json
|
387
393
|
- spec/fixtures/json_fixtures/f3abi4dqvrhg_preview.json
|
388
394
|
- spec/fixtures/json_fixtures/high.json
|
@@ -408,7 +414,9 @@ test_files:
|
|
408
414
|
- spec/fixtures/vcr_fixtures/create_space_with_gallery_template.yml
|
409
415
|
- spec/fixtures/vcr_fixtures/generate_json.yml
|
410
416
|
- spec/fixtures/vcr_fixtures/generate_json_content_types_only.yml
|
417
|
+
- spec/fixtures/vcr_fixtures/generate_json_multi_ct.yml
|
411
418
|
- spec/fixtures/vcr_fixtures/generate_json_preview.yml
|
419
|
+
- spec/fixtures/vcr_fixtures/generate_json_single_ct.yml
|
412
420
|
- spec/fixtures/vcr_fixtures/generate_token.yml
|
413
421
|
- spec/fixtures/vcr_fixtures/issue_22.yml
|
414
422
|
- spec/fixtures/vcr_fixtures/multiple_organizations.yml
|