lcms-engine 0.5.3 → 0.5.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.
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: lcms-engine
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.3
4
+ version: 0.5.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Alexander Kuznetsov
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2022-12-13 00:00:00.000000000 Z
13
+ date: 2022-12-30 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: activejob-retry
@@ -2016,7 +2016,6 @@ files:
2016
2016
  - db/seeds/development/users.seeds.rb
2017
2017
  - db/seeds/download_categories.seeds.rb
2018
2018
  - db/seeds/subjects.seeds.rb
2019
- - docker-compose.ror4.yml
2020
2019
  - docker-compose.yml
2021
2020
  - docs/env-variables.md
2022
2021
  - docs/google-cloud-platform-setup.md
@@ -1,32 +0,0 @@
1
- version: '3'
2
- services:
3
- db:
4
- image: postgres:11.5-alpine
5
- ports:
6
- - 5432:5432
7
- volumes:
8
- - postgres:/var/lib/postgresql/data
9
-
10
- redis:
11
- image: redis:5.0.5-alpine
12
- ports:
13
- - 6379
14
-
15
- app-ror4:
16
- image: lcms-engine:ror4
17
- # Used to install native gem which solves build errors for nokogumbo and other gems
18
- command: bash -c "gem install nokogiri && bundle install && yarn && tail -f /dev/null"
19
- env_file:
20
- - spec/dummy/.env.docker
21
- environment:
22
- REDIS_URL: redis://redis:6379/1
23
- volumes:
24
- - .:/app
25
- - bundle-ror4:/usr/local/bundle
26
- depends_on:
27
- - db
28
- - redis
29
-
30
- volumes:
31
- bundle-ror4:
32
- postgres: