brut 0.21.0 → 0.22.0.pre.1

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: 4ec3fc09b37986905e646672526c9ed055bcca8513661da8d77778ab80ae442a
4
- data.tar.gz: 72e19213998b788e17325c23da43c9848473affe64ede84fb9a98415ca11d66e
3
+ metadata.gz: ae86140851e4714417c118e6cf5560c060879fbe04e7051f5bc8dcc38ca36b80
4
+ data.tar.gz: 5984ae3588285b63de340d879fc134d5c98a14bef281afe19a68c1a23046e906
5
5
  SHA512:
6
- metadata.gz: 2c773cc9edb2db1bf325a8d4eae907b290cbf47f36016645d7093b2838d841c96c334e029c2cdd895785b3e1b3eaaaa4e35f93735decdf38b9b46d4358e6ab0a
7
- data.tar.gz: 991e016a4c4988e529cf0dea5b3b7c7ab4edafe7e5d0b575ad15657fe48eea11f6c029f98caebfff3102abff260fd259aac680f83dfaf2f9fdb26aaa179a1f01
6
+ metadata.gz: 1076d7440d1b17199f82c0f371e726f2c7fb9a42b9763c9df2e761bdba974e6ad395eb6ee16ad3f0e818cf638b15520e501ab77b0a15ca7f1cfff06ee6299c1c
7
+ data.tar.gz: ac8a4de20c8e30ac58927cfdebfbb5d1b7605107bc1ffa3aeae4981cbfc33aab1f78895c38c6a13a4352c1c33492c2f1ae11113dd9e1c65a26da571a9df0c3ba
@@ -36,7 +36,7 @@ class Brut::CLI::Apps::Deploy::DeployConfig
36
36
  # Generally, do not override this since it configures your
37
37
  # web process. Override {#additional_processes} instead.
38
38
  def processes = [
39
- process_description("web", ["bundle", "exec", "bin/run"])
39
+ process_description("web", ["bundle", "exec", "bin/run"]),
40
40
  ] + (additional_processes || [])
41
41
 
42
42
  private def process_description(name,cmd)
@@ -83,7 +83,7 @@ class Brut::CLI::Apps::Deploy < Brut::CLI::Commands::BaseCommand
83
83
  def registry_hostname = "registry.heroku.com"
84
84
 
85
85
  def processes = super + [
86
- process_description("release", "bin/release")
86
+ process_description("release", "bin/release"),
87
87
  ]
88
88
 
89
89
  def each_dockerfile(&block)
@@ -214,7 +214,7 @@ class Brut::CLI::Apps::Deploy < Brut::CLI::Commands::BaseCommand
214
214
  wrong[process_description] ||= {}
215
215
  wrong[process_description][:image] = {
216
216
  expected: expected_image_name,
217
- actual: image
217
+ actual: image,
218
218
  }
219
219
  failed = true
220
220
  end
@@ -222,7 +222,7 @@ class Brut::CLI::Apps::Deploy < Brut::CLI::Commands::BaseCommand
222
222
  wrong[process_description] ||= {}
223
223
  wrong[process_description][:command] = {
224
224
  expected: process_description.cmd,
225
- actual: cmd
225
+ actual: cmd,
226
226
  }
227
227
  failed = true
228
228
  end
data/lib/brut/version.rb CHANGED
@@ -1,4 +1,12 @@
1
1
  module Brut
2
2
  # @!visibility private
3
- VERSION = "0.21.0"
3
+ #
4
+ # Gems:
5
+ # Semantic Versioning MAJOR.MINOR.PATCH
6
+ # Or pre-release X.Y.Z.pre.Q
7
+ #
8
+ # Node Modules:
9
+ # Semantic Versioning MAJOR.MINOR.PATCH
10
+ # Or pre-release X.Y.Z-pre.Q
11
+ VERSION = "0.22.0.pre.1"
4
12
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: brut
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.21.0
4
+ version: 0.22.0.pre.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - David Bryant Copeland
@@ -848,16 +848,16 @@ require_paths:
848
848
  - lib
849
849
  required_ruby_version: !ruby/object:Gem::Requirement
850
850
  requirements:
851
- - - ">="
851
+ - - "~>"
852
852
  - !ruby/object:Gem::Version
853
- version: '0'
853
+ version: '4.0'
854
854
  required_rubygems_version: !ruby/object:Gem::Requirement
855
855
  requirements:
856
856
  - - ">="
857
857
  - !ruby/object:Gem::Version
858
858
  version: '0'
859
859
  requirements: []
860
- rubygems_version: 4.0.8
860
+ rubygems_version: 4.0.14
861
861
  specification_version: 4
862
862
  summary: Web Framework Built around Ruby, Web Standards, Simplicity, and Object-Orientation
863
863
  test_files: []