teuton 2.1.9 → 2.1.10
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 +4 -4
- data/lib/teuton/application.rb +1 -1
- data/lib/teuton/files/gitignore +2 -0
- data/lib/teuton/project/skeleton.rb +1 -2
- metadata +2 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 83d8d3b0d1a64b86f4a565eed4570dbf658d3257472623c2f62f17f22ee3b5f5
|
|
4
|
+
data.tar.gz: e04f854b375a25f3ca221e425dc318cde2a37719f7569caa78355cb25874971b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6169cd172479737fbb4e306ce4b9fe61c69245e5bdf4a757a21d1ab4c99921c364ec971458a59b19aa09a32587db98c99a07ad2650974d996cccf9926490de5e
|
|
7
|
+
data.tar.gz: a4ff2da0ae22db62cbf2e4197f53ba4be346f36b535c341cc205f339c9906ed4b0e866048158793cc74395e19c922c0cc792330bd8afe73cfb9796750a314170
|
data/lib/teuton/application.rb
CHANGED
|
@@ -30,8 +30,7 @@ module Skeleton
|
|
|
30
30
|
# Directory and files: Ruby script, Configfile, gitignore
|
|
31
31
|
items = [
|
|
32
32
|
{ source: 'files/config.yaml', target: 'config.yaml' },
|
|
33
|
-
{ source: 'files/start.rb', target: 'start.rb' }
|
|
34
|
-
{ source: 'files/gitignore', target: '.gitignore' }
|
|
33
|
+
{ source: 'files/start.rb', target: 'start.rb' }
|
|
35
34
|
]
|
|
36
35
|
items.each do |item|
|
|
37
36
|
source = File.join(source_basedir, item[:source])
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: teuton
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.1.
|
|
4
|
+
version: 2.1.10
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- David Vargas Ruiz
|
|
@@ -273,6 +273,7 @@ files:
|
|
|
273
273
|
- lib/teuton/cli/version.rb
|
|
274
274
|
- lib/teuton/files/README.md
|
|
275
275
|
- lib/teuton/files/config.yaml
|
|
276
|
+
- lib/teuton/files/gitignore
|
|
276
277
|
- lib/teuton/files/start.rb
|
|
277
278
|
- lib/teuton/files/template/case.html
|
|
278
279
|
- lib/teuton/files/template/resume.html
|