trokko 0.2.0 → 0.2.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: 66ea7fb21c0fcfa9f41f7bff08b4d3cbc55353a281ad0fe229dbfa25e1680673
4
- data.tar.gz: c4f79262437fb593cee9ce35f168791de1c59ccd7da9ecce76224741ae235ddd
3
+ metadata.gz: 40ab026fa049ebc4554e39b9a698dea079913f3df1c28934c295ffa6e1e3f35f
4
+ data.tar.gz: bca577d63fc793a20f90b909350d86fa3c90bcea674779c4693df99b06e1b0f5
5
5
  SHA512:
6
- metadata.gz: 6da449d463753931d070908a0a52033842fcb2cb1325d5d6640ea11fcb7b7dbbb0e4b72473b94793d983b63119ae923580c02a5d6ab15871d39907cca8ed87b6
7
- data.tar.gz: 2f620fd05c86246c7e895e03f9059cf590662cd04ffd34d9f6299af96c5aada134b15493402024725fac67cd46fde2e141dd6fd7b43a106eb9b27ddc9aafe3a4
6
+ metadata.gz: d6a0dc5a3e3dbe63b6514c979e020002a0adf74271a7e5cddf8a014c5507a10b8f9c9bcd3b3f6bf3bc8ac5b5d0501f36600eb6975e57e2dd15aa219469eaead1
7
+ data.tar.gz: d79ca2912c10d494199c6c228780aba0e2946c170fd24d14533d82d4c267a62cc3bdcc56e6f186f586872223a468fff73b3cf930e606112ebd485124597f3d8c
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Changelog
2
2
 
3
+ ## [v0.2.1](https://github.com/snaka/trokko/tree/v0.2.1) (2022-07-04)
4
+
5
+ [Full Changelog](https://github.com/snaka/trokko/compare/v0.2.0...v0.2.1)
6
+
7
+ **Merged pull requests:**
8
+
9
+ - Bump version to v0.2.1 [\#24](https://github.com/snaka/trokko/pull/24) ([snaka](https://github.com/snaka))
10
+ - Use `next` for early return from `inside` block [\#22](https://github.com/snaka/trokko/pull/22) ([snaka](https://github.com/snaka))
11
+
3
12
  ## [v0.2.0](https://github.com/snaka/trokko/tree/v0.2.0) (2022-07-01)
4
13
 
5
14
  [Full Changelog](https://github.com/snaka/trokko/compare/v0.1.0...v0.2.0)
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- trokko (0.2.0)
4
+ trokko (0.2.1)
5
5
  thor (~> 1.2.0)
6
6
 
7
7
  GEM
data/lib/trokko/cli.rb CHANGED
@@ -84,7 +84,7 @@ module Trokko
84
84
  raise Thor::InvocationError, '[ERROR] Failed to generate rails application'
85
85
  end
86
86
 
87
- return if File.stat('config').uid == uid
87
+ next if File.stat('config').uid == uid
88
88
 
89
89
  unless system(
90
90
  "docker compose run --no-deps --entrypoint '' --rm app" \
@@ -106,7 +106,7 @@ module Trokko
106
106
 
107
107
  say 'Building docker image...', :yellow
108
108
  inside name do
109
- return if system('docker compose build')
109
+ next if system('docker compose build')
110
110
 
111
111
  say 'Stop executing task', :red
112
112
  raise Thor::InvocationError, '[ERROR] Failed to build docker image'
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Trokko
4
- VERSION = '0.2.0'
4
+ VERSION = '0.2.1'
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: trokko
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - S.Nakamatsu
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2022-07-01 00:00:00.000000000 Z
11
+ date: 2022-07-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: thor