smartmachine 1.2.0.dev → 1.2.1

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: 3d02cc8e054d7716fda6e487f5964c2c0e47a604e664be9cbcc77436ac1b8cc3
4
- data.tar.gz: e476480bd9b755c84f4996e86dbc99e1d24d96b1139a9fd7bb14c4ab7b24cc29
3
+ metadata.gz: 833d8ed724136d6baf6c1fadd3e0fe8522d52560b5e6688726724b38e81b707f
4
+ data.tar.gz: b58f169a8a460527a819dc15d3cbdc701ba27ef14e5f630065fcff9b1b51e9b8
5
5
  SHA512:
6
- metadata.gz: 06ad0c9df3fde28ce64a629d2caa597cd84838eed893a3ce7b835bc29715f8b4f2d0764b8e32bb6593f255010519d342f60593ae5caf4417802953ea4e47d287
7
- data.tar.gz: 6eadb0a1ba55a868f738dd7cb5ccfedda02247406d9d0fadc8f8b18918a43a9859164fd9844921bd377f0e4a4e4b4ba6c9890ca68bbbd494c25459b93c53c063
6
+ metadata.gz: af4e6122341a3c96a3afe4076734c84e10e912872f7cc7288aeb771b6349161a91f6746cd9131f42cab30b70b935d1ed998d2c3166439decae3a1f03131512c7
7
+ data.tar.gz: 0ad34213b75873b2cd7f9b3b61566b13a7ba804955ce18185adac6ce71869f3f3e5e857e47d5e049e557f1a624d0c62e487f7fe4db12be230355811769d413e3
@@ -93,7 +93,16 @@ module SmartMachine
93
93
  mupdf \
94
94
  mupdf-tools \
95
95
  poppler-utils && \
96
- rm -rf /var/lib/apt/lists/*
96
+ rm -rf /var/lib/apt/lists/* && \
97
+ # ImageMagick 7. Remove this after its dependency is gone from ruby on rails.
98
+ cd /opt && wget https://download.imagemagick.org/archive/ImageMagick-7.1.1-29.tar.gz && \
99
+ tar xvzf ImageMagick-7.1.1-29.tar.gz && \
100
+ cd ImageMagick-7.1.1-29 && \
101
+ ./configure && \
102
+ make && \
103
+ make install && \
104
+ ldconfig /usr/local/lib && \
105
+ magick -version
97
106
 
98
107
  CMD ["smartmachine", "buildpacker", "packer", "rails"]
99
108
  DOCKERFILE
@@ -74,7 +74,8 @@ module SmartMachine
74
74
  "--env PASSWORD=#{@password}",
75
75
  "--publish='2223:2223'", # TODO: Remove this published port and move it behind the reverse proxy when ready.
76
76
  "--volume='#{@name}-home:/home'",
77
- "--volume='#{@home_dir}/smartmachine/grids/terminal/#{@name}/backups:/root/backups'",
77
+ "--volume='#{@home_dir}/smartmachine/grids/terminal/#{@name}/backups:/root/backups'", # TODO: Do not volumize backups folder by default. Give option in the config file to decide what volume should be exposed from host to terminal.
78
+ "--volume='#{@home_dir}/smartmachine/apps/containers:/mnt/smartmachine/apps/containers'", # TODO: Do not volumize containers folder by default. Give option in the config file to decide what volume should be exposed from host to terminal.
78
79
  "--init",
79
80
  "--restart='always'",
80
81
  "--network='nginx-network'",
@@ -17,8 +17,8 @@ module SmartMachine
17
17
  module VERSION
18
18
  MAJOR = 1
19
19
  MINOR = 2
20
- TINY = 0
21
- PRE = "dev"
20
+ TINY = 1
21
+ PRE = nil
22
22
 
23
23
  STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
24
24
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: smartmachine
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.0.dev
4
+ version: 1.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - plainsource
8
- autorequire:
8
+ autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2023-10-23 00:00:00.000000000 Z
11
+ date: 2024-03-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: net-ssh
@@ -417,9 +417,9 @@ licenses:
417
417
  metadata:
418
418
  homepage_uri: https://github.com/plainsource/smartmachine
419
419
  bug_tracker_uri: https://github.com/plainsource/smartmachine/issues
420
- changelog_uri: https://github.com/plainsource/smartmachine/releases/tag/v1.2.0.dev
421
- source_code_uri: https://github.com/plainsource/smartmachine/tree/v1.2.0.dev
422
- post_install_message:
420
+ changelog_uri: https://github.com/plainsource/smartmachine/releases/tag/v1.2.1
421
+ source_code_uri: https://github.com/plainsource/smartmachine/tree/v1.2.1
422
+ post_install_message:
423
423
  rdoc_options: []
424
424
  require_paths:
425
425
  - lib
@@ -435,7 +435,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
435
435
  version: 1.8.11
436
436
  requirements: []
437
437
  rubygems_version: 3.1.6
438
- signing_key:
438
+ signing_key:
439
439
  specification_version: 4
440
440
  summary: Full-stack deployment framework for Rails.
441
441
  test_files: []