terraspace-bundler 0.3.3 → 0.3.4

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: 2837b88a7aebfc3da49d6cd0fb1b620bf83466ea375ff238cb8a854ad98218b8
4
- data.tar.gz: d7c0637b9275fc66bc7865fe2fbf87671bb9257092c6de7b616f9238defbadbe
3
+ metadata.gz: 120ab895b524973b2a5a6367f76d8d1f8794cbc5957abae90ab11532833b8620
4
+ data.tar.gz: 55c69457dbd4fd1bdfce68b1432bcab70fea3d28805f28fc06961fe1c534c149
5
5
  SHA512:
6
- metadata.gz: f0db0f6f68bb6bca532ac9fa6c1eefbcf9620324b39be2a52ae4b915faf2e9c5f5645f72aa96398b9d1624400930351273615d6916c588e8d4b53e25fec66441
7
- data.tar.gz: 812d72dc1cfcd4039b08487574e7e4dced650e7ede4f119e43b45968732ea9203291b5823500b8db4b541eb1fff33687f3d82a7d5a92462f58df5d98ce8c0ba4
6
+ metadata.gz: 024b2f949df4eccfbdd5eaa7ce5b56a60ffc8f48f98044edd38408bd6f87a6f1e87f6b4fbcab54871884489c8742a7a92586eea27233e169cd2ea06c154bb8dc
7
+ data.tar.gz: 2270365d4fea228f1170601e2b02e54e9ccad230ed1dee044b9db134c0bd957f0e50fee715530ec9b1e976f174078e183cb0d598ca24eaf92ebe7f4ccc2d53e9
data/CHANGELOG.md CHANGED
@@ -3,6 +3,9 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  This project *loosely tries* to adhere to [Semantic Versioning](http://semver.org/), even before v1.0.
5
5
 
6
+ ## [0.3.4] - 2021-04-15
7
+ - [#11](https://github.com/boltops-tools/terraspace-bundler/pull/11) improve registry dectection and gitlab repository support
8
+
6
9
  ## [0.3.3] - 2021-02-24
7
10
  - [#8](https://github.com/boltops-tools/terraspace-bundler/pull/8) fix https sources
8
11
  - [#9](https://github.com/boltops-tools/terraspace-bundler/pull/9) Git checkout retry with v
@@ -44,6 +44,7 @@ class TerraspaceBundler::Mod
44
44
  # Examples:
45
45
  # mod "pet", source: "https://github.com/tongueroo/pet"
46
46
  # mod "pet", source: "git@github.com:tongueroo/pet"
47
+ # mod "pet", source: "git@gitlab.com:foo/tongueroo/pet"
47
48
  @source
48
49
  else
49
50
  # Examples:
@@ -58,7 +59,7 @@ class TerraspaceBundler::Mod
58
59
  end
59
60
 
60
61
  def registry?
61
- !@source.nil? && @source.split('/').size == 3
62
+ !@source.nil? && !@source.include?(':') && @source.split('/').size == 3
62
63
  end
63
64
 
64
65
  def registry
@@ -1,3 +1,3 @@
1
1
  module TerraspaceBundler
2
- VERSION = "0.3.3"
2
+ VERSION = "0.3.4"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: terraspace-bundler
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.3
4
+ version: 0.3.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tung Nguyen
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2021-02-24 00:00:00.000000000 Z
11
+ date: 2021-04-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport