contentful_bootstrap 3.5.0 → 3.5.1
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/contentful_bootstrap.gemspec +1 -0
- data/lib/contentful/bootstrap/commands/create_space.rb +3 -2
- data/lib/contentful/bootstrap/version.rb +1 -1
- data/spec/contentful/bootstrap/commands/create_space_spec.rb +21 -0
- data/spec/fixtures/ini_fixtures/no_org.ini +2 -0
- data/spec/fixtures/vcr_fixtures/multiple_organizations.yml +50850 -0
- data/spec/spec_helper.rb +3 -0
- metadata +21 -3
data/spec/spec_helper.rb
CHANGED
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.5.
|
4
|
+
version: 3.5.1
|
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-02-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -108,6 +108,20 @@ dependencies:
|
|
108
108
|
- - ">="
|
109
109
|
- !ruby/object:Gem::Version
|
110
110
|
version: '0'
|
111
|
+
- !ruby/object:Gem::Dependency
|
112
|
+
name: simplecov
|
113
|
+
requirement: !ruby/object:Gem::Requirement
|
114
|
+
requirements:
|
115
|
+
- - ">="
|
116
|
+
- !ruby/object:Gem::Version
|
117
|
+
version: '0'
|
118
|
+
type: :development
|
119
|
+
prerelease: false
|
120
|
+
version_requirements: !ruby/object:Gem::Requirement
|
121
|
+
requirements:
|
122
|
+
- - ">="
|
123
|
+
- !ruby/object:Gem::Version
|
124
|
+
version: '0'
|
111
125
|
- !ruby/object:Gem::Dependency
|
112
126
|
name: guard
|
113
127
|
requirement: !ruby/object:Gem::Requirement
|
@@ -280,6 +294,7 @@ files:
|
|
280
294
|
- spec/contentful/bootstrap/token_spec.rb
|
281
295
|
- spec/fixtures/ini_fixtures/contentfulrc.ini
|
282
296
|
- spec/fixtures/ini_fixtures/no_global.ini
|
297
|
+
- spec/fixtures/ini_fixtures/no_org.ini
|
283
298
|
- spec/fixtures/ini_fixtures/no_token.ini
|
284
299
|
- spec/fixtures/ini_fixtures/orgid.ini
|
285
300
|
- spec/fixtures/ini_fixtures/sections.ini
|
@@ -306,6 +321,7 @@ files:
|
|
306
321
|
- spec/fixtures/vcr_fixtures/generate_json_content_types_only.yml
|
307
322
|
- spec/fixtures/vcr_fixtures/generate_token.yml
|
308
323
|
- spec/fixtures/vcr_fixtures/issue_22.yml
|
324
|
+
- spec/fixtures/vcr_fixtures/multiple_organizations.yml
|
309
325
|
- spec/fixtures/vcr_fixtures/no_ids.yml
|
310
326
|
- spec/spec_helper.rb
|
311
327
|
homepage: https://www.contentful.com
|
@@ -328,7 +344,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
328
344
|
version: '0'
|
329
345
|
requirements: []
|
330
346
|
rubyforge_project:
|
331
|
-
rubygems_version: 2.
|
347
|
+
rubygems_version: 2.5.1
|
332
348
|
signing_key:
|
333
349
|
specification_version: 4
|
334
350
|
summary: Contentful CLI tool for getting started with Contentful
|
@@ -354,6 +370,7 @@ test_files:
|
|
354
370
|
- spec/contentful/bootstrap/token_spec.rb
|
355
371
|
- spec/fixtures/ini_fixtures/contentfulrc.ini
|
356
372
|
- spec/fixtures/ini_fixtures/no_global.ini
|
373
|
+
- spec/fixtures/ini_fixtures/no_org.ini
|
357
374
|
- spec/fixtures/ini_fixtures/no_token.ini
|
358
375
|
- spec/fixtures/ini_fixtures/orgid.ini
|
359
376
|
- spec/fixtures/ini_fixtures/sections.ini
|
@@ -380,5 +397,6 @@ test_files:
|
|
380
397
|
- spec/fixtures/vcr_fixtures/generate_json_content_types_only.yml
|
381
398
|
- spec/fixtures/vcr_fixtures/generate_token.yml
|
382
399
|
- spec/fixtures/vcr_fixtures/issue_22.yml
|
400
|
+
- spec/fixtures/vcr_fixtures/multiple_organizations.yml
|
383
401
|
- spec/fixtures/vcr_fixtures/no_ids.yml
|
384
402
|
- spec/spec_helper.rb
|