mkbrut 0.8.0 → 0.9.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: 570e390eea24269313599e548263d5ba468b8b9048bfd0c7d60db4aa4aee9819
4
- data.tar.gz: c8d3ac5cecab0a1618ab9f33b098a26d0f7d30c3c492c2d03cacfcfd2e129fc0
3
+ metadata.gz: 15a265ad098a78ff550c2070a4c848521d1af830571fdef6c8a1e2c801855d32
4
+ data.tar.gz: 05bd74e60a61808269c6a2e011d4416a611ce6affa7003029388d981e890f4f5
5
5
  SHA512:
6
- metadata.gz: 4857984702b915260ebbd9649b8d78b479a54bd8c7411b8989d75e7ac67e6649ca9542e3c7eeba7c1523ef51e4259811e472bd1dde9819a8a643e6f054dde786
7
- data.tar.gz: 588b4ad9eb4209ae16de97ac77154cf9ec085e96548522f42c50df0ddfe7415866b44ee7f9aa9efc2d854bd7d10e9b86d7f65bf0e234435ae48e4033568b8ad4
6
+ metadata.gz: 4bd0eca8f41441576eb52de2fb4a669a4c5e5412a08c78c39b834c63007b296803714e3056256cc90c24d8a377d4c31d58ebeda6b3a50c5869d44146d6c4fcb3
7
+ data.tar.gz: d5d4101aa50995f2d60f1ddccb0f5219f56302390d02e992611b087a332c46919c7c35be0029107c2b008ca7bee548cf940890338f08088a5e5debf90f8a4c6f
data/lib/mkbrut/app.rb CHANGED
@@ -34,7 +34,7 @@ module MKBrut
34
34
  app_options:,
35
35
  current_dir:,
36
36
  templates_dir:,
37
- )
37
+ ),
38
38
  ]
39
39
  if app_options.demo?
40
40
  @segments << MKBrut::Segments::Demo.new(
data/lib/mkbrut/cli.rb CHANGED
@@ -100,7 +100,7 @@ module MKBrut
100
100
  options[:app_name] = MKBrut::AppName.new(args.first)
101
101
  options[:app_id] = options[:'app-id']
102
102
  options[:dry_run] = !!options[:'dry-run']
103
- MKBrut::AppOptions.new(**options.merge(versions:))
103
+ MKBrut::AppOptions.new(**options, versions:)
104
104
  end
105
105
 
106
106
  end
@@ -24,7 +24,7 @@ class MKBrut::Segments::Heroku < MKBrut::Base
24
24
  # These are generated by bin/deploy
25
25
  deploy/Dockerfile.*
26
26
  }
27
- )
27
+ ),
28
28
  ]
29
29
  end
30
30
  end
@@ -1,3 +1,3 @@
1
1
  module MKBrut
2
- VERSION = "0.8.0"
2
+ VERSION = "0.9.1"
3
3
  end
@@ -114,7 +114,7 @@
114
114
  has_interpolations: "Test %{interp} Test",
115
115
  has_pluralizations: {
116
116
  one: "Once!",
117
- other: "More than once!"
117
+ other: "More than once!",
118
118
  },
119
119
  has_pluralizations_and_zero: {
120
120
  zero: "ZERO",
@@ -123,6 +123,6 @@
123
123
  },
124
124
  simple1: "SIMPLE1",
125
125
  simple2: "SIMPLE2",
126
- }
126
+ },
127
127
  },
128
128
  }
@@ -12,7 +12,7 @@
12
12
  pages: { # Page-specific messages - this key is relied-upon by Brut to exist
13
13
  HomePage: {
14
14
  title: "Welcome!",
15
- }
15
+ },
16
16
  },
17
17
  components: { # Component-specific messages - this key is relied-upon by Brut to exist
18
18
  },
@@ -82,7 +82,7 @@ def setup(update_gems:,update_node:)
82
82
  help
83
83
  end
84
84
 
85
- def setup_dot_env_local()
85
+ def setup_dot_env_local
86
86
 
87
87
  dot_env = ROOT_DIR / ".env.development"
88
88
  if !File.exist?(dot_env)
@@ -12,7 +12,7 @@ class FlashComponent < AppComponent
12
12
  "pa-3",
13
13
  "ba",
14
14
  "br-3",
15
- "tc"
15
+ "tc",
16
16
  ]
17
17
  COLORS = [
18
18
  "%{color}-300",
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mkbrut
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.0
4
+ version: 0.9.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dave Copeland