stack-service-base 0.0.45 → 0.0.47

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a8dd8e95b44e414e82e74ca8564e57ebcc7fe6b060c468fca14ed3f72d60e438
4
- data.tar.gz: 9e856f0ba26407b178bdbef0293001c89f5d74e12f8cd50670e1002ac83d29db
3
+ metadata.gz: 772fd7c0c9f991ee90f8d3e4f62d7763360c577b8bda317beb366687f0e770de
4
+ data.tar.gz: 0aff2901b22f703ce44e44d8402af7b1e5060b79e87bca1813b6358862408b65
5
5
  SHA512:
6
- metadata.gz: b79b0985c03a2c9613143c4c06fa9758b24dcc7fc73acb343666a4f10b64e0ace50b812189778b5f4f86232c863db1c4d2cf59423155a20841ed8cc9f25eb02c
7
- data.tar.gz: be2a3866a0aa3b8278a28226551dd1c8ea6e445a366a52e10af7831808f085a64a7104d35a031d9be049579ac54d683954d8f0bdf3e5bfc45761afcbb83c2dbe
6
+ metadata.gz: 2034411ecb9e3cbc0568f761ed67dbae53a0057fd138411a7637d0ef2ee8ca8f472209e1f8918b9a5a1ddc0e8191f3457b05bf280bc153bf153f280cdb23f7dc
7
+ data.tar.gz: ffc9b94f26a1ee42b7b133ac29d0c73e5678aa65b09a87f023a62c03a6b9f83109f7e324cfe2a8d5188b56943f7341fedb940c1707fedb934462e493b135a18f
@@ -1,6 +1,6 @@
1
1
  FROM ruby:3.4.4-slim-bookworm AS base
2
2
 
3
- RUN apt update && apt --fix-missing install -y build-essential pkg-config libpq-dev curl cmake libssl-dev \
3
+ RUN apt update && apt --fix-missing install -y build-essential pkg-config libpq-dev curl cmake libssl-dev libyaml-dev\
4
4
  && rm -rf /var/lib/apt/lists/*
5
5
 
6
6
  RUN echo 'gem: --no-document' >> ~/.gemrc
@@ -22,7 +22,7 @@ FROM base AS tests
22
22
  RUN bundle exec rspec
23
23
 
24
24
  FROM ruby:3.4.4-slim-bookworm AS deploy
25
- RUN apt update && apt install --fix-missing -y bash curl libssl-dev bash curl wget libpq-dev \
25
+ RUN apt update && apt install --fix-missing -y bash curl libssl-dev bash curl wget libpq-dev libyaml-0-2\
26
26
  && rm -rf /var/lib/apt/lists/*
27
27
 
28
28
  COPY --from=base /usr/local/bundle /usr/local/bundle
@@ -198,7 +198,7 @@ module RackHelpers
198
198
  headers.merge!(
199
199
  # 'Access-Control-Allow-Origin' => "#{referer.scheme}://#{referer.host}",
200
200
  'Access-Control-Allow-Origin' => '*',
201
- 'Access-Control-Allow-Methods' => 'GET, PUT, POST, DELETE, HEAD, OPTIONS',
201
+ 'Access-Control-Allow-Methods' => 'GET, PUT, POST, PATCH, DELETE, HEAD, OPTIONS',
202
202
  'Access-Control-Allow-Headers' => '*',
203
203
  'Access-Control-Allow-Credentials' => 'true')
204
204
  [code, headers, body]
@@ -1,3 +1,3 @@
1
1
  module StackServiceBase
2
- VERSION = '0.0.45'
2
+ VERSION = '0.0.47'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: stack-service-base
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.45
4
+ version: 0.0.47
5
5
  platform: ruby
6
6
  authors:
7
7
  - Artyom B
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-10-16 00:00:00.000000000 Z
11
+ date: 2025-10-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rack