fs_template 0.1.0 → 0.1.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 +8 -8
- data/VERSION +1 -1
- data/fs_template.gemspec +1 -1
- data/lib/fs_template/project.rb +3 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
MzVlMThhYmY5NTUxNDdiNDczMGY0MmRmNDdlMWRkYjU5OWIwNTE1Ng==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
Mzc4MmVhNmMwNjdhNWE4M2M4Y2ZkNjljYmRiNWQ2MDM4YWZlODgyMQ==
|
7
7
|
!binary "U0hBNTEy":
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
NGNkYzJjNjZkMTg1ZjU1ZWFiNDM1M2JlZjVjMzcyNjZiMzRmMmFjMDdkM2Y0
|
10
|
+
MWRlYWM4YzQ2OThkY2EzNDU2ZmEwN2YzN2NlZDJhNzI1MjBiZGExYzRhNDlm
|
11
|
+
ODBhYWM0ZDI4MTYzMzg5MDdmZjk0ODcyNDEwNGFmY2MzNzM2Y2M=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
ZmY1OGQxMTJiNDViYTdhNmFhY2Q5NjBjZDY4ZDJmYzAzZDRiNDZjYjdhN2Fj
|
14
|
+
MTIzMWY4NDY2YTljM2I5OWQ0YjdjYTJhMmQ5Nzc1MWYzODQ5YzlkZDIyNWUw
|
15
|
+
MDIzOGNlNjNiMjBhODJjNDk2ODY1Yjc0NzViNWIzMWNkNTA2MWM=
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.1.
|
1
|
+
0.1.1
|
data/fs_template.gemspec
CHANGED
data/lib/fs_template/project.rb
CHANGED
@@ -43,7 +43,9 @@ module FsTemplate
|
|
43
43
|
def write_to!(output_path)
|
44
44
|
base_files.write_to! output_path
|
45
45
|
`rm -rf #{output_path}/.git`
|
46
|
-
|
46
|
+
|
47
|
+
full_init = 'git init && git config user.email johnsmith@fake.com && git config user.name "John Smith"'
|
48
|
+
ec "cd #{output_path} && #{full_init} && git add . && git commit -m 'Base Files #{config.base}'", :silent => true
|
47
49
|
combined_files.write_to!(output_path)
|
48
50
|
ec "cd #{output_path} && git add . && git commit -m 'Overlay Files #{path}'", :silent => true
|
49
51
|
end
|