contentful_bootstrap 3.6.1 → 3.7.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/.travis.yml +0 -2
- data/CHANGELOG.md +7 -0
- data/README.md +3 -1
- data/bin/contentful_bootstrap +8 -2
- data/lib/contentful/bootstrap/commands/base.rb +1 -0
- data/lib/contentful/bootstrap/commands/create_space.rb +4 -1
- data/lib/contentful/bootstrap/commands/update_space.rb +2 -1
- data/lib/contentful/bootstrap/version.rb +1 -1
- data/spec/contentful/bootstrap/commands/base_spec.rb +1 -0
- data/spec/contentful/bootstrap/commands/create_space_spec.rb +29 -1
- data/spec/contentful/bootstrap/commands/update_space_spec.rb +24 -2
- data/spec/fixtures/json_fixtures/update_space_localized.json +40 -0
- data/spec/fixtures/vcr_fixtures/check_created_space.yml +177 -0
- data/spec/fixtures/vcr_fixtures/check_update_space_localized.yml +196 -0
- data/spec/fixtures/vcr_fixtures/space_with_different_locale.yml +241 -0
- data/spec/fixtures/vcr_fixtures/update_space_localized.yml +2315 -0
- metadata +13 -3
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.7.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
|
+
date: 2017-08-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -308,9 +308,12 @@ files:
|
|
308
308
|
- spec/fixtures/json_fixtures/ok_version.json
|
309
309
|
- spec/fixtures/json_fixtures/processed.json
|
310
310
|
- spec/fixtures/json_fixtures/simple.json
|
311
|
+
- spec/fixtures/json_fixtures/update_space_localized.json
|
311
312
|
- spec/fixtures/json_fixtures/wl1z0pal05vy.json
|
312
313
|
- spec/fixtures/json_fixtures/wl1z0pal05vy_content_types_only.json
|
313
314
|
- spec/fixtures/vcr_fixtures/asset_no_transform.yml
|
315
|
+
- spec/fixtures/vcr_fixtures/check_created_space.yml
|
316
|
+
- spec/fixtures/vcr_fixtures/check_update_space_localized.yml
|
314
317
|
- spec/fixtures/vcr_fixtures/create_space.yml
|
315
318
|
- spec/fixtures/vcr_fixtures/create_space_with_blog_template.yml
|
316
319
|
- spec/fixtures/vcr_fixtures/create_space_with_catalogue_template.yml
|
@@ -321,6 +324,8 @@ files:
|
|
321
324
|
- spec/fixtures/vcr_fixtures/issue_22.yml
|
322
325
|
- spec/fixtures/vcr_fixtures/multiple_organizations.yml
|
323
326
|
- spec/fixtures/vcr_fixtures/no_ids.yml
|
327
|
+
- spec/fixtures/vcr_fixtures/space_with_different_locale.yml
|
328
|
+
- spec/fixtures/vcr_fixtures/update_space_localized.yml
|
324
329
|
- spec/spec_helper.rb
|
325
330
|
homepage: https://www.contentful.com
|
326
331
|
licenses:
|
@@ -342,7 +347,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
342
347
|
version: '0'
|
343
348
|
requirements: []
|
344
349
|
rubyforge_project:
|
345
|
-
rubygems_version: 2.
|
350
|
+
rubygems_version: 2.6.11
|
346
351
|
signing_key:
|
347
352
|
specification_version: 4
|
348
353
|
summary: Contentful CLI tool for getting started with Contentful
|
@@ -383,9 +388,12 @@ test_files:
|
|
383
388
|
- spec/fixtures/json_fixtures/ok_version.json
|
384
389
|
- spec/fixtures/json_fixtures/processed.json
|
385
390
|
- spec/fixtures/json_fixtures/simple.json
|
391
|
+
- spec/fixtures/json_fixtures/update_space_localized.json
|
386
392
|
- spec/fixtures/json_fixtures/wl1z0pal05vy.json
|
387
393
|
- spec/fixtures/json_fixtures/wl1z0pal05vy_content_types_only.json
|
388
394
|
- spec/fixtures/vcr_fixtures/asset_no_transform.yml
|
395
|
+
- spec/fixtures/vcr_fixtures/check_created_space.yml
|
396
|
+
- spec/fixtures/vcr_fixtures/check_update_space_localized.yml
|
389
397
|
- spec/fixtures/vcr_fixtures/create_space.yml
|
390
398
|
- spec/fixtures/vcr_fixtures/create_space_with_blog_template.yml
|
391
399
|
- spec/fixtures/vcr_fixtures/create_space_with_catalogue_template.yml
|
@@ -396,4 +404,6 @@ test_files:
|
|
396
404
|
- spec/fixtures/vcr_fixtures/issue_22.yml
|
397
405
|
- spec/fixtures/vcr_fixtures/multiple_organizations.yml
|
398
406
|
- spec/fixtures/vcr_fixtures/no_ids.yml
|
407
|
+
- spec/fixtures/vcr_fixtures/space_with_different_locale.yml
|
408
|
+
- spec/fixtures/vcr_fixtures/update_space_localized.yml
|
399
409
|
- spec/spec_helper.rb
|