shogun 6.2.0 → 6.2.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/shogun/command/new.rb +2 -1
- data/lib/shogun/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f356274d7c54f0cb104827d4d660b60f92ae669b
|
4
|
+
data.tar.gz: ac7bd5cc1e1f0c199cfef9af934bfbb59775a5f8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9af314d1c7e1a54da5bbe3f66c2479bb8aa1cc4c2f5d4e82286bdbe8c676a0c699526e9396bf4da80ba8ba7e14682797b2ebd700b3728a1c922caace42e9eab5
|
7
|
+
data.tar.gz: 7a18afdec16f5a52a8ae7af54fefb91318f8e64fa7aa5bfa3ecb491cf778e7b73f41252a6677da7c0db2bebec3b0b4cc8c215ffb9a4b95790a4922c1f0747ab9
|
data/lib/shogun/command/new.rb
CHANGED
@@ -14,8 +14,9 @@ module Shogun
|
|
14
14
|
architecture(source: scaffold_directory, destination: current_directory) do |architect|
|
15
15
|
architect.create(directory: architect.destination(namespace))
|
16
16
|
architect.within(source: "project", destination: namespace) do |scope|
|
17
|
-
scope.copy(file: ".gitignore", context: context)
|
17
|
+
scope.copy(file: "gitignore", as: ".gitignore", context: context)
|
18
18
|
scope.copy(file: ".rspec", context: context)
|
19
|
+
scope.copy(file: ".env", context: context)
|
19
20
|
scope.copy(file: ".ruby-gemset", context: context)
|
20
21
|
scope.copy(file: ".ruby-version", context: context)
|
21
22
|
scope.copy(file: ".slugignore", context: context)
|
data/lib/shogun/version.rb
CHANGED