devbox_launcher 1.0.0 → 1.1.0

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: f36523ab1ba2737746a95069dc0bd49e1e182b9449ff8af6ad7ba2c8eba6fac5
4
- data.tar.gz: 4d9ec6e2cf0df27fe3ae57d2860312272140a238ab43b460dc1b8b706982f77b
3
+ metadata.gz: c1fc786af61f55bf9d437475367c702ffd752c96e4bb00c2bd033e45eb939878
4
+ data.tar.gz: 598cba8e569b9a44311dd70e938ef62659574fd110efa764c644db96c2bad2c0
5
5
  SHA512:
6
- metadata.gz: 272f2e79480f5439a98797833bb21709ca4137a04f3ea46b0a70b3c473ccac66a0e53e688699923d2a71fed52e11bc704f3ff08fbefb41d86888bc35388251d5
7
- data.tar.gz: 0321766ede0a716eb6e3d3745213ea2e810cfd74b3fde853dc98627354ac92f610e5983e50f043812eab0d6fb017784801b0780d204a6640ef5dbc29b22194dd
6
+ metadata.gz: b3724e11198243e0a29b9a902e09902a040d0b5011da0d2e6db23a37696ba07a39109f602bb68e1a09456e350eca62d4eb37b8cb87e984927acf7f880a41e6f3
7
+ data.tar.gz: 4692fd01fb512aafdbdc9674c911e73128ae4bb7b7e1b270b98ae706065ee88e4efcedf40776136db86060839acf0aec1d24b9f139467e18991d9afa5c2dc8b9
data/CHANGELOG.md CHANGED
@@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file.
4
4
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
5
5
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6
6
 
7
+ ## [1.1.0] - 2022-04-18
8
+ ### Changed
9
+ - Ignore version control system directories like `.git`. You will be unable to use git in the remote machine.
10
+ - Ignore `.DS_Store` files
11
+
7
12
  ## [1.0.0] - 2021-12-20
8
13
  ### Changed
9
14
  - Update compatibility with mutagen 0.12.0. Drops support for previous versions
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- devbox_launcher (1.0.0)
4
+ devbox_launcher (1.1.0)
5
5
  activesupport (~> 6.0)
6
6
  bcrypt_pbkdf (~> 1.0)
7
7
  ed25519 (~> 1.2)
@@ -14,7 +14,7 @@ PATH
14
14
  GEM
15
15
  remote: https://rubygems.org/
16
16
  specs:
17
- activesupport (6.1.4.4)
17
+ activesupport (6.1.5)
18
18
  concurrent-ruby (~> 1.0, >= 1.0.2)
19
19
  i18n (>= 1.6, < 2)
20
20
  minitest (>= 5.1)
@@ -23,10 +23,10 @@ GEM
23
23
  bcrypt_pbkdf (1.1.0)
24
24
  byebug (11.0.1)
25
25
  coderay (1.1.2)
26
- concurrent-ruby (1.1.9)
26
+ concurrent-ruby (1.1.10)
27
27
  diff-lcs (1.3)
28
- ed25519 (1.2.4)
29
- i18n (1.8.11)
28
+ ed25519 (1.3.0)
29
+ i18n (1.10.0)
30
30
  concurrent-ruby (~> 1.0)
31
31
  method_source (0.9.2)
32
32
  minitest (5.15.0)
@@ -54,10 +54,10 @@ GEM
54
54
  rspec-support (3.9.0)
55
55
  ruby-watchman (0.0.2)
56
56
  ssh-config (0.1.3)
57
- thor (1.1.0)
57
+ thor (1.2.1)
58
58
  tzinfo (2.0.4)
59
59
  concurrent-ruby (~> 1.0)
60
- zeitwerk (2.5.1)
60
+ zeitwerk (2.5.4)
61
61
 
62
62
  PLATFORMS
63
63
  ruby
@@ -38,6 +38,8 @@ module DevboxLauncher
38
38
  config.alpha_dir,
39
39
  "#{hostname}:#{config.beta_dir}",
40
40
  "--label=#{label}",
41
+ "--ignore-vcs",
42
+ "--ignore=.DS_Store"
41
43
  ]
42
44
  str << "--watch-mode-alpha=no-watch" if linux?
43
45
  str.join(" ")
@@ -1,3 +1,3 @@
1
1
  module DevboxLauncher
2
- VERSION = "1.0.0"
2
+ VERSION = "1.1.0"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: devbox_launcher
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ramon Tayag
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-12-20 00:00:00.000000000 Z
11
+ date: 2022-04-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler