platformos-check 0.2.1 → 0.2.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b560f1b22edc85eadceb664db3c5cf1d0e844c33f54bf8bf8c15b288ac78648c
4
- data.tar.gz: 49b94ae62cfa63cbc5308ac6ad20226ca95fa475378233d19ec2c67da501688c
3
+ metadata.gz: d317404f687b20085ee3bd3772b83b791beaac299895868791b1a0c9d1379a0f
4
+ data.tar.gz: 503ef865bed91af1a1075e19cbde4f413047da2e1f91254f6f0146ee822b4df4
5
5
  SHA512:
6
- metadata.gz: 267f9d075571e75979a8026a3c309ebb1aa0888d2f8ea1d6e4df8476358e28b0ff9e16272267fdae93f2c9f48d1aa47aaaa4aecf41c2b288804314de509534e8
7
- data.tar.gz: 748a49ba89dfbf6444ef427f22c1e26c53bd9caac526743297a2a4063c1ebe20f6766c3fdbf8290fb70534699719b858dd85e631b3637c3fb3155382049845e7
6
+ metadata.gz: 9809a013343529578a1c5b1fe1f045569173dd05bc60cb3a475ef9e9c8563a9dac5d3fdb934ea030806d51d5e59381f23b0712db435fb3107282d9bfdb0b5d34
7
+ data.tar.gz: '0917811b08472cf1f8abbc0845044b62250a8a7d04c75aafbb47a3e5d97779098ff5c24d9bd932b447c47a558cab8a5916d225d0f810b6d82466bc09adc06fea'
data/CHANGELOG.md CHANGED
@@ -1,3 +1,8 @@
1
+ v0.2.2 / 2023-09-15
2
+ ==================
3
+
4
+ * Do not crash when directory is copied to partials path
5
+
1
6
  v0.2.1 / 2023-09-14
2
7
  ==================
3
8
 
@@ -12,10 +12,10 @@ module PlatformosCheck
12
12
  GRAPHQL_REGEX = %r{\A(?-mix:^/?((marketplace_builder|app)/|modules/(.+)(private|public|marketplace_builder|app)/)?)(graph_queries|graphql)s?/(.+)\.graphql\z}
13
13
 
14
14
  MIGRATIONS_REGEX = %r{\A(?-mix:^/?((marketplace_builder|app)/|modules/(.+)(private|public|marketplace_builder|app)/)?)migrations/(.+)\.liquid\z}
15
- PAGES_REGEX = %r{\A(?-mix:^/?((marketplace_builder|app)/|modules/(.+)(private|public|marketplace_builder|app)/)?)(pages|views/pages)/(.+)}
16
- PARTIALS_REGEX = %r{\A(?-mix:^/?((marketplace_builder|app)/|modules/(.+)(private|public|marketplace_builder|app)/)?)(views/partials|lib)/(.+)}
15
+ PAGES_REGEX = %r{\A(?-mix:^/?((marketplace_builder|app)/|modules/(.+)(private|public|marketplace_builder|app)/)?)(pages|views/pages)/(.+).liquid\z}
16
+ PARTIALS_REGEX = %r{\A(?-mix:^/?((marketplace_builder|app)/|modules/(.+)(private|public|marketplace_builder|app)/)?)(views/partials|lib)/(.+)\.liquid\z}
17
17
  FORMS_REGEX = %r{\A(?-mix:^/?((marketplace_builder|app)/|modules/(.+)(private|public|marketplace_builder|app)/)?)(form_configurations|forms)/(.+)\.liquid\z}
18
- LAYOUTS_REGEX = %r{\A(?-mix:^/?((marketplace_builder|app)/|modules/(.+)(private|public|marketplace_builder|app)/)?)(views/layouts)/(.+)}
18
+ LAYOUTS_REGEX = %r{\A(?-mix:^/?((marketplace_builder|app)/|modules/(.+)(private|public|marketplace_builder|app)/)?)(views/layouts)/(.+).liquid\z}
19
19
  SCHEMA_REGEX = %r{\A(?-mix:^/?((marketplace_builder|app)/|modules/(.+)(private|public|marketplace_builder|app)/)?)(custom_model_types|model_schemas|schema)/(.+)\.yml\z}
20
20
  SMSES_REGEX = %r{\A(?-mix:^/?((marketplace_builder|app)/|modules/(.+)(private|public|marketplace_builder|app)/)?)(notifications/sms_notifications|smses)/(.+)\.liquid\z}
21
21
  USER_SCHEMA_REGEX = %r{\A(?-mix:^/?((marketplace_builder|app)/)?)user.yml}
@@ -17,7 +17,7 @@ module PlatformosCheck
17
17
  CHECK_ON_OPEN => null_coalesce(@capabilities.initialization_option(CHECK_ON_OPEN), true),
18
18
  CHECK_ON_SAVE => null_coalesce(@capabilities.initialization_option(CHECK_ON_SAVE), true),
19
19
  CHECK_ON_CHANGE => null_coalesce(@capabilities.initialization_option(CHECK_ON_CHANGE), true),
20
- ONLY_SINGLE_FILE => null_coalesce(@capabilities.initialization_option(ONLY_SINGLE_FILE), false)
20
+ ONLY_SINGLE_FILE => null_coalesce(@capabilities.initialization_option(ONLY_SINGLE_FILE), true)
21
21
  }
22
22
  end
23
23
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module PlatformosCheck
4
- VERSION = "0.2.1"
4
+ VERSION = "0.2.2"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: platformos-check
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.1
4
+ version: 0.2.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Piotr Bliszczyk
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: exe
12
12
  cert_chain: []
13
- date: 2023-09-14 00:00:00.000000000 Z
13
+ date: 2023-09-15 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: graphql