ufo 3.3.0 → 3.3.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: ac7cdba5f774e28b984583b641ec54bcf397196c7b78f66b3bbc1ebbabfc90a5
4
- data.tar.gz: f45b5dac8cc1192d0b08fb790ae2bb71351c25b89eeb452966851ee3250d27cd
3
+ metadata.gz: 480370e11a41c52b4621077e0fa0aaaa80351468c4d14f8d84239399ffd0f321
4
+ data.tar.gz: 1f5622d7faf49ae0fa2dd038b6ba221306805fb4d7a12406f9ead4426e78df23
5
5
  SHA512:
6
- metadata.gz: 160f327e3b9b6afc437dc79969f08e492261c9b19e2634491321052060bd6920b4f7f3a14f869708d518e18db997447a4418e1ebb8656f8fafe0b1221692adeb
7
- data.tar.gz: 883fe2190339fe579b2c85a616c75704474b667591c1bee0411110f3e1fb24058f30727c3a9a72640398dfa9781e4392c65aed949660ce2979078c3d363d2595
6
+ metadata.gz: f0ae8e2dfcc53a6f39fcda7caa3f01fcd64795ae8ec1b58c9e89109b116036355c3df063233599411fc97c0c3e2a3ef0fbe1741e4d3b1e2a0c65618d7954018c
7
+ data.tar.gz: 10070e225d4de1d08fe514e250fb1a8165a33653423438cddf4e3b0f8e8fc40d2b04a4a5e1981ae13f03ddd566c8a8cf19a8a4b0ab59c011ef0224a318376a0b
@@ -3,6 +3,9 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  This project *tries* to adhere to [Semantic Versioning](http://semver.org/), even before v1.0.
5
5
 
6
+ ## [3.3.1]
7
+ - fix starter template name
8
+
6
9
  ## [3.3.0]
7
10
  - Merge pull request #27 from tongueroo/template
8
11
  - add custom templates support
@@ -75,7 +75,7 @@ You can also specific the full GitHub url. Example:
75
75
 
76
76
  ufo init --app=hi --image=tongueroo/hi --template=https://github.com/tongueroo/ufo-custom-template
77
77
 
78
- If you would like to use a local template that is not on GitHub just created top-level folder in `~/.ufo/templates` without a subfolder. Example:
78
+ If you would like to use a local template that is not on GitHub, then created a top-level folder in `~/.ufo/templates` without a subfolder. Example:
79
79
 
80
80
  ufo init --app=hi --image=tongueroo/hi --template=my-custom # uses ~/.ufo/templates/my-custom
81
81
 
@@ -2,7 +2,7 @@
2
2
  "family": "<%= @family %>",
3
3
  "containerDefinitions": [
4
4
  {
5
- "name2": "<%= @name %>",
5
+ "name": "<%= @name %>",
6
6
  "image": "<%= @image %>",
7
7
  "cpu": <%= @cpu %>,
8
8
  <% if @memory %>
@@ -62,6 +62,6 @@ You can also specific the full GitHub url. Example:
62
62
 
63
63
  ufo init --app=hi --image=tongueroo/hi --template=https://github.com/tongueroo/ufo-custom-template
64
64
 
65
- If you would like to use a local template that is not on GitHub just created top-level folder in `~/.ufo/templates` without a subfolder. Example:
65
+ If you would like to use a local template that is not on GitHub, then created a top-level folder in `~/.ufo/templates` without a subfolder. Example:
66
66
 
67
67
  ufo init --app=hi --image=tongueroo/hi --template=my-custom # uses ~/.ufo/templates/my-custom
@@ -1,3 +1,3 @@
1
1
  module Ufo
2
- VERSION = "3.3.0"
2
+ VERSION = "3.3.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ufo
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.3.0
4
+ version: 3.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tung Nguyen