contentful 2.14.0 → 2.15.4
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/.rubocop.yml +3 -0
- data/.ruby-version +1 -0
- data/.travis.yml +1 -0
- data/CHANGELOG.md +24 -0
- data/README.md +2 -0
- data/contentful.gemspec +2 -2
- data/contentful.rb.sublime-project +9 -0
- data/contentful.rb.sublime-workspace +2154 -0
- data/lib/contentful/array.rb +9 -4
- data/lib/contentful/array_like.rb +2 -2
- data/lib/contentful/asset.rb +10 -4
- data/lib/contentful/base_resource.rb +15 -1
- data/lib/contentful/client.rb +4 -3
- data/lib/contentful/entry.rb +2 -1
- data/lib/contentful/fields_resource.rb +1 -5
- data/lib/contentful/request.rb +6 -1
- data/lib/contentful/resource_builder.rb +4 -3
- data/lib/contentful/version.rb +1 -1
- data/spec/array_spec.rb +29 -0
- data/spec/client_class_spec.rb +1 -1
- data/spec/client_configuration_spec.rb +17 -0
- data/spec/entry_spec.rb +30 -0
- data/spec/fixtures/vcr_cassettes/entries/unresolvable_assets.yml +89 -0
- data/spec/fixtures/vcr_cassettes/query_array_1.yml +89 -0
- data/spec/fixtures/vcr_cassettes/query_array_2.yml +89 -0
- metadata +49 -36
    
        checksums.yaml
    CHANGED
    
    | @@ -1,7 +1,7 @@ | |
| 1 1 | 
             
            ---
         | 
| 2 2 | 
             
            SHA256:
         | 
| 3 | 
            -
              metadata.gz:  | 
| 4 | 
            -
              data.tar.gz:  | 
| 3 | 
            +
              metadata.gz: 4e84df2f0ef19ecf855ce77085b4270a9c01090ca58983f0ec08216e5e45b840
         | 
| 4 | 
            +
              data.tar.gz: bba7eb0daaaf9d83120e4efec27e378d1876c798faf2290f1291db84d6c50160
         | 
| 5 5 | 
             
            SHA512:
         | 
| 6 | 
            -
              metadata.gz:  | 
| 7 | 
            -
              data.tar.gz:  | 
| 6 | 
            +
              metadata.gz: 69620f883503572654fba4f5d6f0b4df752bb17f8f2c7d69dd01e246962e8a66fffa67c88ab0a77474075779c5bea3df74a89fd4eedd4a8c6097a30f39e3f73f
         | 
| 7 | 
            +
              data.tar.gz: 490570518b664f9227e9fa28aba01276238187b24253ea7b52a4bbaa3ae76dcc5573eb810d704db090ef6ca18ec55ca75e86f3a1bd5e894fb4ccdee408c93201
         | 
    
        data/.rubocop.yml
    CHANGED
    
    
    
        data/.ruby-version
    ADDED
    
    | @@ -0,0 +1 @@ | |
| 1 | 
            +
            2.7.1
         | 
    
        data/.travis.yml
    CHANGED
    
    
    
        data/CHANGELOG.md
    CHANGED
    
    | @@ -2,6 +2,30 @@ | |
| 2 2 |  | 
| 3 3 | 
             
            ## Unreleased
         | 
| 4 4 |  | 
| 5 | 
            +
            ## 2.15.4
         | 
| 6 | 
            +
             | 
| 7 | 
            +
            ### Fixed
         | 
| 8 | 
            +
            * Fixed an issue where the `log_level` of `Logger` was changed unintentionally [#222](https://github.com/contentful/contentful.rb/pull/222)
         | 
| 9 | 
            +
            * Fixed an issue cause by a `Logger` not being correctly thrown away, causing an exception. [#220](https://github.com/contentful/contentful.rb/pull/220)
         | 
| 10 | 
            +
            * Added `title` field to assets to prevent Error raising when the field is empty. [#218](https://github.com/contentful/contentful.rb/pull/218)
         | 
| 11 | 
            +
            * Fixed an issue with `ArrayLike` not taking multiple arguments leading to Errors when using it with pagination libraries. [#215](https://github.com/contentful/contentful.rb/pull/215)
         | 
| 12 | 
            +
             | 
| 13 | 
            +
            ## 2.15.3
         | 
| 14 | 
            +
            ### Fixed
         | 
| 15 | 
            +
            * Fixed a deprecation warning in Ruby 2.7.0 for `URI::escape` and replaced it with a backwards compatible mechanism. [#217](https://github.com/contentful/contentful.rb/issues/217)
         | 
| 16 | 
            +
             | 
| 17 | 
            +
            ## 2.15.2
         | 
| 18 | 
            +
            ### Fixed
         | 
| 19 | 
            +
            * Fixed unresolvable single linked entries and assets returning a JSON Link rather than being `nil`, the same way they are filtered from Link arrays.
         | 
| 20 | 
            +
             | 
| 21 | 
            +
            ## 2.15.1
         | 
| 22 | 
            +
            ### Fixed
         | 
| 23 | 
            +
            * Fixed how `entry_mapping` is cached in order to avoid errors when deserializing resources that have been serialized with previously deleted mapping classes. [#212](https://github.com/contentful/contentful.rb/issues/212)
         | 
| 24 | 
            +
             | 
| 25 | 
            +
            ## 2.15.0
         | 
| 26 | 
            +
            ### Added
         | 
| 27 | 
            +
            * Added the capability for `Array#next_page` to support carry-over of query parameters.
         | 
| 28 | 
            +
             | 
| 5 29 | 
             
            ## 2.14.0
         | 
| 6 30 | 
             
            ### Added
         | 
| 7 31 | 
             
            * Allow user defined methods to override properties created by the SDK, if you want to access overriden fields or sys properties use `#fields[]` or `#sys[]` as accessors. [#210](https://github.com/contentful/contentful.rb/pull/210)
         | 
    
        data/README.md
    CHANGED
    
    | @@ -363,6 +363,8 @@ client = Contentful::Client.new( | |
| 363 363 | 
             
                  <td>
         | 
| 364 364 | 
             
                    The default severity is set to INFO and logs only the request attributes (headers, parameters and url).
         | 
| 365 365 | 
             
                    Setting it to DEBUG will also log the raw JSON response.
         | 
| 366 | 
            +
                    WARNING: Setting this will override the level on the logger instance. Leave out this key to preserve
         | 
| 367 | 
            +
                    the original log_level on the logger, for example when using Rails.logger.
         | 
| 366 368 | 
             
                  </td>
         | 
| 367 369 | 
             
                </tr>
         | 
| 368 370 | 
             
              </tbody>
         | 
    
        data/contentful.gemspec
    CHANGED
    
    | @@ -26,8 +26,8 @@ Gem::Specification.new do |gem| | |
| 26 26 |  | 
| 27 27 | 
             
              gem.add_dependency 'multi_json', '~> 1'
         | 
| 28 28 |  | 
| 29 | 
            -
              gem.add_development_dependency 'bundler' | 
| 30 | 
            -
              gem.add_development_dependency 'rake', ' | 
| 29 | 
            +
              gem.add_development_dependency 'bundler'
         | 
| 30 | 
            +
              gem.add_development_dependency 'rake', '>= 12.3.3'
         | 
| 31 31 | 
             
              gem.add_development_dependency 'rubygems-tasks', '~> 0.2'
         | 
| 32 32 |  | 
| 33 33 | 
             
              gem.add_development_dependency 'guard'
         | 
| @@ -0,0 +1,2154 @@ | |
| 1 | 
            +
            {
         | 
| 2 | 
            +
            	"auto_complete":
         | 
| 3 | 
            +
            	{
         | 
| 4 | 
            +
            		"selected_items":
         | 
| 5 | 
            +
            		[
         | 
| 6 | 
            +
            			[
         | 
| 7 | 
            +
            				"content",
         | 
| 8 | 
            +
            				"Contentful"
         | 
| 9 | 
            +
            			],
         | 
| 10 | 
            +
            			[
         | 
| 11 | 
            +
            				"descr",
         | 
| 12 | 
            +
            				"describe"
         | 
| 13 | 
            +
            			],
         | 
| 14 | 
            +
            			[
         | 
| 15 | 
            +
            				"add_",
         | 
| 16 | 
            +
            				"add_development_dependency"
         | 
| 17 | 
            +
            			],
         | 
| 18 | 
            +
            			[
         | 
| 19 | 
            +
            				"org",
         | 
| 20 | 
            +
            				"org_keys"
         | 
| 21 | 
            +
            			],
         | 
| 22 | 
            +
            			[
         | 
| 23 | 
            +
            				"Migrate",
         | 
| 24 | 
            +
            				"MigrateFreeToCommunity"
         | 
| 25 | 
            +
            			],
         | 
| 26 | 
            +
            			[
         | 
| 27 | 
            +
            				"Or",
         | 
| 28 | 
            +
            				"Organization\t  => Class<Organization>"
         | 
| 29 | 
            +
            			],
         | 
| 30 | 
            +
            			[
         | 
| 31 | 
            +
            				"orgs",
         | 
| 32 | 
            +
            				"org_keys\t  Variable"
         | 
| 33 | 
            +
            			],
         | 
| 34 | 
            +
            			[
         | 
| 35 | 
            +
            				"b",
         | 
| 36 | 
            +
            				"batch_number"
         | 
| 37 | 
            +
            			],
         | 
| 38 | 
            +
            			[
         | 
| 39 | 
            +
            				"err",
         | 
| 40 | 
            +
            				"email_required?\t  Method"
         | 
| 41 | 
            +
            			],
         | 
| 42 | 
            +
            			[
         | 
| 43 | 
            +
            				"e",
         | 
| 44 | 
            +
            				"elsif\telsif ..."
         | 
| 45 | 
            +
            			],
         | 
| 46 | 
            +
            			[
         | 
| 47 | 
            +
            				"organi",
         | 
| 48 | 
            +
            				"organization"
         | 
| 49 | 
            +
            			],
         | 
| 50 | 
            +
            			[
         | 
| 51 | 
            +
            				"trac",
         | 
| 52 | 
            +
            				"track_proof_of_concept_ended"
         | 
| 53 | 
            +
            			],
         | 
| 54 | 
            +
            			[
         | 
| 55 | 
            +
            				"create",
         | 
| 56 | 
            +
            				"create_rate_plan"
         | 
| 57 | 
            +
            			],
         | 
| 58 | 
            +
            			[
         | 
| 59 | 
            +
            				"track",
         | 
| 60 | 
            +
            				"track_proof_of_concept_ended"
         | 
| 61 | 
            +
            			],
         | 
| 62 | 
            +
            			[
         | 
| 63 | 
            +
            				"rate",
         | 
| 64 | 
            +
            				"rate_plan"
         | 
| 65 | 
            +
            			],
         | 
| 66 | 
            +
            			[
         | 
| 67 | 
            +
            				"is",
         | 
| 68 | 
            +
            				"is_expected_when_called"
         | 
| 69 | 
            +
            			],
         | 
| 70 | 
            +
            			[
         | 
| 71 | 
            +
            				"space",
         | 
| 72 | 
            +
            				"space_key"
         | 
| 73 | 
            +
            			],
         | 
| 74 | 
            +
            			[
         | 
| 75 | 
            +
            				"update",
         | 
| 76 | 
            +
            				"update_space_assignment_for_rate_plan"
         | 
| 77 | 
            +
            			],
         | 
| 78 | 
            +
            			[
         | 
| 79 | 
            +
            				"new_spa",
         | 
| 80 | 
            +
            				"new_space_is_poc"
         | 
| 81 | 
            +
            			],
         | 
| 82 | 
            +
            			[
         | 
| 83 | 
            +
            				"new",
         | 
| 84 | 
            +
            				"new_space_was_poc"
         | 
| 85 | 
            +
            			],
         | 
| 86 | 
            +
            			[
         | 
| 87 | 
            +
            				"new_",
         | 
| 88 | 
            +
            				"new_key"
         | 
| 89 | 
            +
            			],
         | 
| 90 | 
            +
            			[
         | 
| 91 | 
            +
            				"resor",
         | 
| 92 | 
            +
            				"resource_params"
         | 
| 93 | 
            +
            			],
         | 
| 94 | 
            +
            			[
         | 
| 95 | 
            +
            				"attr",
         | 
| 96 | 
            +
            				"attr_reader"
         | 
| 97 | 
            +
            			],
         | 
| 98 | 
            +
            			[
         | 
| 99 | 
            +
            				"is_expected",
         | 
| 100 | 
            +
            				"is_expected_when_called"
         | 
| 101 | 
            +
            			],
         | 
| 102 | 
            +
            			[
         | 
| 103 | 
            +
            				"describ",
         | 
| 104 | 
            +
            				"described_class"
         | 
| 105 | 
            +
            			],
         | 
| 106 | 
            +
            			[
         | 
| 107 | 
            +
            				"Sap",
         | 
| 108 | 
            +
            				"Spaces"
         | 
| 109 | 
            +
            			],
         | 
| 110 | 
            +
            			[
         | 
| 111 | 
            +
            				"tr",
         | 
| 112 | 
            +
            				"track_on_read_only"
         | 
| 113 | 
            +
            			],
         | 
| 114 | 
            +
            			[
         | 
| 115 | 
            +
            				"read_onl",
         | 
| 116 | 
            +
            				"read_only_at"
         | 
| 117 | 
            +
            			],
         | 
| 118 | 
            +
            			[
         | 
| 119 | 
            +
            				"or",
         | 
| 120 | 
            +
            				"organization_zuora_pricing_version_2"
         | 
| 121 | 
            +
            			],
         | 
| 122 | 
            +
            			[
         | 
| 123 | 
            +
            				"is_expec",
         | 
| 124 | 
            +
            				"is_expected_when_called"
         | 
| 125 | 
            +
            			],
         | 
| 126 | 
            +
            			[
         | 
| 127 | 
            +
            				"ana",
         | 
| 128 | 
            +
            				"analytics"
         | 
| 129 | 
            +
            			],
         | 
| 130 | 
            +
            			[
         | 
| 131 | 
            +
            				"Space",
         | 
| 132 | 
            +
            				"SpacableClass"
         | 
| 133 | 
            +
            			],
         | 
| 134 | 
            +
            			[
         | 
| 135 | 
            +
            				"subs",
         | 
| 136 | 
            +
            				"subscription_fetcher"
         | 
| 137 | 
            +
            			],
         | 
| 138 | 
            +
            			[
         | 
| 139 | 
            +
            				"Sub",
         | 
| 140 | 
            +
            				"SubscriptionManagement"
         | 
| 141 | 
            +
            			],
         | 
| 142 | 
            +
            			[
         | 
| 143 | 
            +
            				"subby_",
         | 
| 144 | 
            +
            				"subby_plan"
         | 
| 145 | 
            +
            			],
         | 
| 146 | 
            +
            			[
         | 
| 147 | 
            +
            				"orga",
         | 
| 148 | 
            +
            				"organization"
         | 
| 149 | 
            +
            			],
         | 
| 150 | 
            +
            			[
         | 
| 151 | 
            +
            				"organizatio",
         | 
| 152 | 
            +
            				"organization"
         | 
| 153 | 
            +
            			],
         | 
| 154 | 
            +
            			[
         | 
| 155 | 
            +
            				"subb",
         | 
| 156 | 
            +
            				"subby_plan"
         | 
| 157 | 
            +
            			],
         | 
| 158 | 
            +
            			[
         | 
| 159 | 
            +
            				"recei",
         | 
| 160 | 
            +
            				"receive"
         | 
| 161 | 
            +
            			],
         | 
| 162 | 
            +
            			[
         | 
| 163 | 
            +
            				"is_exp",
         | 
| 164 | 
            +
            				"is_expected_when_called"
         | 
| 165 | 
            +
            			],
         | 
| 166 | 
            +
            			[
         | 
| 167 | 
            +
            				"anon",
         | 
| 168 | 
            +
            				"anonymous_id_generator"
         | 
| 169 | 
            +
            			],
         | 
| 170 | 
            +
            			[
         | 
| 171 | 
            +
            				"TRackable",
         | 
| 172 | 
            +
            				"TrackableClass"
         | 
| 173 | 
            +
            			],
         | 
| 174 | 
            +
            			[
         | 
| 175 | 
            +
            				"con",
         | 
| 176 | 
            +
            				"configuration"
         | 
| 177 | 
            +
            			],
         | 
| 178 | 
            +
            			[
         | 
| 179 | 
            +
            				"rece",
         | 
| 180 | 
            +
            				"receive"
         | 
| 181 | 
            +
            			],
         | 
| 182 | 
            +
            			[
         | 
| 183 | 
            +
            				"segem",
         | 
| 184 | 
            +
            				"segmentio_write_key"
         | 
| 185 | 
            +
            			],
         | 
| 186 | 
            +
            			[
         | 
| 187 | 
            +
            				"config",
         | 
| 188 | 
            +
            				"configure"
         | 
| 189 | 
            +
            			],
         | 
| 190 | 
            +
            			[
         | 
| 191 | 
            +
            				"segment",
         | 
| 192 | 
            +
            				"segment_write_key"
         | 
| 193 | 
            +
            			],
         | 
| 194 | 
            +
            			[
         | 
| 195 | 
            +
            				"configur",
         | 
| 196 | 
            +
            				"configuration"
         | 
| 197 | 
            +
            			],
         | 
| 198 | 
            +
            			[
         | 
| 199 | 
            +
            				"cl",
         | 
| 200 | 
            +
            				"cla\tclass .. end"
         | 
| 201 | 
            +
            			],
         | 
| 202 | 
            +
            			[
         | 
| 203 | 
            +
            				"failure",
         | 
| 204 | 
            +
            				"failure_message"
         | 
| 205 | 
            +
            			],
         | 
| 206 | 
            +
            			[
         | 
| 207 | 
            +
            				"tracking",
         | 
| 208 | 
            +
            				"tracking_methods"
         | 
| 209 | 
            +
            			],
         | 
| 210 | 
            +
            			[
         | 
| 211 | 
            +
            				"matcher",
         | 
| 212 | 
            +
            				"Matchers"
         | 
| 213 | 
            +
            			],
         | 
| 214 | 
            +
            			[
         | 
| 215 | 
            +
            				"expectation",
         | 
| 216 | 
            +
            				"expectations"
         | 
| 217 | 
            +
            			],
         | 
| 218 | 
            +
            			[
         | 
| 219 | 
            +
            				"chain",
         | 
| 220 | 
            +
            				"chain_method"
         | 
| 221 | 
            +
            			],
         | 
| 222 | 
            +
            			[
         | 
| 223 | 
            +
            				"erro",
         | 
| 224 | 
            +
            				"error_message"
         | 
| 225 | 
            +
            			],
         | 
| 226 | 
            +
            			[
         | 
| 227 | 
            +
            				"Expectation",
         | 
| 228 | 
            +
            				"ExpectationNotMetError"
         | 
| 229 | 
            +
            			]
         | 
| 230 | 
            +
            		]
         | 
| 231 | 
            +
            	},
         | 
| 232 | 
            +
            	"buffers":
         | 
| 233 | 
            +
            	[
         | 
| 234 | 
            +
            		{
         | 
| 235 | 
            +
            			"contents": "Searching 253 files for \":release\"\n\n0 matches\n\nSearching 253 files for \":release\"\n\n0 matches\n\nSearching 253 files for \"release\"\n\n/home/florian/code/contentful.rb/CHANGELOG.md:\n    1  # Change Log\n    2  \n    3: ## Unreleased\n    4  \n    5  ## 2.15.4\n    .\n   71  ## 2.10.0\n   72  \n   73: As `RichText` moves from `alpha` to `beta`, we're treating this as a feature release.\n   74  \n   75  ### Changed\n   ..\n   90  ## 2.9.1\n   91  \n   92: **Note:** This release includes support for `StructuredText`, this is an **alpha** feature and changes are to be expected. Further releases of this feature\n   93  will not increase a major version even if changes are breaking.\n   94  \n   ..\n  101  ## 2.9.0 **YANKED**\n  102  \n  103: Yanked due to faulty release\n  104  \n  105  ## 2.8.1\n  ...\n  249  **ATTENTION**: Breaking changes on how JSON Fields are parsed. All keys are now symbolized, including\n  250  nested hashes. Parsing errors have been fixed, particularly for `array`, `null` and `boolean` present on the first\n  251: level of the JSON field. Also, on release 0.11.0, it was fixed that JSON Fields were being treated as locales.\n  252  This change increases consistency for the SDK, treating everything the same way. We strive for consistency and\n  253  quality in our tools.\n  ...\n  410  \n  411  ## 0.1.0\n  412: * Initial release.\n  413  \n\n/home/florian/code/contentful.rb/README.md:\n  642  * `#inspect` now offers a clearer and better output for all resources. If your code had assertions based on the string representation of the resources, update to the new format `<Contentful::#{RESOURCE_CLASS}#{additional_info} id=\"#{RESOURCE_ID}\">`.\n  643  \n  644: For more information on the internal changes present in the 2.x release, please read the [CHANGELOG](CHANGELOG.md)\n  645  \n  646  ### Tutorials & other resources\n\n/home/florian/code/contentful.rb/RELEASE.md:\n    6  - [ ] Update Changelog: http://keepachangelog.com/\n    7  - [ ] Bump version number: http://semver.org/\n    8: - [ ] Release gem and communicate updates\n    9  \n\n/home/florian/code/contentful.rb/doc/file.CHANGELOG.html:\n   61  <h1 id=\"label-Change+Log\">Change Log</h1>\n   62  \n   63: <h2 id=\"label-Unreleased\">Unreleased</h2>\n   64  \n   65  <h2 id=\"label-2.15.3\">2.15.3</h2>\n   ..\n  166  <h2 id=\"label-2.10.0\">2.10.0</h2>\n  167  \n  168: <p>As <code>RichText</code> moves from <code>alpha</code> to <code>beta</code>, we're treating this as a feature release.</p>\n  169  \n  170  <h3 id=\"label-Changed\">Changed</h3>\n  ...\n  196  <h2 id=\"label-2.9.1\">2.9.1</h2>\n  197  \n  198: <p><strong>Note:</strong> This release includes support for <code>StructuredText</code>, this is an <strong>alpha</strong> feature and changes are to be expected. Further releases of this feature will not increase a major version even if changes are breaking.</p>\n  199  \n  200  <h3 id=\"label-Added\">Added</h3>\n  ...\n  210  <h2 id=\"label-2.9.0+YANKED\">2.9.0 <strong>YANKED</strong></h2>\n  211  \n  212: <p>Yanked due to faulty release</p>\n  213  \n  214  <h2 id=\"label-2.8.1\">2.8.1</h2>\n  ...\n  452  <h2 id=\"label-1.0.0\">1.0.0</h2>\n  453  \n  454: <p><strong>ATTENTION</strong>: Breaking changes on how JSON Fields are parsed. All keys are now symbolized, including nested hashes. Parsing errors have been fixed, particularly for <code>array</code>, <code>null</code> and <code>boolean</code> present on the first level of the JSON field. Also, on release 0.11.0, it was fixed that JSON Fields were being treated as locales. This change increases consistency for the SDK, treating everything the same way. We strive for consistency and quality in our tools.</p>\n  455  \n  456  <p>The following <code>diff</code> shows previous and current state. This is the contents of the JSON Field we test this feature against.</p>\n  ...\n  701  <h2 id=\"label-0.1.0\">0.1.0</h2>\n  702  <ul><li>\n  703: <p>Initial release.</p>\n  704  </li></ul>\n  705  </div></div>\n\n/home/florian/code/contentful.rb/doc/file.README.html:\n  703  </li></ul>\n  704  \n  705: <p>For more information on the internal changes present in the 2.x release, please read the <a href=\"CHANGELOG.md\">CHANGELOG</a></p>\n  706  \n  707  <h3 id=\"label-Tutorials+-26+other+resources\">Tutorials & other resources</h3>\n\n/home/florian/code/contentful.rb/doc/index.html:\n  703  </li></ul>\n  704  \n  705: <p>For more information on the internal changes present in the 2.x release, please read the <a href=\"CHANGELOG.md\">CHANGELOG</a></p>\n  706  \n  707  <h3 id=\"label-Tutorials+-26+other+resources\">Tutorials & other resources</h3>\n\n19 matches across 6 files\n\n\nSearching 253 files for \"push:contentful\"\n\n0 matches\n\nSearching 255 files for \"stub(\"\n\n0 matches\n\nSearching 22 files for \"stub(\"\n\n0 matches\n\nSearching 22 files for \"mock(\"\n\n0 matches\n\nSearching 22 files for \".proxy\"\n\n/home/florian/code/contentful.rb/spec/client_class_spec.rb:\n   34  \n   35      it 'calls #get_http' do\n   36:       expect(client.class).to receive(:get_http).with(client.base_url + request.url, request.query, client.request_headers, client.proxy_params, client.timeout_params) { raw_fixture('content_type') }\n   37        client.get(request)\n   38      end\n   39  \n   40      it 'calls #get_http via proxy' do\n   41:       expect(proxy_client.class).to receive(:get_http).with(proxy_client.base_url + request.url, request.query, proxy_client.request_headers, proxy_client.proxy_params, client.timeout_params) { raw_fixture('content_type') }\n   42        proxy_client.get(request)\n   43:       expect(proxy_client.proxy_params[:host]).to eq '183.207.232.194'\n   44:       expect(proxy_client.proxy_params[:port]).to eq 8080\n   45      end\n   46  \n   ..\n   48        context 'with timeouts configured' do\n   49          it 'calls #get_http with timeouts' do\n   50:           expect(timeout_client.class).to receive(:get_http).with(timeout_client.base_url + request.url, request.query, timeout_client.request_headers, timeout_client.proxy_params, timeout_client.timeout_params) { raw_fixture('content_type') }\n   51            timeout_client.get(request)\n   52            expect(timeout_client.timeout_params[:connect]).to eq 1\n   ..\n   58        context 'without timeouts' do\n   59          it 'calls #get_http with timeouts' do\n   60:           expect(client.class).to receive(:get_http).with(client.base_url + request.url, request.query, client.request_headers, client.proxy_params, client.timeout_params) { raw_fixture('content_type') }\n   61            client.get(request)\n   62            expect(client.timeout_params).to eq({})\n\n6 matches in 1 file\n\n\nSearching 22 files for \"RichTextRenderer\"\n\n/home/florian/code/contentful.rb/spec/entry_spec.rb:\n  815      \n  816      let(:rendered_text) do\n  817:       Contentful::RichTextRenderer::Renderer.new(\n  818          'embedded-entry-block' => Content::News::Article\n  819        ).render(rich_text)\n\n1 match in 1 file\n\n\nSearching 255 files for \"RichTextRenderer\"\n\n/home/florian/code/contentful.rb/spec/entry_spec.rb:\n  815      \n  816      let(:rendered_text) do\n  817:       Contentful::RichTextRenderer::Renderer.new(\n  818          'embedded-entry-block' => Content::News::Article\n  819        ).render(rich_text)\n\n1 match in 1 file\n\n\nSearching 191 files for \"embedded\"\n\n/home/florian/code/contentful.rb/CHANGELOG.md:\n   63  \n   64  ### Changed\n   65: * Included resources for embedded entries and assets in Rich Text fields are now properly serialized to `data.target` instead of the top level `data`.\n   66  \n   67  ## 2.10.1\n\n/home/florian/code/contentful.rb/spec/entry_spec.rb:\n  691  \n  692          expected_entry_occurrances = 2\n  693:         embedded_entry_index = 1\n  694          entry.body['content'].each do |content|\n  695:           if content['nodeType'] == 'embedded-entry-block'\n  696              expect(content['data']['target']).to be_a Contentful::Entry\n  697:             expect(content['data']['target'].body).to eq \"Embedded #{embedded_entry_index}\"\n  698              expected_entry_occurrances -= 1\n  699:             embedded_entry_index += 1\n  700            end\n  701          end\n\n/home/florian/code/contentful.rb/spec/fixtures/vcr_cassettes/entries/issue_225.yml:\n 2495                                },\n 2496                                \"content\": [],\n 2497:                               \"nodeType\": \"embedded-entry-block\"\n 2498                             },\n 2499                             {\n ....\n 2554                                },\n 2555                                \"content\": [],\n 2556:                               \"nodeType\": \"embedded-entry-block\"\n 2557                             },\n 2558                             {\n ....\n 2601                                },\n 2602                                \"content\": [],\n 2603:                               \"nodeType\": \"embedded-entry-block\"\n 2604                             },\n 2605                             {\n ....\n 2648                                },\n 2649                                \"content\": [],\n 2650:                               \"nodeType\": \"embedded-entry-block\"\n 2651                             },\n 2652                             {\n ....\n 2707                                },\n 2708                                \"content\": [],\n 2709:                               \"nodeType\": \"embedded-entry-block\"\n 2710                             },\n 2711                             {\n ....\n 2742                                },\n 2743                                \"content\": [],\n 2744:                               \"nodeType\": \"embedded-entry-block\"\n 2745                             },\n 2746                             {\n\n/home/florian/code/contentful.rb/spec/fixtures/vcr_cassettes/entries/issue_225_broken.yml:\n 2495                                },\n 2496                                \"content\": [],\n 2497:                               \"nodeType\": \"embedded-entry-block\"\n 2498                             },\n 2499                             {\n ....\n 2554                                },\n 2555                                \"content\": [],\n 2556:                               \"nodeType\": \"embedded-entry-block\"\n 2557                             },\n 2558                             {\n ....\n 2601                                },\n 2602                                \"content\": [],\n 2603:                               \"nodeType\": \"embedded-entry-block\"\n 2604                             },\n 2605                             {\n ....\n 2648                                },\n 2649                                \"content\": [],\n 2650:                               \"nodeType\": \"embedded-entry-block\"\n 2651                             },\n 2652                             {\n ....\n 2707                                },\n 2708                                \"content\": [],\n 2709:                               \"nodeType\": \"embedded-entry-block\"\n 2710                             },\n 2711                             {\n ....\n 2742                                },\n 2743                                \"content\": [],\n 2744:                               \"nodeType\": \"embedded-entry-block\"\n 2745                             },\n 2746                             {\n\n/home/florian/code/contentful.rb/spec/fixtures/vcr_cassettes/entries/rich_text.yml:\n   93                    }\n   94                  },\n   95:                 \"id\": \"embedded\",\n   96                  \"type\": \"ContentType\",\n   97                  \"createdAt\": \"2018-08-22T10:44:07.886Z\",\n   ..\n  107                },\n  108                \"displayField\": \"body\",\n  109:               \"name\": \"Embedded\",\n  110                \"description\": \"\",\n  111                \"fields\": [\n  ...\n  332                          }\n  333                        ],\n  334:                       \"nodeType\": \"embedded-entry-block\",\n  335                        \"nodeClass\": \"block\"\n  336                      },\n  ...\n  449                          }\n  450                        ],\n  451:                       \"nodeType\": \"embedded-entry-block\",\n  452                        \"nodeClass\": \"block\"\n  453                      },\n  ...\n  535                          }\n  536                        ],\n  537:                       \"nodeType\": \"embedded-entry-block\",\n  538                        \"nodeClass\": \"block\"\n  539                      },\n  ...\n 1657                        \"type\": \"Link\",\n 1658                        \"linkType\": \"ContentType\",\n 1659:                       \"id\": \"embedded\"\n 1660                      }\n 1661                    },\n ....\n 1663                  },\n 1664                  \"fields\": {\n 1665:                   \"body\": \"Embedded 1\"\n 1666                  }\n 1667                },\n ....\n 1691                        \"type\": \"Link\",\n 1692                        \"linkType\": \"ContentType\",\n 1693:                       \"id\": \"embedded\"\n 1694                      }\n 1695                    },\n ....\n 1697                  },\n 1698                  \"fields\": {\n 1699:                   \"body\": \"Embedded 2\"\n 1700                  }\n 1701                }\n\n/home/florian/code/contentful.rb/spec/fixtures/vcr_cassettes/entries/rich_text_hydration_issue.yml:\n  382                          },\n  383                          \"content\": [],\n  384:                         \"nodeType\": \"embedded-entry-block\"\n  385                        },\n  386                        {\n\n/home/florian/code/contentful.rb/spec/fixtures/vcr_cassettes/entries/rich_text_nested_fields.yml:\n   93                    }\n   94                  },\n   95:                 \"id\": \"embedded\",\n   96                  \"type\": \"ContentType\",\n   97                  \"createdAt\": \"2018-08-22T10:44:07.886Z\",\n   ..\n  107                },\n  108                \"displayField\": \"body\",\n  109:               \"name\": \"Embedded\",\n  110                \"description\": \"\",\n  111                \"fields\": [\n  ...\n  419                                  }\n  420                                ],\n  421:                               \"nodeType\": \"embedded-entry-block\",\n  422                                \"nodeClass\": \"block\"\n  423                              },\n  ...\n  507                                  }\n  508                                ],\n  509:                               \"nodeType\": \"embedded-entry-block\",\n  510                                \"nodeClass\": \"block\"\n  511                              },\n  ...\n  603                        \"type\": \"Link\",\n  604                        \"linkType\": \"ContentType\",\n  605:                       \"id\": \"embedded\"\n  606                      }\n  607                    },\n  ...\n  609                  },\n  610                  \"fields\": {\n  611:                   \"body\": \"Embedded 1\"\n  612                  }\n  613                },\n  ...\n  637                        \"type\": \"Link\",\n  638                        \"linkType\": \"ContentType\",\n  639:                       \"id\": \"embedded\"\n  640                      }\n  641                    },\n  ...\n  643                  },\n  644                  \"fields\": {\n  645:                   \"body\": \"Embedded 2\"\n  646                  }\n  647                }\n\n/home/florian/code/contentful.rb/spec/fixtures/vcr_cassettes/entries/rich_text_unresolved_relationships.yml:\n  186                    }\n  187                  },\n  188:                 \"id\": \"embedded\",\n  189                  \"type\": \"ContentType\",\n  190                  \"createdAt\": \"2018-08-22T10:44:07.886Z\",\n  ...\n  200                },\n  201                \"displayField\": \"body\",\n  202:               \"name\": \"Embedded\",\n  203                \"description\": \"\",\n  204                \"fields\": [\n  ...\n  835                          },\n  836                          \"content\": [],\n  837:                         \"nodeType\": \"embedded-asset-block\"\n  838                        },\n  839                        {\n  ...\n  848                          },\n  849                          \"content\": [],\n  850:                         \"nodeType\": \"embedded-entry-block\"\n  851                        },\n  852                        {\n  ...\n  870                              },\n  871                              \"content\": [],\n  872:                             \"nodeType\": \"embedded-entry-inline\"\n  873                            },\n  874                            {\n  ...\n  916                          },\n  917                          \"content\": [],\n  918:                         \"nodeType\": \"embedded-entry-block\"\n  919                        },\n  920                        {\n\n42 matches across 8 files\n\n\nSearching 58 files for \"embedded\"\n\n/home/florian/code/contentful.rb/spec/entry_spec.rb:\n  691  \n  692          expected_entry_occurrances = 2\n  693:         embedded_entry_index = 1\n  694          entry.body['content'].each do |content|\n  695:           if content['nodeType'] == 'embedded-entry-block'\n  696              expect(content['data']['target']).to be_a Contentful::Entry\n  697:             expect(content['data']['target'].body).to eq \"Embedded #{embedded_entry_index}\"\n  698              expected_entry_occurrances -= 1\n  699:             embedded_entry_index += 1\n  700            end\n  701          end\n\n5 matches in 1 file\n\n\nSearching 58 files for \"def create_client\"\n\n/home/florian/code/contentful.rb/spec/support/client.rb:\n    1: def create_client(options = {})\n    2    Contentful::Client.new({\n    3      space: 'cfexampleapi',\n\n1 match in 1 file\n",
         | 
| 236 | 
            +
            			"settings":
         | 
| 237 | 
            +
            			{
         | 
| 238 | 
            +
            				"buffer_size": 17328,
         | 
| 239 | 
            +
            				"line_ending": "Unix",
         | 
| 240 | 
            +
            				"name": "Find Results",
         | 
| 241 | 
            +
            				"scratch": true
         | 
| 242 | 
            +
            			}
         | 
| 243 | 
            +
            		},
         | 
| 244 | 
            +
            		{
         | 
| 245 | 
            +
            			"file": "spec/entry_spec.rb",
         | 
| 246 | 
            +
            			"settings":
         | 
| 247 | 
            +
            			{
         | 
| 248 | 
            +
            				"buffer_size": 29936,
         | 
| 249 | 
            +
            				"encoding": "UTF-8",
         | 
| 250 | 
            +
            				"line_ending": "Unix"
         | 
| 251 | 
            +
            			}
         | 
| 252 | 
            +
            		},
         | 
| 253 | 
            +
            		{
         | 
| 254 | 
            +
            			"file": "spec/fixtures/vcr_cassettes/entries/rich_text_nested_fields.yml",
         | 
| 255 | 
            +
            			"settings":
         | 
| 256 | 
            +
            			{
         | 
| 257 | 
            +
            				"buffer_size": 22133,
         | 
| 258 | 
            +
            				"line_ending": "Unix"
         | 
| 259 | 
            +
            			}
         | 
| 260 | 
            +
            		},
         | 
| 261 | 
            +
            		{
         | 
| 262 | 
            +
            			"contents": "\n  BRANCH:  On branch `fix/issue-225` tracking `floriank/fix/issue-225`.\n  ROOT:    ~/code/contentful.rb\n  HEAD:    ec4ad8b corrects some meta info\n\n  UNSTAGED:\n    spec/entry_spec.rb\n    spec/fixtures/vcr_cassettes/entries/issue_225.yml\n\n  ###################                   ###############\n  ## SELECTED FILE ##                   ## ALL FILES ##\n  ###################                   ###############\n\n  [o] open file                         [a] stage all unstaged files\n  [s] stage file                        [A] stage all unstaged and untracked files\n  [u] unstage file                      [U] unstage all staged files\n  [d] discard changes to file           [D] discard all unstaged changes\n  [h] open file on remote\n  [M] launch external merge tool\n\n  [l] diff file inline                  [f] diff all files\n  [e] diff file                         [F] diff all cached files\n\n  #############                         #############\n  ## ACTIONS ##                         ## STASHES ##\n  #############                         #############\n\n  [c] commit                            [t][a] apply stash\n  [C] commit, including unstaged        [t][p] pop stash\n  [m] amend previous commit             [t][s] show stash\n  [p] push current branch               [t][c] create stash\n                                        [t][u] create stash including untracked files\n  [i] ignore file                       [t][g] create stash of staged changes only\n  [I] ignore pattern                    [t][d] drop stash\n\n  [B] abort merge\n\n  ###########\n  ## OTHER ##\n  ###########\n\n  [g]         show graph repop history\n  [?]         toggle this help menu\n  [tab]       transition to next dashboard\n  [SHIFT-tab] transition to previous dashboard\n  [.]         move cursor to next file\n  [,]         move cursor to previous file\n\n-\n\n",
         | 
| 263 | 
            +
            			"settings":
         | 
| 264 | 
            +
            			{
         | 
| 265 | 
            +
            				"buffer_size": 1826,
         | 
| 266 | 
            +
            				"line_ending": "Unix",
         | 
| 267 | 
            +
            				"name": "STATUS: contentful.rb",
         | 
| 268 | 
            +
            				"read_only": true,
         | 
| 269 | 
            +
            				"scratch": true
         | 
| 270 | 
            +
            			}
         | 
| 271 | 
            +
            		},
         | 
| 272 | 
            +
            		{
         | 
| 273 | 
            +
            			"file": "lib/contentful/resource_builder.rb",
         | 
| 274 | 
            +
            			"settings":
         | 
| 275 | 
            +
            			{
         | 
| 276 | 
            +
            				"buffer_size": 5326,
         | 
| 277 | 
            +
            				"line_ending": "Unix"
         | 
| 278 | 
            +
            			}
         | 
| 279 | 
            +
            		},
         | 
| 280 | 
            +
            		{
         | 
| 281 | 
            +
            			"file": "lib/contentful/support.rb",
         | 
| 282 | 
            +
            			"settings":
         | 
| 283 | 
            +
            			{
         | 
| 284 | 
            +
            				"buffer_size": 2258,
         | 
| 285 | 
            +
            				"line_ending": "Unix"
         | 
| 286 | 
            +
            			}
         | 
| 287 | 
            +
            		},
         | 
| 288 | 
            +
            		{
         | 
| 289 | 
            +
            			"contents": "\n\n## To make a commit, type your commit message and press CTRL-ENTER.\n## To cancel the commit, close the window. To sign off on the commit,\n## press CTRL-S.\n##\n## You may also reference or close a GitHub issue with this commit.\n## To do so, type `#` followed by the `tab` key.  You will be shown a\n## list of issues related to the current repo.  You may also type\n## `owner/repo#` plus the `tab` key to reference an issue in a\n## different GitHub repo.\n\nNothing to commit.\n",
         | 
| 290 | 
            +
            			"settings":
         | 
| 291 | 
            +
            			{
         | 
| 292 | 
            +
            				"buffer_size": 473,
         | 
| 293 | 
            +
            				"line_ending": "Unix",
         | 
| 294 | 
            +
            				"name": "COMMIT: contentful.rb",
         | 
| 295 | 
            +
            				"scratch": true
         | 
| 296 | 
            +
            			}
         | 
| 297 | 
            +
            		},
         | 
| 298 | 
            +
            		{
         | 
| 299 | 
            +
            			"file": "spec/fixtures/vcr_cassettes/entries/issue_225_broken.yml",
         | 
| 300 | 
            +
            			"settings":
         | 
| 301 | 
            +
            			{
         | 
| 302 | 
            +
            				"buffer_size": 129457,
         | 
| 303 | 
            +
            				"encoding": "UTF-8",
         | 
| 304 | 
            +
            				"line_ending": "Unix"
         | 
| 305 | 
            +
            			}
         | 
| 306 | 
            +
            		}
         | 
| 307 | 
            +
            	],
         | 
| 308 | 
            +
            	"build_system": "",
         | 
| 309 | 
            +
            	"build_system_choices":
         | 
| 310 | 
            +
            	[
         | 
| 311 | 
            +
            	],
         | 
| 312 | 
            +
            	"build_varint": "",
         | 
| 313 | 
            +
            	"command_palette":
         | 
| 314 | 
            +
            	{
         | 
| 315 | 
            +
            		"height": 0.0,
         | 
| 316 | 
            +
            		"last_filter": "",
         | 
| 317 | 
            +
            		"selected_items":
         | 
| 318 | 
            +
            		[
         | 
| 319 | 
            +
            			[
         | 
| 320 | 
            +
            				"git checko",
         | 
| 321 | 
            +
            				"git: checkout current file at commit"
         | 
| 322 | 
            +
            			],
         | 
| 323 | 
            +
            			[
         | 
| 324 | 
            +
            				"git stat",
         | 
| 325 | 
            +
            				"git: status"
         | 
| 326 | 
            +
            			],
         | 
| 327 | 
            +
            			[
         | 
| 328 | 
            +
            				"git s",
         | 
| 329 | 
            +
            				"git: status"
         | 
| 330 | 
            +
            			],
         | 
| 331 | 
            +
            			[
         | 
| 332 | 
            +
            				"git push",
         | 
| 333 | 
            +
            				"git: push (force)"
         | 
| 334 | 
            +
            			],
         | 
| 335 | 
            +
            			[
         | 
| 336 | 
            +
            				"git status",
         | 
| 337 | 
            +
            				"git: status"
         | 
| 338 | 
            +
            			],
         | 
| 339 | 
            +
            			[
         | 
| 340 | 
            +
            				"git push for",
         | 
| 341 | 
            +
            				"git: push (force)"
         | 
| 342 | 
            +
            			],
         | 
| 343 | 
            +
            			[
         | 
| 344 | 
            +
            				"git checkout",
         | 
| 345 | 
            +
            				"git: checkout new branch"
         | 
| 346 | 
            +
            			],
         | 
| 347 | 
            +
            			[
         | 
| 348 | 
            +
            				"git branch",
         | 
| 349 | 
            +
            				"git: branch"
         | 
| 350 | 
            +
            			],
         | 
| 351 | 
            +
            			[
         | 
| 352 | 
            +
            				"git checkout ",
         | 
| 353 | 
            +
            				"git: checkout"
         | 
| 354 | 
            +
            			],
         | 
| 355 | 
            +
            			[
         | 
| 356 | 
            +
            				"openc ",
         | 
| 357 | 
            +
            				"RSpec: open corresponding file"
         | 
| 358 | 
            +
            			],
         | 
| 359 | 
            +
            			[
         | 
| 360 | 
            +
            				"json ",
         | 
| 361 | 
            +
            				"Pretty JSON: Format (Pretty Print) JSON"
         | 
| 362 | 
            +
            			],
         | 
| 363 | 
            +
            			[
         | 
| 364 | 
            +
            				"yaml",
         | 
| 365 | 
            +
            				"Set Syntax: YAML"
         | 
| 366 | 
            +
            			],
         | 
| 367 | 
            +
            			[
         | 
| 368 | 
            +
            				"json",
         | 
| 369 | 
            +
            				"Set Syntax: JSON"
         | 
| 370 | 
            +
            			],
         | 
| 371 | 
            +
            			[
         | 
| 372 | 
            +
            				"move",
         | 
| 373 | 
            +
            				"File: Move"
         | 
| 374 | 
            +
            			],
         | 
| 375 | 
            +
            			[
         | 
| 376 | 
            +
            				"lsp restart",
         | 
| 377 | 
            +
            				"LSP: Restart Servers"
         | 
| 378 | 
            +
            			],
         | 
| 379 | 
            +
            			[
         | 
| 380 | 
            +
            				"checkout new",
         | 
| 381 | 
            +
            				"git: checkout new branch"
         | 
| 382 | 
            +
            			],
         | 
| 383 | 
            +
            			[
         | 
| 384 | 
            +
            				"git sta",
         | 
| 385 | 
            +
            				"git: status"
         | 
| 386 | 
            +
            			],
         | 
| 387 | 
            +
            			[
         | 
| 388 | 
            +
            				"new relative",
         | 
| 389 | 
            +
            				"File: New File Relative to Current View"
         | 
| 390 | 
            +
            			],
         | 
| 391 | 
            +
            			[
         | 
| 392 | 
            +
            				"relati",
         | 
| 393 | 
            +
            				"File: Copy Relative Path To Project"
         | 
| 394 | 
            +
            			],
         | 
| 395 | 
            +
            			[
         | 
| 396 | 
            +
            				"git stata",
         | 
| 397 | 
            +
            				"git: stash save staged changes only"
         | 
| 398 | 
            +
            			],
         | 
| 399 | 
            +
            			[
         | 
| 400 | 
            +
            				"git pull",
         | 
| 401 | 
            +
            				"git: pull"
         | 
| 402 | 
            +
            			],
         | 
| 403 | 
            +
            			[
         | 
| 404 | 
            +
            				"new file",
         | 
| 405 | 
            +
            				"File: New File Relative to Current View"
         | 
| 406 | 
            +
            			],
         | 
| 407 | 
            +
            			[
         | 
| 408 | 
            +
            				"new",
         | 
| 409 | 
            +
            				"Snippet: New Block"
         | 
| 410 | 
            +
            			],
         | 
| 411 | 
            +
            			[
         | 
| 412 | 
            +
            				"relative",
         | 
| 413 | 
            +
            				"File: Copy Relative Path To Project"
         | 
| 414 | 
            +
            			],
         | 
| 415 | 
            +
            			[
         | 
| 416 | 
            +
            				"ruby",
         | 
| 417 | 
            +
            				"Set Syntax: Ruby"
         | 
| 418 | 
            +
            			],
         | 
| 419 | 
            +
            			[
         | 
| 420 | 
            +
            				"lsp ",
         | 
| 421 | 
            +
            				"LSP: Toggle Log Panel"
         | 
| 422 | 
            +
            			],
         | 
| 423 | 
            +
            			[
         | 
| 424 | 
            +
            				"git checkotu ",
         | 
| 425 | 
            +
            				"git: checkout"
         | 
| 426 | 
            +
            			],
         | 
| 427 | 
            +
            			[
         | 
| 428 | 
            +
            				"lsp ena",
         | 
| 429 | 
            +
            				"LSP: Enable Language Server in Project"
         | 
| 430 | 
            +
            			],
         | 
| 431 | 
            +
            			[
         | 
| 432 | 
            +
            				"restart",
         | 
| 433 | 
            +
            				"LSP: Restart Servers"
         | 
| 434 | 
            +
            			],
         | 
| 435 | 
            +
            			[
         | 
| 436 | 
            +
            				"lsp",
         | 
| 437 | 
            +
            				"LSP: Toggle Log Panel"
         | 
| 438 | 
            +
            			],
         | 
| 439 | 
            +
            			[
         | 
| 440 | 
            +
            				"toglg",
         | 
| 441 | 
            +
            				"LSP: Toggle Diagnostics Panel"
         | 
| 442 | 
            +
            			],
         | 
| 443 | 
            +
            			[
         | 
| 444 | 
            +
            				"start",
         | 
| 445 | 
            +
            				"LSP: Restart Servers"
         | 
| 446 | 
            +
            			],
         | 
| 447 | 
            +
            			[
         | 
| 448 | 
            +
            				"enable",
         | 
| 449 | 
            +
            				"LSP: Enable Language Server in Project"
         | 
| 450 | 
            +
            			],
         | 
| 451 | 
            +
            			[
         | 
| 452 | 
            +
            				"lsp en",
         | 
| 453 | 
            +
            				"LSP: Enable Language Server in Project"
         | 
| 454 | 
            +
            			],
         | 
| 455 | 
            +
            			[
         | 
| 456 | 
            +
            				"install",
         | 
| 457 | 
            +
            				"Package Control: Install Package"
         | 
| 458 | 
            +
            			],
         | 
| 459 | 
            +
            			[
         | 
| 460 | 
            +
            				"open spec",
         | 
| 461 | 
            +
            				"RSpec: open corresponding file"
         | 
| 462 | 
            +
            			],
         | 
| 463 | 
            +
            			[
         | 
| 464 | 
            +
            				"git fetch",
         | 
| 465 | 
            +
            				"git: fetch"
         | 
| 466 | 
            +
            			],
         | 
| 467 | 
            +
            			[
         | 
| 468 | 
            +
            				"git bra",
         | 
| 469 | 
            +
            				"git: branch"
         | 
| 470 | 
            +
            			],
         | 
| 471 | 
            +
            			[
         | 
| 472 | 
            +
            				"open file in ",
         | 
| 473 | 
            +
            				"github: open file on remote"
         | 
| 474 | 
            +
            			],
         | 
| 475 | 
            +
            			[
         | 
| 476 | 
            +
            				"copy",
         | 
| 477 | 
            +
            				"File: Copy URL"
         | 
| 478 | 
            +
            			],
         | 
| 479 | 
            +
            			[
         | 
| 480 | 
            +
            				"open",
         | 
| 481 | 
            +
            				"RSpec: open corresponding file"
         | 
| 482 | 
            +
            			],
         | 
| 483 | 
            +
            			[
         | 
| 484 | 
            +
            				"git stst",
         | 
| 485 | 
            +
            				"git: stash save staged changes only"
         | 
| 486 | 
            +
            			],
         | 
| 487 | 
            +
            			[
         | 
| 488 | 
            +
            				"syntax c",
         | 
| 489 | 
            +
            				"Set Syntax: C"
         | 
| 490 | 
            +
            			],
         | 
| 491 | 
            +
            			[
         | 
| 492 | 
            +
            				"git stats",
         | 
| 493 | 
            +
            				"git: status"
         | 
| 494 | 
            +
            			],
         | 
| 495 | 
            +
            			[
         | 
| 496 | 
            +
            				"git diff",
         | 
| 497 | 
            +
            				"git: diff"
         | 
| 498 | 
            +
            			],
         | 
| 499 | 
            +
            			[
         | 
| 500 | 
            +
            				"rela",
         | 
| 501 | 
            +
            				"File: New File Relative to Current View"
         | 
| 502 | 
            +
            			],
         | 
| 503 | 
            +
            			[
         | 
| 504 | 
            +
            				"open co",
         | 
| 505 | 
            +
            				"RSpec: open corresponding file"
         | 
| 506 | 
            +
            			],
         | 
| 507 | 
            +
            			[
         | 
| 508 | 
            +
            				"git stat ",
         | 
| 509 | 
            +
            				"git: status"
         | 
| 510 | 
            +
            			],
         | 
| 511 | 
            +
            			[
         | 
| 512 | 
            +
            				"git st",
         | 
| 513 | 
            +
            				"git: status"
         | 
| 514 | 
            +
            			],
         | 
| 515 | 
            +
            			[
         | 
| 516 | 
            +
            				"git che",
         | 
| 517 | 
            +
            				"git: checkout"
         | 
| 518 | 
            +
            			],
         | 
| 519 | 
            +
            			[
         | 
| 520 | 
            +
            				"copy rel",
         | 
| 521 | 
            +
            				"File: Copy Relative Path To Project"
         | 
| 522 | 
            +
            			],
         | 
| 523 | 
            +
            			[
         | 
| 524 | 
            +
            				"copy relative",
         | 
| 525 | 
            +
            				"File: Copy Relative Path To Project"
         | 
| 526 | 
            +
            			],
         | 
| 527 | 
            +
            			[
         | 
| 528 | 
            +
            				"git chekc",
         | 
| 529 | 
            +
            				"git: checkout"
         | 
| 530 | 
            +
            			],
         | 
| 531 | 
            +
            			[
         | 
| 532 | 
            +
            				"git statu",
         | 
| 533 | 
            +
            				"git: status"
         | 
| 534 | 
            +
            			],
         | 
| 535 | 
            +
            			[
         | 
| 536 | 
            +
            				"git blame",
         | 
| 537 | 
            +
            				"git: blame current file"
         | 
| 538 | 
            +
            			],
         | 
| 539 | 
            +
            			[
         | 
| 540 | 
            +
            				"rename",
         | 
| 541 | 
            +
            				"Rename File"
         | 
| 542 | 
            +
            			],
         | 
| 543 | 
            +
            			[
         | 
| 544 | 
            +
            				"open corre",
         | 
| 545 | 
            +
            				"RSpec: open corresponding file"
         | 
| 546 | 
            +
            			],
         | 
| 547 | 
            +
            			[
         | 
| 548 | 
            +
            				"open ",
         | 
| 549 | 
            +
            				"github: open repo"
         | 
| 550 | 
            +
            			],
         | 
| 551 | 
            +
            			[
         | 
| 552 | 
            +
            				"floobits",
         | 
| 553 | 
            +
            				"Floobits - Join Workspace"
         | 
| 554 | 
            +
            			],
         | 
| 555 | 
            +
            			[
         | 
| 556 | 
            +
            				"floo",
         | 
| 557 | 
            +
            				"Floobits - Join Workspace"
         | 
| 558 | 
            +
            			],
         | 
| 559 | 
            +
            			[
         | 
| 560 | 
            +
            				"floobi",
         | 
| 561 | 
            +
            				"Floobits - Join Workspace"
         | 
| 562 | 
            +
            			],
         | 
| 563 | 
            +
            			[
         | 
| 564 | 
            +
            				"git chekco",
         | 
| 565 | 
            +
            				"git: checkout"
         | 
| 566 | 
            +
            			],
         | 
| 567 | 
            +
            			[
         | 
| 568 | 
            +
            				"git stash",
         | 
| 569 | 
            +
            				"git: stash save including untracked files"
         | 
| 570 | 
            +
            			],
         | 
| 571 | 
            +
            			[
         | 
| 572 | 
            +
            				"git rbease",
         | 
| 573 | 
            +
            				"git: rebase"
         | 
| 574 | 
            +
            			],
         | 
| 575 | 
            +
            			[
         | 
| 576 | 
            +
            				"git chekcout ",
         | 
| 577 | 
            +
            				"git: checkout"
         | 
| 578 | 
            +
            			],
         | 
| 579 | 
            +
            			[
         | 
| 580 | 
            +
            				"git stas",
         | 
| 581 | 
            +
            				"git: stash show"
         | 
| 582 | 
            +
            			],
         | 
| 583 | 
            +
            			[
         | 
| 584 | 
            +
            				"checkou",
         | 
| 585 | 
            +
            				"git: checkout current file at commit"
         | 
| 586 | 
            +
            			],
         | 
| 587 | 
            +
            			[
         | 
| 588 | 
            +
            				"git brnah",
         | 
| 589 | 
            +
            				"git: branch"
         | 
| 590 | 
            +
            			],
         | 
| 591 | 
            +
            			[
         | 
| 592 | 
            +
            				"git chec",
         | 
| 593 | 
            +
            				"git: checkout new branch"
         | 
| 594 | 
            +
            			],
         | 
| 595 | 
            +
            			[
         | 
| 596 | 
            +
            				"git chekoc",
         | 
| 597 | 
            +
            				"git: checkout current file at commit"
         | 
| 598 | 
            +
            			],
         | 
| 599 | 
            +
            			[
         | 
| 600 | 
            +
            				"git ",
         | 
| 601 | 
            +
            				"git: tag"
         | 
| 602 | 
            +
            			],
         | 
| 603 | 
            +
            			[
         | 
| 604 | 
            +
            				"delete",
         | 
| 605 | 
            +
            				"File: Delete"
         | 
| 606 | 
            +
            			],
         | 
| 607 | 
            +
            			[
         | 
| 608 | 
            +
            				"openc",
         | 
| 609 | 
            +
            				"RSpec: open corresponding file"
         | 
| 610 | 
            +
            			],
         | 
| 611 | 
            +
            			[
         | 
| 612 | 
            +
            				"gitstat",
         | 
| 613 | 
            +
            				"git: status"
         | 
| 614 | 
            +
            			],
         | 
| 615 | 
            +
            			[
         | 
| 616 | 
            +
            				"linter setting ",
         | 
| 617 | 
            +
            				"Preferences: SublimeLinter Settings"
         | 
| 618 | 
            +
            			],
         | 
| 619 | 
            +
            			[
         | 
| 620 | 
            +
            				"setting",
         | 
| 621 | 
            +
            				"Preferences: SublimeLinter Settings"
         | 
| 622 | 
            +
            			],
         | 
| 623 | 
            +
            			[
         | 
| 624 | 
            +
            				"remove a",
         | 
| 625 | 
            +
            				"Package Control: Remove Package"
         | 
| 626 | 
            +
            			],
         | 
| 627 | 
            +
            			[
         | 
| 628 | 
            +
            				"linter",
         | 
| 629 | 
            +
            				"Preferences: SublimeLinter Settings"
         | 
| 630 | 
            +
            			],
         | 
| 631 | 
            +
            			[
         | 
| 632 | 
            +
            				"install ",
         | 
| 633 | 
            +
            				"Package Control: Install Package"
         | 
| 634 | 
            +
            			],
         | 
| 635 | 
            +
            			[
         | 
| 636 | 
            +
            				"insta",
         | 
| 637 | 
            +
            				"Package Control: Install Package"
         | 
| 638 | 
            +
            			],
         | 
| 639 | 
            +
            			[
         | 
| 640 | 
            +
            				"git status ",
         | 
| 641 | 
            +
            				"git: status"
         | 
| 642 | 
            +
            			],
         | 
| 643 | 
            +
            			[
         | 
| 644 | 
            +
            				"git branc",
         | 
| 645 | 
            +
            				"git: branch"
         | 
| 646 | 
            +
            			],
         | 
| 647 | 
            +
            			[
         | 
| 648 | 
            +
            				"view side",
         | 
| 649 | 
            +
            				"View: Toggle Side Bar"
         | 
| 650 | 
            +
            			]
         | 
| 651 | 
            +
            		],
         | 
| 652 | 
            +
            		"width": 0.0
         | 
| 653 | 
            +
            	},
         | 
| 654 | 
            +
            	"console":
         | 
| 655 | 
            +
            	{
         | 
| 656 | 
            +
            		"height": 625.0,
         | 
| 657 | 
            +
            		"history":
         | 
| 658 | 
            +
            		[
         | 
| 659 | 
            +
            			"os.getenv(\"PATH\")",
         | 
| 660 | 
            +
            			"import os",
         | 
| 661 | 
            +
            			"os.getenv(\"PATH\")",
         | 
| 662 | 
            +
            			"path.env()",
         | 
| 663 | 
            +
            			"path()",
         | 
| 664 | 
            +
            			"path",
         | 
| 665 | 
            +
            			"from os import path;",
         | 
| 666 | 
            +
            			"from os import env",
         | 
| 667 | 
            +
            			"os.path",
         | 
| 668 | 
            +
            			"os.Path"
         | 
| 669 | 
            +
            		]
         | 
| 670 | 
            +
            	},
         | 
| 671 | 
            +
            	"distraction_free":
         | 
| 672 | 
            +
            	{
         | 
| 673 | 
            +
            		"menu_visible": true,
         | 
| 674 | 
            +
            		"show_minimap": false,
         | 
| 675 | 
            +
            		"show_open_files": false,
         | 
| 676 | 
            +
            		"show_tabs": false,
         | 
| 677 | 
            +
            		"side_bar_visible": false,
         | 
| 678 | 
            +
            		"status_bar_visible": false
         | 
| 679 | 
            +
            	},
         | 
| 680 | 
            +
            	"expanded_folders":
         | 
| 681 | 
            +
            	[
         | 
| 682 | 
            +
            		"/home/florian/code/contentful.rb",
         | 
| 683 | 
            +
            		"/home/florian/code/contentful.rb/lib",
         | 
| 684 | 
            +
            		"/home/florian/code/contentful.rb/lib/contentful",
         | 
| 685 | 
            +
            		"/home/florian/code/contentful.rb/spec",
         | 
| 686 | 
            +
            		"/home/florian/code/contentful.rb/spec/fixtures"
         | 
| 687 | 
            +
            	],
         | 
| 688 | 
            +
            	"file_history":
         | 
| 689 | 
            +
            	[
         | 
| 690 | 
            +
            		"/home/florian/code/contentful.rb/spec/fixtures/vcr_cassettes/entries/issue_225.yml",
         | 
| 691 | 
            +
            		"/home/florian/code/contentful.rb/spec/support/client.rb",
         | 
| 692 | 
            +
            		"/home/florian/code/contentful.rb/lib/contentful/support.rb",
         | 
| 693 | 
            +
            		"/home/florian/code/contentful.rb/contentful.rb.sublime-project",
         | 
| 694 | 
            +
            		"/home/florian/code/contentful.rb/lib/contentful/asset.rb",
         | 
| 695 | 
            +
            		"/home/florian/code/contentful.rb/lib/contentful/base_resource.rb",
         | 
| 696 | 
            +
            		"/home/florian/code/contentful.rb/spec/fixtures/vcr_cassettes/entries/issue_225_broken.yml",
         | 
| 697 | 
            +
            		"/home/florian/code/contentful.rb/CHANGELOG.md",
         | 
| 698 | 
            +
            		"/home/florian/code/contentful.rb/Rakefile",
         | 
| 699 | 
            +
            		"/home/florian/code/contentful.rb/contentful.gemspec",
         | 
| 700 | 
            +
            		"/home/florian/code/contentful.rb/lib/contentful/version.rb",
         | 
| 701 | 
            +
            		"/home/florian/code/contentful.rb/README.md",
         | 
| 702 | 
            +
            		"/home/florian/code/contentful.rb/spec/entry_spec.rb",
         | 
| 703 | 
            +
            		"/home/florian/code/contentful.rb/spec/fixtures/vcr_cassettes/entries/issue_225_broken_yml.yml",
         | 
| 704 | 
            +
            		"/home/florian/code/contentful.rb/spec/fixtures/json_responses/issue_225_broken_winner.json",
         | 
| 705 | 
            +
            		"/home/florian/code/contentful.rb/spec/fixtures/json_responses/issue_225_winner.json",
         | 
| 706 | 
            +
            		"/home/florian/code/contentful.rb/lib/contentful/resource_builder.rb",
         | 
| 707 | 
            +
            		"/home/florian/Documents/reactive_architecture.md",
         | 
| 708 | 
            +
            		"/home/florian/code/gatekeeper/app/models/organization.rb",
         | 
| 709 | 
            +
            		"/home/florian/code/gatekeeper/lib/tasks/organization_migrations.rb",
         | 
| 710 | 
            +
            		"/home/florian/code/gatekeeper/lib/contentful/varnish/purger.rb",
         | 
| 711 | 
            +
            		"/home/florian/code/gatekeeper/lib/tasks/organizations.rake",
         | 
| 712 | 
            +
            		"/home/florian/code/gatekeeper/db/migrate/20200414154446_add_cookie_consent_data_to_users.rb",
         | 
| 713 | 
            +
            		"/home/florian/code/gatekeeper/app/models/concerns/contentful/purge_varnish.rb",
         | 
| 714 | 
            +
            		"/home/florian/code/gatekeeper/app/models/rate_limit_upsert.rb",
         | 
| 715 | 
            +
            		"/home/florian/code/gatekeeper/app/models/space.rb",
         | 
| 716 | 
            +
            		"/home/florian/code/gatekeeper/app/models/concerns/contentful/usage_calculation.rb",
         | 
| 717 | 
            +
            		"/home/florian/code/gatekeeper/app/models/concerns/contentful/rabbit_mq/publishable.rb",
         | 
| 718 | 
            +
            		"/home/florian/code/gatekeeper/app/models/concerns/contentful/tracking.rb",
         | 
| 719 | 
            +
            		"/home/florian/code/gatekeeper/app/models/concerns/contentful/key.rb",
         | 
| 720 | 
            +
            		"/home/florian/code/gatekeeper/app/models/concerns/stream_activity/enrichable.rb",
         | 
| 721 | 
            +
            		"/home/florian/code/gatekeeper/app/models/concerns/contentful/billing.rb",
         | 
| 722 | 
            +
            		"/home/florian/code/gatekeeper/app/models/admin_user.rb",
         | 
| 723 | 
            +
            		"/home/florian/code/gatekeeper/Gemfile",
         | 
| 724 | 
            +
            		"/home/florian/notes.rb",
         | 
| 725 | 
            +
            		"/home/florian/code/gatekeeper/lib/contentful/string_sanitizer.rb",
         | 
| 726 | 
            +
            		"/home/florian/code/gatekeeper/app/assets/stylesheets/modules/index.scss",
         | 
| 727 | 
            +
            		"/home/florian/code/gatekeeper/app/models/product_catalog/feature_enablement.rb",
         | 
| 728 | 
            +
            		"/home/florian/code/gatekeeper/app/services/internal_service/create_notification_message.rb",
         | 
| 729 | 
            +
            		"/home/florian/code/gatekeeper/db/schema.rb",
         | 
| 730 | 
            +
            		"/home/florian/code/gatekeeper/app/controllers/concerns/requires_product_catalog_feature.rb",
         | 
| 731 | 
            +
            		"/home/florian/code/gatekeeper/app/services/product_catalog/check_feature_enablement.rb",
         | 
| 732 | 
            +
            		"/home/florian/code/gatekeeper/app/services/product_catalog/feature_checkers/organization_scoped/scim.rb",
         | 
| 733 | 
            +
            		"/home/florian/code/gatekeeper/app/use_cases/organization_invitation/create_organization_invitation.rb",
         | 
| 734 | 
            +
            		"/home/florian/code/gatekeeper/app/controllers/api/v1/base_controller.rb",
         | 
| 735 | 
            +
            		"/home/florian/code/gatekeeper/app/services/product_catalog/feature_checkers/organization_scoped/user_management_api.rb",
         | 
| 736 | 
            +
            		"/home/florian/code/gatekeeper/config/routes/api.rb",
         | 
| 737 | 
            +
            		"/home/florian/code/gatekeeper/app/controllers/api/v1/organizations/space_memberships_controller.rb",
         | 
| 738 | 
            +
            		"/home/florian/code/gatekeeper/app/controllers/concerns/has_include.rb",
         | 
| 739 | 
            +
            		"/home/florian/code/gatekeeper/lib/contentful.rb",
         | 
| 740 | 
            +
            		"/home/florian/code/gatekeeper/config/environments/acceptance/config.json",
         | 
| 741 | 
            +
            		"/home/florian/code/gatekeeper/app/controllers/api/v1/spaces/users_controller.rb",
         | 
| 742 | 
            +
            		"/home/florian/code/gatekeeper/spec/support/matchers/string.rb",
         | 
| 743 | 
            +
            		"/home/florian/code/gatekeeper/app/models/user.rb",
         | 
| 744 | 
            +
            		"/home/florian/code/gatekeeper/app/controllers/api/v1/spaces_controller.rb",
         | 
| 745 | 
            +
            		"/home/florian/code/gatekeeper/app/admin/spaces.rb",
         | 
| 746 | 
            +
            		"/home/florian/code/gatekeeper/lib/contentful/admin/spaces.rb",
         | 
| 747 | 
            +
            		"/home/florian/code/gatekeeper/lib/contentful/space_subscription_properties.rb",
         | 
| 748 | 
            +
            		"/home/florian/code/gatekeeper/app/admin/space_plans.rb",
         | 
| 749 | 
            +
            		"/home/florian/code/gatekeeper/app/use_cases/update_space_assignment_for_rate_plan.rb",
         | 
| 750 | 
            +
            		"/home/florian/code/gatekeeper/lib/contentful/admin/rate_plans.rb",
         | 
| 751 | 
            +
            		"/home/florian/code/gatekeeper/config/routes.rb",
         | 
| 752 | 
            +
            		"/home/florian/code/gatekeeper/config/routes/internal_system.rb",
         | 
| 753 | 
            +
            		"/home/florian/code/gatekeeper/app/services/encryption_service.rb",
         | 
| 754 | 
            +
            		"/home/florian/code/gatekeeper/config/spring.rb",
         | 
| 755 | 
            +
            		"/home/florian/code/gatekeeper/gatekeeper.sublime-project",
         | 
| 756 | 
            +
            		"/home/florian/code/gatekeeper/app/services/product_catalog/feature_checkers/space_scoped/custom_roles.rb",
         | 
| 757 | 
            +
            		"/home/florian/code/gatekeeper/spec/services/product_catalog/feature_checkers/space_scoped/custom_roles_spec.rb",
         | 
| 758 | 
            +
            		"/home/florian/code/gatekeeper/lib/contentful/segment.rb",
         | 
| 759 | 
            +
            		"/home/florian/code/gatekeeper/spec/lib/contentful/segment_spec.rb",
         | 
| 760 | 
            +
            		"/home/florian/code/gatekeeper/app/models/product_catalog/feature.rb",
         | 
| 761 | 
            +
            		"/home/florian/code/gatekeeper/db/seeds.rb",
         | 
| 762 | 
            +
            		"/home/florian/code/gatekeeper/app/services/internal_service/create_notification.rb",
         | 
| 763 | 
            +
            		"/home/florian/code/gatekeeper/app/models/subby/resources/plan.rb",
         | 
| 764 | 
            +
            		"/home/florian/code/gatekeeper/app/services/internal_service/create_organization_invite_message.rb",
         | 
| 765 | 
            +
            		"/home/florian/code/gatekeeper/app/use_cases/organization_invitation/accept_organization_invitation.rb",
         | 
| 766 | 
            +
            		"/home/florian/key.pub",
         | 
| 767 | 
            +
            		"/home/florian/2key.pub",
         | 
| 768 | 
            +
            		"/home/florian/code/gatekeeper/app/services/ensure_correct_infrastructure.rb",
         | 
| 769 | 
            +
            		"/home/florian/code/gatekeeper/app/models/admin.rb",
         | 
| 770 | 
            +
            		"/home/florian/code/c/hello.c",
         | 
| 771 | 
            +
            		"/home/florian/code/gatekeeper/app/models/subby/resources/subscription.rb",
         | 
| 772 | 
            +
            		"/home/florian/code/gatekeeper/spec/requests/api/v1/spaces/delete_spec.rb",
         | 
| 773 | 
            +
            		"/home/florian/code/gatekeeper/spec/services/space_management/create_space_spec.rb",
         | 
| 774 | 
            +
            		"/home/florian/code/gatekeeper/spec/lib/contentful/space_subscription_properties_spec.rb",
         | 
| 775 | 
            +
            		"/home/florian/code/gatekeeper/spec/lib/contentful/admin/rate_plans_spec.rb",
         | 
| 776 | 
            +
            		"/home/florian/code/gatekeeper/spec/lib/contentful/admin/spaces_spec.rb",
         | 
| 777 | 
            +
            		"/home/florian/code/gatekeeper/spec/use_cases/update_space_assignment_for_rate_plan_spec.rb",
         | 
| 778 | 
            +
            		"/home/florian/code/gatekeeper/app/use_cases/create_rate_plan.rb",
         | 
| 779 | 
            +
            		"/home/florian/code/gatekeeper/app/services/subby/subscription/create.rb",
         | 
| 780 | 
            +
            		"/home/florian/code/gatekeeper/spec/services/subby/subscription/create_spec.rb",
         | 
| 781 | 
            +
            		"/home/florian/code/gatekeeper/spec/use_cases/create_rate_plan_spec.rb",
         | 
| 782 | 
            +
            		"/home/florian/code/gatekeeper/app/services/subscription_management/update_space_rate_plan.rb",
         | 
| 783 | 
            +
            		"/home/florian/code/gatekeeper/spec/support/matchers.rb",
         | 
| 784 | 
            +
            		"/home/florian/code/gatekeeper/app/models/subby/resources/product_rate_plan.rb",
         | 
| 785 | 
            +
            		"/home/florian/code/gatekeeper/app/models/subby/resources/product.rb",
         | 
| 786 | 
            +
            		"/home/florian/code/gatekeeper/app/services/subscription_management/free_plan_change_service.rb",
         | 
| 787 | 
            +
            		"/home/florian/code/gatekeeper/app/services/subby/product/fetch_free_rate_plan.rb",
         | 
| 788 | 
            +
            		"/home/florian/code/gatekeeper/app/services/subscription_management/update_from_zuora.rb",
         | 
| 789 | 
            +
            		"/home/florian/code/gatekeeper/app/services/subby/update.rb",
         | 
| 790 | 
            +
            		"/home/florian/code/gatekeeper/app/services/product_catalog/feature_checkers/space_scoped/graphql.rb",
         | 
| 791 | 
            +
            		"/home/florian/code/gatekeeper/app/models/subscription.rb",
         | 
| 792 | 
            +
            		"/home/florian/code/gatekeeper/app/services/subby/subscription/fetch.rb",
         | 
| 793 | 
            +
            		"/home/florian/code/gatekeeper/app/services/subby/subscription/find_active_subscription.rb",
         | 
| 794 | 
            +
            		"/home/florian/code/gatekeeper/app/use_cases/use_case.rb",
         | 
| 795 | 
            +
            		"/home/florian/code/gatekeeper/config/initializers/segment_analytics_ruby.rb",
         | 
| 796 | 
            +
            		"/home/florian/code/gatekeeper/spec/spec_helper.rb",
         | 
| 797 | 
            +
            		"/home/florian/code/gatekeeper/config/initializers/01_logging.rb",
         | 
| 798 | 
            +
            		"/home/florian/code/gatekeeper/app/admin/state_machine_state_logs.rb",
         | 
| 799 | 
            +
            		"/home/florian/code/gatekeeper/README.md",
         | 
| 800 | 
            +
            		"/home/florian/code/gatekeeper/lib/contentful/admin.rb",
         | 
| 801 | 
            +
            		"/home/florian/code/gatekeeper/spec/lib/contentful/admin_spec.rb",
         | 
| 802 | 
            +
            		"/home/florian/code/gatekeeper/spec/support/helpers.rb",
         | 
| 803 | 
            +
            		"/home/florian/code/gatekeeper/app/services/space_management/create_space.rb",
         | 
| 804 | 
            +
            		"/home/florian/code/gatekeeper/app/models/concerns/contentful/features_and_limits.rb",
         | 
| 805 | 
            +
            		"/home/florian/code/gatekeeper/lib/contentful/space_subscription_props.rb",
         | 
| 806 | 
            +
            		"/home/florian/code/gatekeeper/spec/lib/contentful/space_subscription_props.rb",
         | 
| 807 | 
            +
            		"/home/florian/floobits/welcome.md",
         | 
| 808 | 
            +
            		"/home/florian/code/gatekeeper/app/services/subby/product/fetch.rb",
         | 
| 809 | 
            +
            		"/home/florian/code/gatekeeper/spec/lib/contentful/spaces_spec.rb",
         | 
| 810 | 
            +
            		"/home/florian/code/gatekeeper/lib/contentful/spaces.rb",
         | 
| 811 | 
            +
            		"/home/florian/code/gatekeeper/app/services/subby/subscription/initialize.rb",
         | 
| 812 | 
            +
            		"/home/florian/code/gatekeeper/spec/factories/organizations.rb",
         | 
| 813 | 
            +
            		"/home/florian/code/gatekeeper/spec/factories/subscriptions.rb",
         | 
| 814 | 
            +
            		"/home/florian/code/gatekeeper/lib/trashable/core.rb",
         | 
| 815 | 
            +
            		"/home/florian/code/gatekeeper/app/services/space_management/delete_environment.rb",
         | 
| 816 | 
            +
            		"/home/florian/code/gatekeeper/app/models/space_membership.rb",
         | 
| 817 | 
            +
            		"/home/florian/code/gatekeeper/app/policies/application_policy.rb"
         | 
| 818 | 
            +
            	],
         | 
| 819 | 
            +
            	"find":
         | 
| 820 | 
            +
            	{
         | 
| 821 | 
            +
            		"height": 66.0
         | 
| 822 | 
            +
            	},
         | 
| 823 | 
            +
            	"find_in_files":
         | 
| 824 | 
            +
            	{
         | 
| 825 | 
            +
            		"height": 170.0,
         | 
| 826 | 
            +
            		"where_history":
         | 
| 827 | 
            +
            		[
         | 
| 828 | 
            +
            			"*.rb",
         | 
| 829 | 
            +
            			"",
         | 
| 830 | 
            +
            			"*_spec.rb",
         | 
| 831 | 
            +
            			"",
         | 
| 832 | 
            +
            			"*",
         | 
| 833 | 
            +
            			"*_spec.rb"
         | 
| 834 | 
            +
            		]
         | 
| 835 | 
            +
            	},
         | 
| 836 | 
            +
            	"find_state":
         | 
| 837 | 
            +
            	{
         | 
| 838 | 
            +
            		"case_sensitive": false,
         | 
| 839 | 
            +
            		"find_history":
         | 
| 840 | 
            +
            		[
         | 
| 841 | 
            +
            			"vGienFOrtIM8G8IAo2uuA",
         | 
| 842 | 
            +
            			"vGienFOrtIM8G8IAo2uuA\n",
         | 
| 843 | 
            +
            			"def create_client",
         | 
| 844 | 
            +
            			"embedded",
         | 
| 845 | 
            +
            			"rich_text",
         | 
| 846 | 
            +
            			"rich_image",
         | 
| 847 | 
            +
            			"hydra",
         | 
| 848 | 
            +
            			"5VvsVFgRSWblIs4TJmD0fP",
         | 
| 849 | 
            +
            			"rich_image",
         | 
| 850 | 
            +
            			"vGienFOrtIM8G8IAo2uuA",
         | 
| 851 | 
            +
            			"RichTextRenderer",
         | 
| 852 | 
            +
            			".proxy",
         | 
| 853 | 
            +
            			"mock(",
         | 
| 854 | 
            +
            			"stub(",
         | 
| 855 | 
            +
            			"push:contentful",
         | 
| 856 | 
            +
            			"release",
         | 
| 857 | 
            +
            			":release",
         | 
| 858 | 
            +
            			"Wed, 16 Apr 2014 09:00:21 GMT",
         | 
| 859 | 
            +
            			"ge1xHyH3QOWucKWCCAgIG",
         | 
| 860 | 
            +
            			")'",
         | 
| 861 | 
            +
            			"raw_fixture",
         | 
| 862 | 
            +
            			"reuse_entries"
         | 
| 863 | 
            +
            		],
         | 
| 864 | 
            +
            		"highlight": true,
         | 
| 865 | 
            +
            		"in_selection": false,
         | 
| 866 | 
            +
            		"preserve_case": false,
         | 
| 867 | 
            +
            		"regex": false,
         | 
| 868 | 
            +
            		"replace_history":
         | 
| 869 | 
            +
            		[
         | 
| 870 | 
            +
            		],
         | 
| 871 | 
            +
            		"reverse": false,
         | 
| 872 | 
            +
            		"show_context": true,
         | 
| 873 | 
            +
            		"use_buffer2": true,
         | 
| 874 | 
            +
            		"whole_word": false,
         | 
| 875 | 
            +
            		"wrap": true
         | 
| 876 | 
            +
            	},
         | 
| 877 | 
            +
            	"groups":
         | 
| 878 | 
            +
            	[
         | 
| 879 | 
            +
            		{
         | 
| 880 | 
            +
            			"selected": 6,
         | 
| 881 | 
            +
            			"sheets":
         | 
| 882 | 
            +
            			[
         | 
| 883 | 
            +
            				{
         | 
| 884 | 
            +
            					"buffer": 0,
         | 
| 885 | 
            +
            					"semi_transient": false,
         | 
| 886 | 
            +
            					"settings":
         | 
| 887 | 
            +
            					{
         | 
| 888 | 
            +
            						"buffer_size": 17328,
         | 
| 889 | 
            +
            						"regions":
         | 
| 890 | 
            +
            						{
         | 
| 891 | 
            +
            							"match":
         | 
| 892 | 
            +
            							{
         | 
| 893 | 
            +
            								"flags": 112,
         | 
| 894 | 
            +
            								"regions":
         | 
| 895 | 
            +
            								[
         | 
| 896 | 
            +
            									[
         | 
| 897 | 
            +
            										216,
         | 
| 898 | 
            +
            										223
         | 
| 899 | 
            +
            									],
         | 
| 900 | 
            +
            									[
         | 
| 901 | 
            +
            										365,
         | 
| 902 | 
            +
            										372
         | 
| 903 | 
            +
            									],
         | 
| 904 | 
            +
            									[
         | 
| 905 | 
            +
            										453,
         | 
| 906 | 
            +
            										460
         | 
| 907 | 
            +
            									],
         | 
| 908 | 
            +
            									[
         | 
| 909 | 
            +
            										569,
         | 
| 910 | 
            +
            										576
         | 
| 911 | 
            +
            									],
         | 
| 912 | 
            +
            									[
         | 
| 913 | 
            +
            										742,
         | 
| 914 | 
            +
            										749
         | 
| 915 | 
            +
            									],
         | 
| 916 | 
            +
            									[
         | 
| 917 | 
            +
            										1052,
         | 
| 918 | 
            +
            										1059
         | 
| 919 | 
            +
            									],
         | 
| 920 | 
            +
            									[
         | 
| 921 | 
            +
            										1323,
         | 
| 922 | 
            +
            										1330
         | 
| 923 | 
            +
            									],
         | 
| 924 | 
            +
            									[
         | 
| 925 | 
            +
            										1721,
         | 
| 926 | 
            +
            										1728
         | 
| 927 | 
            +
            									],
         | 
| 928 | 
            +
            									[
         | 
| 929 | 
            +
            										1989,
         | 
| 930 | 
            +
            										1996
         | 
| 931 | 
            +
            									],
         | 
| 932 | 
            +
            									[
         | 
| 933 | 
            +
            										2172,
         | 
| 934 | 
            +
            										2179
         | 
| 935 | 
            +
            									],
         | 
| 936 | 
            +
            									[
         | 
| 937 | 
            +
            										2184,
         | 
| 938 | 
            +
            										2191
         | 
| 939 | 
            +
            									],
         | 
| 940 | 
            +
            									[
         | 
| 941 | 
            +
            										2426,
         | 
| 942 | 
            +
            										2433
         | 
| 943 | 
            +
            									],
         | 
| 944 | 
            +
            									[
         | 
| 945 | 
            +
            										2581,
         | 
| 946 | 
            +
            										2588
         | 
| 947 | 
            +
            									],
         | 
| 948 | 
            +
            									[
         | 
| 949 | 
            +
            										2721,
         | 
| 950 | 
            +
            										2728
         | 
| 951 | 
            +
            									],
         | 
| 952 | 
            +
            									[
         | 
| 953 | 
            +
            										2976,
         | 
| 954 | 
            +
            										2983
         | 
| 955 | 
            +
            									],
         | 
| 956 | 
            +
            									[
         | 
| 957 | 
            +
            										3395,
         | 
| 958 | 
            +
            										3402
         | 
| 959 | 
            +
            									],
         | 
| 960 | 
            +
            									[
         | 
| 961 | 
            +
            										3845,
         | 
| 962 | 
            +
            										3852
         | 
| 963 | 
            +
            									],
         | 
| 964 | 
            +
            									[
         | 
| 965 | 
            +
            										4052,
         | 
| 966 | 
            +
            										4059
         | 
| 967 | 
            +
            									],
         | 
| 968 | 
            +
            									[
         | 
| 969 | 
            +
            										4365,
         | 
| 970 | 
            +
            										4372
         | 
| 971 | 
            +
            									],
         | 
| 972 | 
            +
            									[
         | 
| 973 | 
            +
            										5014,
         | 
| 974 | 
            +
            										5020
         | 
| 975 | 
            +
            									],
         | 
| 976 | 
            +
            									[
         | 
| 977 | 
            +
            										5346,
         | 
| 978 | 
            +
            										5352
         | 
| 979 | 
            +
            									],
         | 
| 980 | 
            +
            									[
         | 
| 981 | 
            +
            										5487,
         | 
| 982 | 
            +
            										5493
         | 
| 983 | 
            +
            									],
         | 
| 984 | 
            +
            									[
         | 
| 985 | 
            +
            										5565,
         | 
| 986 | 
            +
            										5571
         | 
| 987 | 
            +
            									],
         | 
| 988 | 
            +
            									[
         | 
| 989 | 
            +
            										5904,
         | 
| 990 | 
            +
            										5910
         | 
| 991 | 
            +
            									],
         | 
| 992 | 
            +
            									[
         | 
| 993 | 
            +
            										6343,
         | 
| 994 | 
            +
            										6349
         | 
| 995 | 
            +
            									],
         | 
| 996 | 
            +
            									[
         | 
| 997 | 
            +
            										6697,
         | 
| 998 | 
            +
            										6713
         | 
| 999 | 
            +
            									],
         | 
| 1000 | 
            +
            									[
         | 
| 1001 | 
            +
            										7015,
         | 
| 1002 | 
            +
            										7031
         | 
| 1003 | 
            +
            									],
         | 
| 1004 | 
            +
            									[
         | 
| 1005 | 
            +
            										7307,
         | 
| 1006 | 
            +
            										7315
         | 
| 1007 | 
            +
            									],
         | 
| 1008 | 
            +
            									[
         | 
| 1009 | 
            +
            										7581,
         | 
| 1010 | 
            +
            										7589
         | 
| 1011 | 
            +
            									],
         | 
| 1012 | 
            +
            									[
         | 
| 1013 | 
            +
            										7705,
         | 
| 1014 | 
            +
            										7713
         | 
| 1015 | 
            +
            									],
         | 
| 1016 | 
            +
            									[
         | 
| 1017 | 
            +
            										7871,
         | 
| 1018 | 
            +
            										7879
         | 
| 1019 | 
            +
            									],
         | 
| 1020 | 
            +
            									[
         | 
| 1021 | 
            +
            										7882,
         | 
| 1022 | 
            +
            										7890
         | 
| 1023 | 
            +
            									],
         | 
| 1024 | 
            +
            									[
         | 
| 1025 | 
            +
            										7975,
         | 
| 1026 | 
            +
            										7983
         | 
| 1027 | 
            +
            									],
         | 
| 1028 | 
            +
            									[
         | 
| 1029 | 
            +
            										8268,
         | 
| 1030 | 
            +
            										8276
         | 
| 1031 | 
            +
            									],
         | 
| 1032 | 
            +
            									[
         | 
| 1033 | 
            +
            										8511,
         | 
| 1034 | 
            +
            										8519
         | 
| 1035 | 
            +
            									],
         | 
| 1036 | 
            +
            									[
         | 
| 1037 | 
            +
            										8754,
         | 
| 1038 | 
            +
            										8762
         | 
| 1039 | 
            +
            									],
         | 
| 1040 | 
            +
            									[
         | 
| 1041 | 
            +
            										8997,
         | 
| 1042 | 
            +
            										9005
         | 
| 1043 | 
            +
            									],
         | 
| 1044 | 
            +
            									[
         | 
| 1045 | 
            +
            										9240,
         | 
| 1046 | 
            +
            										9248
         | 
| 1047 | 
            +
            									],
         | 
| 1048 | 
            +
            									[
         | 
| 1049 | 
            +
            										9483,
         | 
| 1050 | 
            +
            										9491
         | 
| 1051 | 
            +
            									],
         | 
| 1052 | 
            +
            									[
         | 
| 1053 | 
            +
            										9812,
         | 
| 1054 | 
            +
            										9820
         | 
| 1055 | 
            +
            									],
         | 
| 1056 | 
            +
            									[
         | 
| 1057 | 
            +
            										10055,
         | 
| 1058 | 
            +
            										10063
         | 
| 1059 | 
            +
            									],
         | 
| 1060 | 
            +
            									[
         | 
| 1061 | 
            +
            										10298,
         | 
| 1062 | 
            +
            										10306
         | 
| 1063 | 
            +
            									],
         | 
| 1064 | 
            +
            									[
         | 
| 1065 | 
            +
            										10541,
         | 
| 1066 | 
            +
            										10549
         | 
| 1067 | 
            +
            									],
         | 
| 1068 | 
            +
            									[
         | 
| 1069 | 
            +
            										10784,
         | 
| 1070 | 
            +
            										10792
         | 
| 1071 | 
            +
            									],
         | 
| 1072 | 
            +
            									[
         | 
| 1073 | 
            +
            										11027,
         | 
| 1074 | 
            +
            										11035
         | 
| 1075 | 
            +
            									],
         | 
| 1076 | 
            +
            									[
         | 
| 1077 | 
            +
            										11290,
         | 
| 1078 | 
            +
            										11298
         | 
| 1079 | 
            +
            									],
         | 
| 1080 | 
            +
            									[
         | 
| 1081 | 
            +
            										11516,
         | 
| 1082 | 
            +
            										11524
         | 
| 1083 | 
            +
            									],
         | 
| 1084 | 
            +
            									[
         | 
| 1085 | 
            +
            										11713,
         | 
| 1086 | 
            +
            										11721
         | 
| 1087 | 
            +
            									],
         | 
| 1088 | 
            +
            									[
         | 
| 1089 | 
            +
            										11929,
         | 
| 1090 | 
            +
            										11937
         | 
| 1091 | 
            +
            									],
         | 
| 1092 | 
            +
            									[
         | 
| 1093 | 
            +
            										12145,
         | 
| 1094 | 
            +
            										12153
         | 
| 1095 | 
            +
            									],
         | 
| 1096 | 
            +
            									[
         | 
| 1097 | 
            +
            										12391,
         | 
| 1098 | 
            +
            										12399
         | 
| 1099 | 
            +
            									],
         | 
| 1100 | 
            +
            									[
         | 
| 1101 | 
            +
            										12559,
         | 
| 1102 | 
            +
            										12567
         | 
| 1103 | 
            +
            									],
         | 
| 1104 | 
            +
            									[
         | 
| 1105 | 
            +
            										12763,
         | 
| 1106 | 
            +
            										12771
         | 
| 1107 | 
            +
            									],
         | 
| 1108 | 
            +
            									[
         | 
| 1109 | 
            +
            										12931,
         | 
| 1110 | 
            +
            										12939
         | 
| 1111 | 
            +
            									],
         | 
| 1112 | 
            +
            									[
         | 
| 1113 | 
            +
            										13216,
         | 
| 1114 | 
            +
            										13224
         | 
| 1115 | 
            +
            									],
         | 
| 1116 | 
            +
            									[
         | 
| 1117 | 
            +
            										13483,
         | 
| 1118 | 
            +
            										13491
         | 
| 1119 | 
            +
            									],
         | 
| 1120 | 
            +
            									[
         | 
| 1121 | 
            +
            										13709,
         | 
| 1122 | 
            +
            										13717
         | 
| 1123 | 
            +
            									],
         | 
| 1124 | 
            +
            									[
         | 
| 1125 | 
            +
            										13930,
         | 
| 1126 | 
            +
            										13938
         | 
| 1127 | 
            +
            									],
         | 
| 1128 | 
            +
            									[
         | 
| 1129 | 
            +
            										14186,
         | 
| 1130 | 
            +
            										14194
         | 
| 1131 | 
            +
            									],
         | 
| 1132 | 
            +
            									[
         | 
| 1133 | 
            +
            										14448,
         | 
| 1134 | 
            +
            										14456
         | 
| 1135 | 
            +
            									],
         | 
| 1136 | 
            +
            									[
         | 
| 1137 | 
            +
            										14616,
         | 
| 1138 | 
            +
            										14624
         | 
| 1139 | 
            +
            									],
         | 
| 1140 | 
            +
            									[
         | 
| 1141 | 
            +
            										14820,
         | 
| 1142 | 
            +
            										14828
         | 
| 1143 | 
            +
            									],
         | 
| 1144 | 
            +
            									[
         | 
| 1145 | 
            +
            										14988,
         | 
| 1146 | 
            +
            										14996
         | 
| 1147 | 
            +
            									],
         | 
| 1148 | 
            +
            									[
         | 
| 1149 | 
            +
            										15241,
         | 
| 1150 | 
            +
            										15249
         | 
| 1151 | 
            +
            									],
         | 
| 1152 | 
            +
            									[
         | 
| 1153 | 
            +
            										15467,
         | 
| 1154 | 
            +
            										15475
         | 
| 1155 | 
            +
            									],
         | 
| 1156 | 
            +
            									[
         | 
| 1157 | 
            +
            										15681,
         | 
| 1158 | 
            +
            										15689
         | 
| 1159 | 
            +
            									],
         | 
| 1160 | 
            +
            									[
         | 
| 1161 | 
            +
            										15896,
         | 
| 1162 | 
            +
            										15904
         | 
| 1163 | 
            +
            									],
         | 
| 1164 | 
            +
            									[
         | 
| 1165 | 
            +
            										16123,
         | 
| 1166 | 
            +
            										16131
         | 
| 1167 | 
            +
            									],
         | 
| 1168 | 
            +
            									[
         | 
| 1169 | 
            +
            										16347,
         | 
| 1170 | 
            +
            										16355
         | 
| 1171 | 
            +
            									],
         | 
| 1172 | 
            +
            									[
         | 
| 1173 | 
            +
            										16618,
         | 
| 1174 | 
            +
            										16626
         | 
| 1175 | 
            +
            									],
         | 
| 1176 | 
            +
            									[
         | 
| 1177 | 
            +
            										16742,
         | 
| 1178 | 
            +
            										16750
         | 
| 1179 | 
            +
            									],
         | 
| 1180 | 
            +
            									[
         | 
| 1181 | 
            +
            										16908,
         | 
| 1182 | 
            +
            										16916
         | 
| 1183 | 
            +
            									],
         | 
| 1184 | 
            +
            									[
         | 
| 1185 | 
            +
            										16919,
         | 
| 1186 | 
            +
            										16927
         | 
| 1187 | 
            +
            									],
         | 
| 1188 | 
            +
            									[
         | 
| 1189 | 
            +
            										17012,
         | 
| 1190 | 
            +
            										17020
         | 
| 1191 | 
            +
            									],
         | 
| 1192 | 
            +
            									[
         | 
| 1193 | 
            +
            										17209,
         | 
| 1194 | 
            +
            										17226
         | 
| 1195 | 
            +
            									]
         | 
| 1196 | 
            +
            								],
         | 
| 1197 | 
            +
            								"scope": ""
         | 
| 1198 | 
            +
            							}
         | 
| 1199 | 
            +
            						},
         | 
| 1200 | 
            +
            						"selection":
         | 
| 1201 | 
            +
            						[
         | 
| 1202 | 
            +
            							[
         | 
| 1203 | 
            +
            								17222,
         | 
| 1204 | 
            +
            								17222
         | 
| 1205 | 
            +
            							]
         | 
| 1206 | 
            +
            						],
         | 
| 1207 | 
            +
            						"settings":
         | 
| 1208 | 
            +
            						{
         | 
| 1209 | 
            +
            							"default_dir": "/home/florian/code/contentful.rb",
         | 
| 1210 | 
            +
            							"detect_indentation": false,
         | 
| 1211 | 
            +
            							"git_gutter_is_enabled": false,
         | 
| 1212 | 
            +
            							"line_numbers": false,
         | 
| 1213 | 
            +
            							"output_tag": 13,
         | 
| 1214 | 
            +
            							"result_base_dir": "",
         | 
| 1215 | 
            +
            							"result_file_regex": "^([^ \t].*):$",
         | 
| 1216 | 
            +
            							"result_line_regex": "^ +([0-9]+):",
         | 
| 1217 | 
            +
            							"scroll_past_end": true,
         | 
| 1218 | 
            +
            							"syntax": "Packages/Default/Find Results.hidden-tmLanguage",
         | 
| 1219 | 
            +
            							"translate_tabs_to_spaces": false
         | 
| 1220 | 
            +
            						},
         | 
| 1221 | 
            +
            						"translation.x": 0.0,
         | 
| 1222 | 
            +
            						"translation.y": 9681.0,
         | 
| 1223 | 
            +
            						"zoom_level": 1.0
         | 
| 1224 | 
            +
            					},
         | 
| 1225 | 
            +
            					"stack_index": 6,
         | 
| 1226 | 
            +
            					"type": "text"
         | 
| 1227 | 
            +
            				},
         | 
| 1228 | 
            +
            				{
         | 
| 1229 | 
            +
            					"buffer": 1,
         | 
| 1230 | 
            +
            					"file": "spec/entry_spec.rb",
         | 
| 1231 | 
            +
            					"semi_transient": false,
         | 
| 1232 | 
            +
            					"settings":
         | 
| 1233 | 
            +
            					{
         | 
| 1234 | 
            +
            						"buffer_size": 29936,
         | 
| 1235 | 
            +
            						"regions":
         | 
| 1236 | 
            +
            						{
         | 
| 1237 | 
            +
            						},
         | 
| 1238 | 
            +
            						"selection":
         | 
| 1239 | 
            +
            						[
         | 
| 1240 | 
            +
            							[
         | 
| 1241 | 
            +
            								29324,
         | 
| 1242 | 
            +
            								29324
         | 
| 1243 | 
            +
            							]
         | 
| 1244 | 
            +
            						],
         | 
| 1245 | 
            +
            						"settings":
         | 
| 1246 | 
            +
            						{
         | 
| 1247 | 
            +
            							"git_gutter_is_enabled": true,
         | 
| 1248 | 
            +
            							"git_savvy.repo_path": "/home/florian/code/contentful.rb",
         | 
| 1249 | 
            +
            							"syntax": "Packages/RSpec/RSpec.tmLanguage",
         | 
| 1250 | 
            +
            							"tab_size": 2,
         | 
| 1251 | 
            +
            							"translate_tabs_to_spaces": true
         | 
| 1252 | 
            +
            						},
         | 
| 1253 | 
            +
            						"translation.x": 0.0,
         | 
| 1254 | 
            +
            						"translation.y": 16822.0,
         | 
| 1255 | 
            +
            						"zoom_level": 1.0
         | 
| 1256 | 
            +
            					},
         | 
| 1257 | 
            +
            					"stack_index": 1,
         | 
| 1258 | 
            +
            					"type": "text"
         | 
| 1259 | 
            +
            				},
         | 
| 1260 | 
            +
            				{
         | 
| 1261 | 
            +
            					"buffer": 2,
         | 
| 1262 | 
            +
            					"file": "spec/fixtures/vcr_cassettes/entries/rich_text_nested_fields.yml",
         | 
| 1263 | 
            +
            					"semi_transient": false,
         | 
| 1264 | 
            +
            					"settings":
         | 
| 1265 | 
            +
            					{
         | 
| 1266 | 
            +
            						"buffer_size": 22133,
         | 
| 1267 | 
            +
            						"regions":
         | 
| 1268 | 
            +
            						{
         | 
| 1269 | 
            +
            						},
         | 
| 1270 | 
            +
            						"selection":
         | 
| 1271 | 
            +
            						[
         | 
| 1272 | 
            +
            							[
         | 
| 1273 | 
            +
            								13022,
         | 
| 1274 | 
            +
            								13022
         | 
| 1275 | 
            +
            							]
         | 
| 1276 | 
            +
            						],
         | 
| 1277 | 
            +
            						"settings":
         | 
| 1278 | 
            +
            						{
         | 
| 1279 | 
            +
            							"git_gutter_is_enabled": true,
         | 
| 1280 | 
            +
            							"git_savvy.repo_path": "/home/florian/code/contentful.rb",
         | 
| 1281 | 
            +
            							"syntax": "Packages/YAML/YAML.sublime-syntax",
         | 
| 1282 | 
            +
            							"tab_size": 2,
         | 
| 1283 | 
            +
            							"translate_tabs_to_spaces": true
         | 
| 1284 | 
            +
            						},
         | 
| 1285 | 
            +
            						"translation.x": 0.0,
         | 
| 1286 | 
            +
            						"translation.y": 9954.0,
         | 
| 1287 | 
            +
            						"zoom_level": 1.0
         | 
| 1288 | 
            +
            					},
         | 
| 1289 | 
            +
            					"stack_index": 2,
         | 
| 1290 | 
            +
            					"type": "text"
         | 
| 1291 | 
            +
            				},
         | 
| 1292 | 
            +
            				{
         | 
| 1293 | 
            +
            					"buffer": 3,
         | 
| 1294 | 
            +
            					"semi_transient": false,
         | 
| 1295 | 
            +
            					"settings":
         | 
| 1296 | 
            +
            					{
         | 
| 1297 | 
            +
            						"buffer_size": 1826,
         | 
| 1298 | 
            +
            						"regions":
         | 
| 1299 | 
            +
            						{
         | 
| 1300 | 
            +
            						},
         | 
| 1301 | 
            +
            						"selection":
         | 
| 1302 | 
            +
            						[
         | 
| 1303 | 
            +
            							[
         | 
| 1304 | 
            +
            								165,
         | 
| 1305 | 
            +
            								165
         | 
| 1306 | 
            +
            							]
         | 
| 1307 | 
            +
            						],
         | 
| 1308 | 
            +
            						"settings":
         | 
| 1309 | 
            +
            						{
         | 
| 1310 | 
            +
            							"__vi_external_disable": false,
         | 
| 1311 | 
            +
            							"default_dir": "/home/florian/code/contentful.rb/spec/fixtures/vcr_cassettes/entries",
         | 
| 1312 | 
            +
            							"git_gutter_is_enabled": false,
         | 
| 1313 | 
            +
            							"git_savvy.help_hidden": false,
         | 
| 1314 | 
            +
            							"git_savvy.interface": "status",
         | 
| 1315 | 
            +
            							"git_savvy.repo_path": "/home/florian/code/contentful.rb",
         | 
| 1316 | 
            +
            							"git_savvy.status_view": true,
         | 
| 1317 | 
            +
            							"git_savvy.tabbable": true,
         | 
| 1318 | 
            +
            							"result_base_dir": "/home/florian/code/contentful.rb",
         | 
| 1319 | 
            +
            							"result_file_regex": "^(?:    .+ -> |  [ -] (?!\\(\\d+\\) ))(?!Your working directory is clean\\.)(\\S.*)$",
         | 
| 1320 | 
            +
            							"syntax": "Packages/GitSavvy/syntax/status.sublime-syntax",
         | 
| 1321 | 
            +
            							"tab_size": 2
         | 
| 1322 | 
            +
            						},
         | 
| 1323 | 
            +
            						"translation.x": 0.0,
         | 
| 1324 | 
            +
            						"translation.y": 0.0,
         | 
| 1325 | 
            +
            						"zoom_level": 1.0
         | 
| 1326 | 
            +
            					},
         | 
| 1327 | 
            +
            					"stack_index": 5,
         | 
| 1328 | 
            +
            					"type": "text"
         | 
| 1329 | 
            +
            				},
         | 
| 1330 | 
            +
            				{
         | 
| 1331 | 
            +
            					"buffer": 4,
         | 
| 1332 | 
            +
            					"file": "lib/contentful/resource_builder.rb",
         | 
| 1333 | 
            +
            					"semi_transient": true,
         | 
| 1334 | 
            +
            					"settings":
         | 
| 1335 | 
            +
            					{
         | 
| 1336 | 
            +
            						"buffer_size": 5326,
         | 
| 1337 | 
            +
            						"regions":
         | 
| 1338 | 
            +
            						{
         | 
| 1339 | 
            +
            						},
         | 
| 1340 | 
            +
            						"selection":
         | 
| 1341 | 
            +
            						[
         | 
| 1342 | 
            +
            							[
         | 
| 1343 | 
            +
            								2361,
         | 
| 1344 | 
            +
            								2361
         | 
| 1345 | 
            +
            							]
         | 
| 1346 | 
            +
            						],
         | 
| 1347 | 
            +
            						"settings":
         | 
| 1348 | 
            +
            						{
         | 
| 1349 | 
            +
            							"git_gutter_is_enabled": true,
         | 
| 1350 | 
            +
            							"git_savvy.repo_path": "/home/florian/code/contentful.rb",
         | 
| 1351 | 
            +
            							"syntax": "Packages/Ruby/Ruby.sublime-syntax",
         | 
| 1352 | 
            +
            							"tab_size": 2,
         | 
| 1353 | 
            +
            							"translate_tabs_to_spaces": true
         | 
| 1354 | 
            +
            						},
         | 
| 1355 | 
            +
            						"translation.x": 0.0,
         | 
| 1356 | 
            +
            						"translation.y": 1000.0,
         | 
| 1357 | 
            +
            						"zoom_level": 1.0
         | 
| 1358 | 
            +
            					},
         | 
| 1359 | 
            +
            					"stack_index": 3,
         | 
| 1360 | 
            +
            					"type": "text"
         | 
| 1361 | 
            +
            				},
         | 
| 1362 | 
            +
            				{
         | 
| 1363 | 
            +
            					"buffer": 5,
         | 
| 1364 | 
            +
            					"file": "lib/contentful/support.rb",
         | 
| 1365 | 
            +
            					"semi_transient": false,
         | 
| 1366 | 
            +
            					"settings":
         | 
| 1367 | 
            +
            					{
         | 
| 1368 | 
            +
            						"buffer_size": 2258,
         | 
| 1369 | 
            +
            						"regions":
         | 
| 1370 | 
            +
            						{
         | 
| 1371 | 
            +
            						},
         | 
| 1372 | 
            +
            						"selection":
         | 
| 1373 | 
            +
            						[
         | 
| 1374 | 
            +
            							[
         | 
| 1375 | 
            +
            								1439,
         | 
| 1376 | 
            +
            								1439
         | 
| 1377 | 
            +
            							]
         | 
| 1378 | 
            +
            						],
         | 
| 1379 | 
            +
            						"settings":
         | 
| 1380 | 
            +
            						{
         | 
| 1381 | 
            +
            							"git_gutter_is_enabled": true,
         | 
| 1382 | 
            +
            							"git_savvy.repo_path": "/home/florian/code/contentful.rb",
         | 
| 1383 | 
            +
            							"syntax": "Packages/Ruby/Ruby.sublime-syntax",
         | 
| 1384 | 
            +
            							"tab_size": 2,
         | 
| 1385 | 
            +
            							"translate_tabs_to_spaces": true
         | 
| 1386 | 
            +
            						},
         | 
| 1387 | 
            +
            						"translation.x": 0.0,
         | 
| 1388 | 
            +
            						"translation.y": 1009.0,
         | 
| 1389 | 
            +
            						"zoom_level": 1.0
         | 
| 1390 | 
            +
            					},
         | 
| 1391 | 
            +
            					"stack_index": 4,
         | 
| 1392 | 
            +
            					"type": "text"
         | 
| 1393 | 
            +
            				},
         | 
| 1394 | 
            +
            				{
         | 
| 1395 | 
            +
            					"buffer": 6,
         | 
| 1396 | 
            +
            					"semi_transient": false,
         | 
| 1397 | 
            +
            					"settings":
         | 
| 1398 | 
            +
            					{
         | 
| 1399 | 
            +
            						"buffer_size": 473,
         | 
| 1400 | 
            +
            						"regions":
         | 
| 1401 | 
            +
            						{
         | 
| 1402 | 
            +
            						},
         | 
| 1403 | 
            +
            						"selection":
         | 
| 1404 | 
            +
            						[
         | 
| 1405 | 
            +
            							[
         | 
| 1406 | 
            +
            								0,
         | 
| 1407 | 
            +
            								0
         | 
| 1408 | 
            +
            							]
         | 
| 1409 | 
            +
            						],
         | 
| 1410 | 
            +
            						"settings":
         | 
| 1411 | 
            +
            						{
         | 
| 1412 | 
            +
            							"default_dir": "/home/florian/code/contentful.rb/spec",
         | 
| 1413 | 
            +
            							"git_gutter_is_enabled": false,
         | 
| 1414 | 
            +
            							"git_savvy.commit_on_close": false,
         | 
| 1415 | 
            +
            							"git_savvy.commit_view": true,
         | 
| 1416 | 
            +
            							"git_savvy.commit_view.amend": false,
         | 
| 1417 | 
            +
            							"git_savvy.commit_view.include_unstaged": false,
         | 
| 1418 | 
            +
            							"git_savvy.get_long_text_view": true,
         | 
| 1419 | 
            +
            							"git_savvy.prompt_on_abort_commit": true,
         | 
| 1420 | 
            +
            							"git_savvy.repo_path": "/home/florian/code/contentful.rb",
         | 
| 1421 | 
            +
            							"rulers":
         | 
| 1422 | 
            +
            							[
         | 
| 1423 | 
            +
            							],
         | 
| 1424 | 
            +
            							"syntax": "Packages/GitSavvy/syntax/make_commit.sublime-syntax"
         | 
| 1425 | 
            +
            						},
         | 
| 1426 | 
            +
            						"translation.x": 0.0,
         | 
| 1427 | 
            +
            						"translation.y": 274.0,
         | 
| 1428 | 
            +
            						"zoom_level": 1.0
         | 
| 1429 | 
            +
            					},
         | 
| 1430 | 
            +
            					"stack_index": 0,
         | 
| 1431 | 
            +
            					"type": "text"
         | 
| 1432 | 
            +
            				},
         | 
| 1433 | 
            +
            				{
         | 
| 1434 | 
            +
            					"buffer": 7,
         | 
| 1435 | 
            +
            					"file": "spec/fixtures/vcr_cassettes/entries/issue_225_broken.yml",
         | 
| 1436 | 
            +
            					"semi_transient": false,
         | 
| 1437 | 
            +
            					"settings":
         | 
| 1438 | 
            +
            					{
         | 
| 1439 | 
            +
            						"buffer_size": 129457,
         | 
| 1440 | 
            +
            						"regions":
         | 
| 1441 | 
            +
            						{
         | 
| 1442 | 
            +
            						},
         | 
| 1443 | 
            +
            						"selection":
         | 
| 1444 | 
            +
            						[
         | 
| 1445 | 
            +
            							[
         | 
| 1446 | 
            +
            								44458,
         | 
| 1447 | 
            +
            								44458
         | 
| 1448 | 
            +
            							]
         | 
| 1449 | 
            +
            						],
         | 
| 1450 | 
            +
            						"settings":
         | 
| 1451 | 
            +
            						{
         | 
| 1452 | 
            +
            							"git_gutter_is_enabled": true,
         | 
| 1453 | 
            +
            							"git_savvy.repo_path": "/home/florian/code/contentful.rb",
         | 
| 1454 | 
            +
            							"syntax": "Packages/YAML/YAML.sublime-syntax",
         | 
| 1455 | 
            +
            							"tab_size": 2,
         | 
| 1456 | 
            +
            							"translate_tabs_to_spaces": true
         | 
| 1457 | 
            +
            						},
         | 
| 1458 | 
            +
            						"translation.x": 0.0,
         | 
| 1459 | 
            +
            						"translation.y": 28765.0,
         | 
| 1460 | 
            +
            						"zoom_level": 1.0
         | 
| 1461 | 
            +
            					},
         | 
| 1462 | 
            +
            					"stack_index": 7,
         | 
| 1463 | 
            +
            					"type": "text"
         | 
| 1464 | 
            +
            				}
         | 
| 1465 | 
            +
            			]
         | 
| 1466 | 
            +
            		}
         | 
| 1467 | 
            +
            	],
         | 
| 1468 | 
            +
            	"incremental_find":
         | 
| 1469 | 
            +
            	{
         | 
| 1470 | 
            +
            		"height": 28.0
         | 
| 1471 | 
            +
            	},
         | 
| 1472 | 
            +
            	"input":
         | 
| 1473 | 
            +
            	{
         | 
| 1474 | 
            +
            		"height": 67.0
         | 
| 1475 | 
            +
            	},
         | 
| 1476 | 
            +
            	"layout":
         | 
| 1477 | 
            +
            	{
         | 
| 1478 | 
            +
            		"cells":
         | 
| 1479 | 
            +
            		[
         | 
| 1480 | 
            +
            			[
         | 
| 1481 | 
            +
            				0,
         | 
| 1482 | 
            +
            				0,
         | 
| 1483 | 
            +
            				1,
         | 
| 1484 | 
            +
            				1
         | 
| 1485 | 
            +
            			]
         | 
| 1486 | 
            +
            		],
         | 
| 1487 | 
            +
            		"cols":
         | 
| 1488 | 
            +
            		[
         | 
| 1489 | 
            +
            			0.0,
         | 
| 1490 | 
            +
            			1.0
         | 
| 1491 | 
            +
            		],
         | 
| 1492 | 
            +
            		"rows":
         | 
| 1493 | 
            +
            		[
         | 
| 1494 | 
            +
            			0.0,
         | 
| 1495 | 
            +
            			1.0
         | 
| 1496 | 
            +
            		]
         | 
| 1497 | 
            +
            	},
         | 
| 1498 | 
            +
            	"menu_visible": true,
         | 
| 1499 | 
            +
            	"output.GitSavvy":
         | 
| 1500 | 
            +
            	{
         | 
| 1501 | 
            +
            		"height": 156.0
         | 
| 1502 | 
            +
            	},
         | 
| 1503 | 
            +
            	"output.SublimeLinter":
         | 
| 1504 | 
            +
            	{
         | 
| 1505 | 
            +
            		"height": 0.0
         | 
| 1506 | 
            +
            	},
         | 
| 1507 | 
            +
            	"output.diagnostics":
         | 
| 1508 | 
            +
            	{
         | 
| 1509 | 
            +
            		"height": 138.0
         | 
| 1510 | 
            +
            	},
         | 
| 1511 | 
            +
            	"output.doc":
         | 
| 1512 | 
            +
            	{
         | 
| 1513 | 
            +
            		"height": 0.0
         | 
| 1514 | 
            +
            	},
         | 
| 1515 | 
            +
            	"output.find_results":
         | 
| 1516 | 
            +
            	{
         | 
| 1517 | 
            +
            		"height": 0.0
         | 
| 1518 | 
            +
            	},
         | 
| 1519 | 
            +
            	"output.language servers":
         | 
| 1520 | 
            +
            	{
         | 
| 1521 | 
            +
            		"height": 270.0
         | 
| 1522 | 
            +
            	},
         | 
| 1523 | 
            +
            	"output.mdpopups":
         | 
| 1524 | 
            +
            	{
         | 
| 1525 | 
            +
            		"height": 0.0
         | 
| 1526 | 
            +
            	},
         | 
| 1527 | 
            +
            	"output.mix_format":
         | 
| 1528 | 
            +
            	{
         | 
| 1529 | 
            +
            		"height": 144.0
         | 
| 1530 | 
            +
            	},
         | 
| 1531 | 
            +
            	"output.show_commit_info":
         | 
| 1532 | 
            +
            	{
         | 
| 1533 | 
            +
            		"height": 156.0
         | 
| 1534 | 
            +
            	},
         | 
| 1535 | 
            +
            	"output.show_file_diff":
         | 
| 1536 | 
            +
            	{
         | 
| 1537 | 
            +
            		"height": 156.0
         | 
| 1538 | 
            +
            	},
         | 
| 1539 | 
            +
            	"pinned_build_system": "",
         | 
| 1540 | 
            +
            	"project": "contentful.rb.sublime-project",
         | 
| 1541 | 
            +
            	"replace":
         | 
| 1542 | 
            +
            	{
         | 
| 1543 | 
            +
            		"height": 52.0
         | 
| 1544 | 
            +
            	},
         | 
| 1545 | 
            +
            	"save_all_on_build": true,
         | 
| 1546 | 
            +
            	"select_file":
         | 
| 1547 | 
            +
            	{
         | 
| 1548 | 
            +
            		"height": 0.0,
         | 
| 1549 | 
            +
            		"last_filter": "",
         | 
| 1550 | 
            +
            		"selected_items":
         | 
| 1551 | 
            +
            		[
         | 
| 1552 | 
            +
            			[
         | 
| 1553 | 
            +
            				"rich text nested",
         | 
| 1554 | 
            +
            				"spec/fixtures/vcr_cassettes/entries/rich_text_nested_fields.yml"
         | 
| 1555 | 
            +
            			],
         | 
| 1556 | 
            +
            			[
         | 
| 1557 | 
            +
            				"support",
         | 
| 1558 | 
            +
            				"lib/contentful/support.rb"
         | 
| 1559 | 
            +
            			],
         | 
| 1560 | 
            +
            			[
         | 
| 1561 | 
            +
            				"issue 225 broken",
         | 
| 1562 | 
            +
            				"spec/fixtures/vcr_cassettes/entries/issue_225_broken.yml"
         | 
| 1563 | 
            +
            			],
         | 
| 1564 | 
            +
            			[
         | 
| 1565 | 
            +
            				"asset.r",
         | 
| 1566 | 
            +
            				"lib/contentful/asset.rb"
         | 
| 1567 | 
            +
            			],
         | 
| 1568 | 
            +
            			[
         | 
| 1569 | 
            +
            				"base.rb",
         | 
| 1570 | 
            +
            				"lib/contentful/base_resource.rb"
         | 
| 1571 | 
            +
            			],
         | 
| 1572 | 
            +
            			[
         | 
| 1573 | 
            +
            				"content asset",
         | 
| 1574 | 
            +
            				"lib/contentful/asset.rb"
         | 
| 1575 | 
            +
            			],
         | 
| 1576 | 
            +
            			[
         | 
| 1577 | 
            +
            				"issue",
         | 
| 1578 | 
            +
            				"spec/fixtures/vcr_cassettes/entries/issue_225_broken.yml"
         | 
| 1579 | 
            +
            			],
         | 
| 1580 | 
            +
            			[
         | 
| 1581 | 
            +
            				"entry spec",
         | 
| 1582 | 
            +
            				"spec/entry_spec.rb"
         | 
| 1583 | 
            +
            			],
         | 
| 1584 | 
            +
            			[
         | 
| 1585 | 
            +
            				"change",
         | 
| 1586 | 
            +
            				"CHANGELOG.md"
         | 
| 1587 | 
            +
            			],
         | 
| 1588 | 
            +
            			[
         | 
| 1589 | 
            +
            				"lib ver",
         | 
| 1590 | 
            +
            				"lib/contentful/version.rb"
         | 
| 1591 | 
            +
            			],
         | 
| 1592 | 
            +
            			[
         | 
| 1593 | 
            +
            				"REDAME",
         | 
| 1594 | 
            +
            				"README.md"
         | 
| 1595 | 
            +
            			],
         | 
| 1596 | 
            +
            			[
         | 
| 1597 | 
            +
            				"gemspec",
         | 
| 1598 | 
            +
            				"contentful.gemspec"
         | 
| 1599 | 
            +
            			],
         | 
| 1600 | 
            +
            			[
         | 
| 1601 | 
            +
            				"organization",
         | 
| 1602 | 
            +
            				"app/models/organization.rb"
         | 
| 1603 | 
            +
            			],
         | 
| 1604 | 
            +
            			[
         | 
| 1605 | 
            +
            				"db schema",
         | 
| 1606 | 
            +
            				"db/schema.rb"
         | 
| 1607 | 
            +
            			],
         | 
| 1608 | 
            +
            			[
         | 
| 1609 | 
            +
            				"billing",
         | 
| 1610 | 
            +
            				"app/models/concerns/contentful/billing.rb"
         | 
| 1611 | 
            +
            			],
         | 
| 1612 | 
            +
            			[
         | 
| 1613 | 
            +
            				"organiz",
         | 
| 1614 | 
            +
            				"app/models/organization.rb"
         | 
| 1615 | 
            +
            			],
         | 
| 1616 | 
            +
            			[
         | 
| 1617 | 
            +
            				"admin user",
         | 
| 1618 | 
            +
            				"app/models/admin_user.rb"
         | 
| 1619 | 
            +
            			],
         | 
| 1620 | 
            +
            			[
         | 
| 1621 | 
            +
            				"iex.",
         | 
| 1622 | 
            +
            				"app/assets/stylesheets/modules/index.scss"
         | 
| 1623 | 
            +
            			],
         | 
| 1624 | 
            +
            			[
         | 
| 1625 | 
            +
            				"gem",
         | 
| 1626 | 
            +
            				"Gemfile"
         | 
| 1627 | 
            +
            			],
         | 
| 1628 | 
            +
            			[
         | 
| 1629 | 
            +
            				"create o",
         | 
| 1630 | 
            +
            				"app/use_cases/organization_invitation/create_organization_invitation.rb"
         | 
| 1631 | 
            +
            			],
         | 
| 1632 | 
            +
            			[
         | 
| 1633 | 
            +
            				"feature check scim",
         | 
| 1634 | 
            +
            				"app/services/product_catalog/feature_checkers/organization_scoped/scim.rb"
         | 
| 1635 | 
            +
            			],
         | 
| 1636 | 
            +
            			[
         | 
| 1637 | 
            +
            				"schema",
         | 
| 1638 | 
            +
            				"db/schema.rb"
         | 
| 1639 | 
            +
            			],
         | 
| 1640 | 
            +
            			[
         | 
| 1641 | 
            +
            				"config.json",
         | 
| 1642 | 
            +
            				"config/environments/acceptance/config.json"
         | 
| 1643 | 
            +
            			],
         | 
| 1644 | 
            +
            			[
         | 
| 1645 | 
            +
            				"content",
         | 
| 1646 | 
            +
            				"lib/contentful.rb"
         | 
| 1647 | 
            +
            			],
         | 
| 1648 | 
            +
            			[
         | 
| 1649 | 
            +
            				"",
         | 
| 1650 | 
            +
            				"app/controllers/api/v1/organizations/space_memberships_controller.rb"
         | 
| 1651 | 
            +
            			],
         | 
| 1652 | 
            +
            			[
         | 
| 1653 | 
            +
            				"space member con",
         | 
| 1654 | 
            +
            				"app/controllers/api/v1/organizations/space_memberships_controller.rb"
         | 
| 1655 | 
            +
            			],
         | 
| 1656 | 
            +
            			[
         | 
| 1657 | 
            +
            				"config routes api",
         | 
| 1658 | 
            +
            				"config/routes/api.rb"
         | 
| 1659 | 
            +
            			],
         | 
| 1660 | 
            +
            			[
         | 
| 1661 | 
            +
            				"user mana",
         | 
| 1662 | 
            +
            				"app/services/product_catalog/feature_checkers/organization_scoped/user_management_api.rb"
         | 
| 1663 | 
            +
            			],
         | 
| 1664 | 
            +
            			[
         | 
| 1665 | 
            +
            				"seeds",
         | 
| 1666 | 
            +
            				"db/seeds.rb"
         | 
| 1667 | 
            +
            			],
         | 
| 1668 | 
            +
            			[
         | 
| 1669 | 
            +
            				"feature",
         | 
| 1670 | 
            +
            				"app/models/product_catalog/feature.rb"
         | 
| 1671 | 
            +
            			],
         | 
| 1672 | 
            +
            			[
         | 
| 1673 | 
            +
            				"create in",
         | 
| 1674 | 
            +
            				"app/use_cases/organization_invitation/create_organization_invitation.rb"
         | 
| 1675 | 
            +
            			],
         | 
| 1676 | 
            +
            			[
         | 
| 1677 | 
            +
            				"organization inviti",
         | 
| 1678 | 
            +
            				"app/use_cases/organization_invitation/create_organization_invitation.rb"
         | 
| 1679 | 
            +
            			],
         | 
| 1680 | 
            +
            			[
         | 
| 1681 | 
            +
            				"create or",
         | 
| 1682 | 
            +
            				"app/use_cases/organization_invitation/create_organization_invitation.rb"
         | 
| 1683 | 
            +
            			],
         | 
| 1684 | 
            +
            			[
         | 
| 1685 | 
            +
            				"routes ",
         | 
| 1686 | 
            +
            				"config/routes/internal_system.rb"
         | 
| 1687 | 
            +
            			],
         | 
| 1688 | 
            +
            			[
         | 
| 1689 | 
            +
            				"routes",
         | 
| 1690 | 
            +
            				"config/routes.rb"
         | 
| 1691 | 
            +
            			],
         | 
| 1692 | 
            +
            			[
         | 
| 1693 | 
            +
            				"admin.",
         | 
| 1694 | 
            +
            				"app/models/admin.rb"
         | 
| 1695 | 
            +
            			],
         | 
| 1696 | 
            +
            			[
         | 
| 1697 | 
            +
            				"user.rb",
         | 
| 1698 | 
            +
            				"app/models/user.rb"
         | 
| 1699 | 
            +
            			],
         | 
| 1700 | 
            +
            			[
         | 
| 1701 | 
            +
            				"custom reo",
         | 
| 1702 | 
            +
            				"app/services/product_catalog/feature_checkers/space_scoped/custom_roles.rb"
         | 
| 1703 | 
            +
            			],
         | 
| 1704 | 
            +
            			[
         | 
| 1705 | 
            +
            				"plan.rb",
         | 
| 1706 | 
            +
            				"app/models/subby/resources/plan.rb"
         | 
| 1707 | 
            +
            			],
         | 
| 1708 | 
            +
            			[
         | 
| 1709 | 
            +
            				"publish",
         | 
| 1710 | 
            +
            				"app/models/concerns/contentful/rabbit_mq/publishable.rb"
         | 
| 1711 | 
            +
            			],
         | 
| 1712 | 
            +
            			[
         | 
| 1713 | 
            +
            				"scim",
         | 
| 1714 | 
            +
            				"app/services/internal_service/create_organization_invite_message.rb"
         | 
| 1715 | 
            +
            			],
         | 
| 1716 | 
            +
            			[
         | 
| 1717 | 
            +
            				"segment",
         | 
| 1718 | 
            +
            				"lib/contentful/segment.rb"
         | 
| 1719 | 
            +
            			],
         | 
| 1720 | 
            +
            			[
         | 
| 1721 | 
            +
            				"string.r",
         | 
| 1722 | 
            +
            				"spec/support/matchers/string.rb"
         | 
| 1723 | 
            +
            			],
         | 
| 1724 | 
            +
            			[
         | 
| 1725 | 
            +
            				"string.",
         | 
| 1726 | 
            +
            				"spec/support/matchers/string.rb"
         | 
| 1727 | 
            +
            			],
         | 
| 1728 | 
            +
            			[
         | 
| 1729 | 
            +
            				"gemfile",
         | 
| 1730 | 
            +
            				"Gemfile"
         | 
| 1731 | 
            +
            			],
         | 
| 1732 | 
            +
            			[
         | 
| 1733 | 
            +
            				"lib segm",
         | 
| 1734 | 
            +
            				"lib/contentful/segment.rb"
         | 
| 1735 | 
            +
            			],
         | 
| 1736 | 
            +
            			[
         | 
| 1737 | 
            +
            				"publi",
         | 
| 1738 | 
            +
            				"app/models/concerns/contentful/rabbit_mq/publishable.rb"
         | 
| 1739 | 
            +
            			],
         | 
| 1740 | 
            +
            			[
         | 
| 1741 | 
            +
            				"space plans",
         | 
| 1742 | 
            +
            				"app/admin/space_plans.rb"
         | 
| 1743 | 
            +
            			],
         | 
| 1744 | 
            +
            			[
         | 
| 1745 | 
            +
            				"admin space",
         | 
| 1746 | 
            +
            				"app/admin/spaces.rb"
         | 
| 1747 | 
            +
            			],
         | 
| 1748 | 
            +
            			[
         | 
| 1749 | 
            +
            				"rate_plans",
         | 
| 1750 | 
            +
            				"lib/contentful/admin/rate_plans.rb"
         | 
| 1751 | 
            +
            			],
         | 
| 1752 | 
            +
            			[
         | 
| 1753 | 
            +
            				"delete_spec",
         | 
| 1754 | 
            +
            				"spec/requests/api/v1/spaces/delete_spec.rb"
         | 
| 1755 | 
            +
            			],
         | 
| 1756 | 
            +
            			[
         | 
| 1757 | 
            +
            				"sub pro spec",
         | 
| 1758 | 
            +
            				"spec/lib/contentful/space_subscription_properties_spec.rb"
         | 
| 1759 | 
            +
            			],
         | 
| 1760 | 
            +
            			[
         | 
| 1761 | 
            +
            				"contentn space s",
         | 
| 1762 | 
            +
            				"lib/contentful/space_subscription_properties.rb"
         | 
| 1763 | 
            +
            			],
         | 
| 1764 | 
            +
            			[
         | 
| 1765 | 
            +
            				"services create_space_sp",
         | 
| 1766 | 
            +
            				"spec/services/space_management/create_space_spec.rb"
         | 
| 1767 | 
            +
            			],
         | 
| 1768 | 
            +
            			[
         | 
| 1769 | 
            +
            				"create spec ",
         | 
| 1770 | 
            +
            				"spec/services/subby/subscription/create_spec.rb"
         | 
| 1771 | 
            +
            			],
         | 
| 1772 | 
            +
            			[
         | 
| 1773 | 
            +
            				"admin space plan",
         | 
| 1774 | 
            +
            				"app/admin/space_plans.rb"
         | 
| 1775 | 
            +
            			],
         | 
| 1776 | 
            +
            			[
         | 
| 1777 | 
            +
            				"spaces spec",
         | 
| 1778 | 
            +
            				"spec/lib/contentful/admin/spaces_spec.rb"
         | 
| 1779 | 
            +
            			],
         | 
| 1780 | 
            +
            			[
         | 
| 1781 | 
            +
            				"update space ass",
         | 
| 1782 | 
            +
            				"app/use_cases/update_space_assignment_for_rate_plan.rb"
         | 
| 1783 | 
            +
            			],
         | 
| 1784 | 
            +
            			[
         | 
| 1785 | 
            +
            				"update space rate",
         | 
| 1786 | 
            +
            				"app/services/subscription_management/update_space_rate_plan.rb"
         | 
| 1787 | 
            +
            			],
         | 
| 1788 | 
            +
            			[
         | 
| 1789 | 
            +
            				"space_plan",
         | 
| 1790 | 
            +
            				"app/admin/space_plans.rb"
         | 
| 1791 | 
            +
            			],
         | 
| 1792 | 
            +
            			[
         | 
| 1793 | 
            +
            				"plan",
         | 
| 1794 | 
            +
            				"app/models/subby/resources/plan.rb"
         | 
| 1795 | 
            +
            			],
         | 
| 1796 | 
            +
            			[
         | 
| 1797 | 
            +
            				"space pro",
         | 
| 1798 | 
            +
            				"lib/contentful/space_subscription_properties.rb"
         | 
| 1799 | 
            +
            			],
         | 
| 1800 | 
            +
            			[
         | 
| 1801 | 
            +
            				"segment_sp",
         | 
| 1802 | 
            +
            				"spec/lib/contentful/segment_spec.rb"
         | 
| 1803 | 
            +
            			],
         | 
| 1804 | 
            +
            			[
         | 
| 1805 | 
            +
            				"string",
         | 
| 1806 | 
            +
            				"spec/support/matchers/string.rb"
         | 
| 1807 | 
            +
            			],
         | 
| 1808 | 
            +
            			[
         | 
| 1809 | 
            +
            				"create space spec",
         | 
| 1810 | 
            +
            				"spec/services/space_management/create_space_spec.rb"
         | 
| 1811 | 
            +
            			],
         | 
| 1812 | 
            +
            			[
         | 
| 1813 | 
            +
            				"matchers",
         | 
| 1814 | 
            +
            				"spec/support/matchers.rb"
         | 
| 1815 | 
            +
            			],
         | 
| 1816 | 
            +
            			[
         | 
| 1817 | 
            +
            				"content space",
         | 
| 1818 | 
            +
            				"lib/contentful/space_subscription_properties.rb"
         | 
| 1819 | 
            +
            			],
         | 
| 1820 | 
            +
            			[
         | 
| 1821 | 
            +
            				"subby product ",
         | 
| 1822 | 
            +
            				"app/models/subby/resources/product.rb"
         | 
| 1823 | 
            +
            			],
         | 
| 1824 | 
            +
            			[
         | 
| 1825 | 
            +
            				"space sub",
         | 
| 1826 | 
            +
            				"lib/contentful/space_subscription_properties.rb"
         | 
| 1827 | 
            +
            			],
         | 
| 1828 | 
            +
            			[
         | 
| 1829 | 
            +
            				"admin space plans",
         | 
| 1830 | 
            +
            				"app/admin/space_plans.rb"
         | 
| 1831 | 
            +
            			],
         | 
| 1832 | 
            +
            			[
         | 
| 1833 | 
            +
            				"space",
         | 
| 1834 | 
            +
            				"app/models/space.rb"
         | 
| 1835 | 
            +
            			],
         | 
| 1836 | 
            +
            			[
         | 
| 1837 | 
            +
            				"content segment",
         | 
| 1838 | 
            +
            				"lib/contentful/segment.rb"
         | 
| 1839 | 
            +
            			],
         | 
| 1840 | 
            +
            			[
         | 
| 1841 | 
            +
            				"proper",
         | 
| 1842 | 
            +
            				"lib/contentful/space_subscription_properties.rb"
         | 
| 1843 | 
            +
            			],
         | 
| 1844 | 
            +
            			[
         | 
| 1845 | 
            +
            				"subby sub",
         | 
| 1846 | 
            +
            				"app/models/subby/resources/subscription.rb"
         | 
| 1847 | 
            +
            			],
         | 
| 1848 | 
            +
            			[
         | 
| 1849 | 
            +
            				"contentf subs",
         | 
| 1850 | 
            +
            				"lib/contentful/space_subscription_properties.rb"
         | 
| 1851 | 
            +
            			],
         | 
| 1852 | 
            +
            			[
         | 
| 1853 | 
            +
            				"organiza",
         | 
| 1854 | 
            +
            				"app/models/organization.rb"
         | 
| 1855 | 
            +
            			],
         | 
| 1856 | 
            +
            			[
         | 
| 1857 | 
            +
            				"contentful subscr",
         | 
| 1858 | 
            +
            				"lib/contentful/space_subscription_properties.rb"
         | 
| 1859 | 
            +
            			],
         | 
| 1860 | 
            +
            			[
         | 
| 1861 | 
            +
            				"subby sub fetch",
         | 
| 1862 | 
            +
            				"app/services/subby/subscription/fetch.rb"
         | 
| 1863 | 
            +
            			],
         | 
| 1864 | 
            +
            			[
         | 
| 1865 | 
            +
            				"sub fetch.rb",
         | 
| 1866 | 
            +
            				"app/services/subby/subscription/fetch.rb"
         | 
| 1867 | 
            +
            			],
         | 
| 1868 | 
            +
            			[
         | 
| 1869 | 
            +
            				"subscription",
         | 
| 1870 | 
            +
            				"app/models/subscription.rb"
         | 
| 1871 | 
            +
            			],
         | 
| 1872 | 
            +
            			[
         | 
| 1873 | 
            +
            				"admin spaces",
         | 
| 1874 | 
            +
            				"app/admin/spaces.rb"
         | 
| 1875 | 
            +
            			],
         | 
| 1876 | 
            +
            			[
         | 
| 1877 | 
            +
            				"contentful",
         | 
| 1878 | 
            +
            				"lib/contentful/segment.rb"
         | 
| 1879 | 
            +
            			],
         | 
| 1880 | 
            +
            			[
         | 
| 1881 | 
            +
            				"spaces spa",
         | 
| 1882 | 
            +
            				"spec/lib/contentful/admin/spaces_spec.rb"
         | 
| 1883 | 
            +
            			],
         | 
| 1884 | 
            +
            			[
         | 
| 1885 | 
            +
            				"spec helper",
         | 
| 1886 | 
            +
            				"spec/spec_helper.rb"
         | 
| 1887 | 
            +
            			],
         | 
| 1888 | 
            +
            			[
         | 
| 1889 | 
            +
            				"contentful segem",
         | 
| 1890 | 
            +
            				"lib/contentful/segment.rb"
         | 
| 1891 | 
            +
            			],
         | 
| 1892 | 
            +
            			[
         | 
| 1893 | 
            +
            				"config initial ",
         | 
| 1894 | 
            +
            				"config/initializers/01_logging.rb"
         | 
| 1895 | 
            +
            			],
         | 
| 1896 | 
            +
            			[
         | 
| 1897 | 
            +
            				"sege",
         | 
| 1898 | 
            +
            				"lib/contentful/segment.rb"
         | 
| 1899 | 
            +
            			],
         | 
| 1900 | 
            +
            			[
         | 
| 1901 | 
            +
            				"admin s",
         | 
| 1902 | 
            +
            				"app/admin/spaces.rb"
         | 
| 1903 | 
            +
            			],
         | 
| 1904 | 
            +
            			[
         | 
| 1905 | 
            +
            				"contentf",
         | 
| 1906 | 
            +
            				"lib/contentful.rb"
         | 
| 1907 | 
            +
            			],
         | 
| 1908 | 
            +
            			[
         | 
| 1909 | 
            +
            				"segmetn",
         | 
| 1910 | 
            +
            				"lib/contentful/segment.rb"
         | 
| 1911 | 
            +
            			],
         | 
| 1912 | 
            +
            			[
         | 
| 1913 | 
            +
            				"contentful spaces",
         | 
| 1914 | 
            +
            				"lib/contentful/admin/spaces.rb"
         | 
| 1915 | 
            +
            			],
         | 
| 1916 | 
            +
            			[
         | 
| 1917 | 
            +
            				"spaces",
         | 
| 1918 | 
            +
            				"app/admin/spaces.rb"
         | 
| 1919 | 
            +
            			],
         | 
| 1920 | 
            +
            			[
         | 
| 1921 | 
            +
            				"admin_spec",
         | 
| 1922 | 
            +
            				"spec/lib/contentful/admin_spec.rb"
         | 
| 1923 | 
            +
            			],
         | 
| 1924 | 
            +
            			[
         | 
| 1925 | 
            +
            				"matcher",
         | 
| 1926 | 
            +
            				"spec/support/matchers.rb"
         | 
| 1927 | 
            +
            			],
         | 
| 1928 | 
            +
            			[
         | 
| 1929 | 
            +
            				"readme",
         | 
| 1930 | 
            +
            				"README.md"
         | 
| 1931 | 
            +
            			],
         | 
| 1932 | 
            +
            			[
         | 
| 1933 | 
            +
            				"segmen",
         | 
| 1934 | 
            +
            				"config/initializers/segment_analytics_ruby.rb"
         | 
| 1935 | 
            +
            			],
         | 
| 1936 | 
            +
            			[
         | 
| 1937 | 
            +
            				"spaces sub",
         | 
| 1938 | 
            +
            				"spec/lib/contentful/space_subscription_properties_spec.rb"
         | 
| 1939 | 
            +
            			],
         | 
| 1940 | 
            +
            			[
         | 
| 1941 | 
            +
            				"content spaces spec",
         | 
| 1942 | 
            +
            				"spec/lib/contentful/spaces_spec.rb"
         | 
| 1943 | 
            +
            			],
         | 
| 1944 | 
            +
            			[
         | 
| 1945 | 
            +
            				"create",
         | 
| 1946 | 
            +
            				"app/services/space_management/create_space.rb"
         | 
| 1947 | 
            +
            			],
         | 
| 1948 | 
            +
            			[
         | 
| 1949 | 
            +
            				"spaces contro",
         | 
| 1950 | 
            +
            				"app/controllers/api/v1/spaces_controller.rb"
         | 
| 1951 | 
            +
            			],
         | 
| 1952 | 
            +
            			[
         | 
| 1953 | 
            +
            				"delte_s",
         | 
| 1954 | 
            +
            				"spec/requests/api/v1/spaces/delete_spec.rb"
         | 
| 1955 | 
            +
            			],
         | 
| 1956 | 
            +
            			[
         | 
| 1957 | 
            +
            				"spaces_spec",
         | 
| 1958 | 
            +
            				"spec/lib/contentful/spaces_spec.rb"
         | 
| 1959 | 
            +
            			],
         | 
| 1960 | 
            +
            			[
         | 
| 1961 | 
            +
            				"spaces controll",
         | 
| 1962 | 
            +
            				"app/controllers/api/v1/spaces_controller.rb"
         | 
| 1963 | 
            +
            			],
         | 
| 1964 | 
            +
            			[
         | 
| 1965 | 
            +
            				"content spaces",
         | 
| 1966 | 
            +
            				"lib/contentful/spaces.rb"
         | 
| 1967 | 
            +
            			],
         | 
| 1968 | 
            +
            			[
         | 
| 1969 | 
            +
            				"subby subscrip",
         | 
| 1970 | 
            +
            				"app/models/subby/resources/subscription.rb"
         | 
| 1971 | 
            +
            			],
         | 
| 1972 | 
            +
            			[
         | 
| 1973 | 
            +
            				"feature_and",
         | 
| 1974 | 
            +
            				"app/models/concerns/contentful/features_and_limits.rb"
         | 
| 1975 | 
            +
            			],
         | 
| 1976 | 
            +
            			[
         | 
| 1977 | 
            +
            				"segem",
         | 
| 1978 | 
            +
            				"lib/contentful/segment.rb"
         | 
| 1979 | 
            +
            			],
         | 
| 1980 | 
            +
            			[
         | 
| 1981 | 
            +
            				"spaces control",
         | 
| 1982 | 
            +
            				"app/controllers/api/v1/spaces_controller.rb"
         | 
| 1983 | 
            +
            			],
         | 
| 1984 | 
            +
            			[
         | 
| 1985 | 
            +
            				"spaces.rb",
         | 
| 1986 | 
            +
            				"app/admin/spaces.rb"
         | 
| 1987 | 
            +
            			],
         | 
| 1988 | 
            +
            			[
         | 
| 1989 | 
            +
            				"create_space",
         | 
| 1990 | 
            +
            				"app/services/space_management/create_space.rb"
         | 
| 1991 | 
            +
            			],
         | 
| 1992 | 
            +
            			[
         | 
| 1993 | 
            +
            				"subb sub",
         | 
| 1994 | 
            +
            				"app/models/subscription.rb"
         | 
| 1995 | 
            +
            			],
         | 
| 1996 | 
            +
            			[
         | 
| 1997 | 
            +
            				"subs",
         | 
| 1998 | 
            +
            				"app/models/subscription.rb"
         | 
| 1999 | 
            +
            			],
         | 
| 2000 | 
            +
            			[
         | 
| 2001 | 
            +
            				"factorie or",
         | 
| 2002 | 
            +
            				"spec/factories/organizations.rb"
         | 
| 2003 | 
            +
            			],
         | 
| 2004 | 
            +
            			[
         | 
| 2005 | 
            +
            				"subby subsc",
         | 
| 2006 | 
            +
            				"app/models/subby/resources/subscription.rb"
         | 
| 2007 | 
            +
            			],
         | 
| 2008 | 
            +
            			[
         | 
| 2009 | 
            +
            				"factor org",
         | 
| 2010 | 
            +
            				"spec/factories/organizations.rb"
         | 
| 2011 | 
            +
            			],
         | 
| 2012 | 
            +
            			[
         | 
| 2013 | 
            +
            				"segemnt sp",
         | 
| 2014 | 
            +
            				"spec/lib/contentful/segment_spec.rb"
         | 
| 2015 | 
            +
            			],
         | 
| 2016 | 
            +
            			[
         | 
| 2017 | 
            +
            				"subscrip",
         | 
| 2018 | 
            +
            				"app/models/subscription.rb"
         | 
| 2019 | 
            +
            			],
         | 
| 2020 | 
            +
            			[
         | 
| 2021 | 
            +
            				"facto subb",
         | 
| 2022 | 
            +
            				"spec/factories/subscriptions.rb"
         | 
| 2023 | 
            +
            			],
         | 
| 2024 | 
            +
            			[
         | 
| 2025 | 
            +
            				"api v1 delete ",
         | 
| 2026 | 
            +
            				"spec/requests/api/v1/spaces/delete_spec.rb"
         | 
| 2027 | 
            +
            			],
         | 
| 2028 | 
            +
            			[
         | 
| 2029 | 
            +
            				"matcher string",
         | 
| 2030 | 
            +
            				"spec/support/matchers/string.rb"
         | 
| 2031 | 
            +
            			],
         | 
| 2032 | 
            +
            			[
         | 
| 2033 | 
            +
            				"create ",
         | 
| 2034 | 
            +
            				"app/services/space_management/create_space.rb"
         | 
| 2035 | 
            +
            			],
         | 
| 2036 | 
            +
            			[
         | 
| 2037 | 
            +
            				"matchers string",
         | 
| 2038 | 
            +
            				"spec/support/matchers/string.rb"
         | 
| 2039 | 
            +
            			],
         | 
| 2040 | 
            +
            			[
         | 
| 2041 | 
            +
            				"matchers ",
         | 
| 2042 | 
            +
            				"spec/support/matchers.rb"
         | 
| 2043 | 
            +
            			],
         | 
| 2044 | 
            +
            			[
         | 
| 2045 | 
            +
            				"rubocop.",
         | 
| 2046 | 
            +
            				".rubocop.yml"
         | 
| 2047 | 
            +
            			],
         | 
| 2048 | 
            +
            			[
         | 
| 2049 | 
            +
            				"rubocop",
         | 
| 2050 | 
            +
            				"bin/rubocop"
         | 
| 2051 | 
            +
            			],
         | 
| 2052 | 
            +
            			[
         | 
| 2053 | 
            +
            				"create spec",
         | 
| 2054 | 
            +
            				"spec/requests/api/v1/spaces/create_spec.rb"
         | 
| 2055 | 
            +
            			],
         | 
| 2056 | 
            +
            			[
         | 
| 2057 | 
            +
            				"create_spec",
         | 
| 2058 | 
            +
            				"spec/services/subby/subscription/create_spec.rb"
         | 
| 2059 | 
            +
            			],
         | 
| 2060 | 
            +
            			[
         | 
| 2061 | 
            +
            				"space manage create ",
         | 
| 2062 | 
            +
            				"app/services/space_management/create_space.rb"
         | 
| 2063 | 
            +
            			]
         | 
| 2064 | 
            +
            		],
         | 
| 2065 | 
            +
            		"width": 0.0
         | 
| 2066 | 
            +
            	},
         | 
| 2067 | 
            +
            	"select_project":
         | 
| 2068 | 
            +
            	{
         | 
| 2069 | 
            +
            		"height": 500.0,
         | 
| 2070 | 
            +
            		"last_filter": "",
         | 
| 2071 | 
            +
            		"selected_items":
         | 
| 2072 | 
            +
            		[
         | 
| 2073 | 
            +
            			[
         | 
| 2074 | 
            +
            				"gate",
         | 
| 2075 | 
            +
            				"~/code/gatekeeper/gatekeeper.sublime-project"
         | 
| 2076 | 
            +
            			],
         | 
| 2077 | 
            +
            			[
         | 
| 2078 | 
            +
            				"cmar",
         | 
| 2079 | 
            +
            				"~/code/cmark.ex/cmark.ex.sublime-project"
         | 
| 2080 | 
            +
            			],
         | 
| 2081 | 
            +
            			[
         | 
| 2082 | 
            +
            				"content",
         | 
| 2083 | 
            +
            				"~/code/contentful.ex/contentful.ex.sublime-project"
         | 
| 2084 | 
            +
            			],
         | 
| 2085 | 
            +
            			[
         | 
| 2086 | 
            +
            				"contenf",
         | 
| 2087 | 
            +
            				"~/code/contentful.ex/contentful.ex.sublime-project"
         | 
| 2088 | 
            +
            			],
         | 
| 2089 | 
            +
            			[
         | 
| 2090 | 
            +
            				"contentn",
         | 
| 2091 | 
            +
            				"~/code/contentful.ex/contentful.ex.sublime-project"
         | 
| 2092 | 
            +
            			],
         | 
| 2093 | 
            +
            			[
         | 
| 2094 | 
            +
            				"data",
         | 
| 2095 | 
            +
            				"~/code/data-segment-protocols/data-segment-protocols.sublime-project"
         | 
| 2096 | 
            +
            			],
         | 
| 2097 | 
            +
            			[
         | 
| 2098 | 
            +
            				"",
         | 
| 2099 | 
            +
            				"~/code/segment-schema-registry/segment-schema-registry.sublime-project"
         | 
| 2100 | 
            +
            			],
         | 
| 2101 | 
            +
            			[
         | 
| 2102 | 
            +
            				"cnteo",
         | 
| 2103 | 
            +
            				"~/code/contentful.ex/contentful.ex.sublime-project"
         | 
| 2104 | 
            +
            			],
         | 
| 2105 | 
            +
            			[
         | 
| 2106 | 
            +
            				"cf",
         | 
| 2107 | 
            +
            				"~/code/cf-infra-stacks/cf-infra-stacks.sublime-project"
         | 
| 2108 | 
            +
            			],
         | 
| 2109 | 
            +
            			[
         | 
| 2110 | 
            +
            				"lab",
         | 
| 2111 | 
            +
            				"~/.config/sublime-text-3/Packages/User/lab.sublime-project"
         | 
| 2112 | 
            +
            			],
         | 
| 2113 | 
            +
            			[
         | 
| 2114 | 
            +
            				"cf-infra",
         | 
| 2115 | 
            +
            				"~/code/cf-infra-stacks/cf-infra-stacks.sublime-project"
         | 
| 2116 | 
            +
            			],
         | 
| 2117 | 
            +
            			[
         | 
| 2118 | 
            +
            				"cf-infr",
         | 
| 2119 | 
            +
            				"~/code/cf-infra-stacks/cf-infra-stacks.sublime-project"
         | 
| 2120 | 
            +
            			],
         | 
| 2121 | 
            +
            			[
         | 
| 2122 | 
            +
            				"infr",
         | 
| 2123 | 
            +
            				"~/code/cf-infra-stacks/cf-infra-stacks.sublime-project"
         | 
| 2124 | 
            +
            			],
         | 
| 2125 | 
            +
            			[
         | 
| 2126 | 
            +
            				"conten",
         | 
| 2127 | 
            +
            				"~/code/contentful.ex/contentful.ex.sublime-project"
         | 
| 2128 | 
            +
            			]
         | 
| 2129 | 
            +
            		],
         | 
| 2130 | 
            +
            		"width": 380.0
         | 
| 2131 | 
            +
            	},
         | 
| 2132 | 
            +
            	"select_symbol":
         | 
| 2133 | 
            +
            	{
         | 
| 2134 | 
            +
            		"height": 0.0,
         | 
| 2135 | 
            +
            		"last_filter": "",
         | 
| 2136 | 
            +
            		"selected_items":
         | 
| 2137 | 
            +
            		[
         | 
| 2138 | 
            +
            		],
         | 
| 2139 | 
            +
            		"width": 0.0
         | 
| 2140 | 
            +
            	},
         | 
| 2141 | 
            +
            	"selected_group": 0,
         | 
| 2142 | 
            +
            	"settings":
         | 
| 2143 | 
            +
            	{
         | 
| 2144 | 
            +
            	},
         | 
| 2145 | 
            +
            	"show_minimap": true,
         | 
| 2146 | 
            +
            	"show_open_files": false,
         | 
| 2147 | 
            +
            	"show_tabs": true,
         | 
| 2148 | 
            +
            	"side_bar_visible": true,
         | 
| 2149 | 
            +
            	"side_bar_width": 320.0,
         | 
| 2150 | 
            +
            	"status_bar_visible": true,
         | 
| 2151 | 
            +
            	"template_settings":
         | 
| 2152 | 
            +
            	{
         | 
| 2153 | 
            +
            	}
         | 
| 2154 | 
            +
            }
         |