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 CHANGED
@@ -1,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- ZTBhMDk4ODljMTRkMjQ5MzQ0MWI5YWU5MzA1OTRjNjhhZGZlMjg3Mw==
4
+ MzVlMThhYmY5NTUxNDdiNDczMGY0MmRmNDdlMWRkYjU5OWIwNTE1Ng==
5
5
  data.tar.gz: !binary |-
6
- NDkwZjhhMDAzYjkwYjIzZTEzNTc4MDk4OThlNmE1M2M2NDUzNWYyNg==
6
+ Mzc4MmVhNmMwNjdhNWE4M2M4Y2ZkNjljYmRiNWQ2MDM4YWZlODgyMQ==
7
7
  !binary "U0hBNTEy":
8
8
  metadata.gz: !binary |-
9
- ZWY4YzA2NjUzZmNiNDM3MTRjNThkNWI3YjdkMTE4ZTQ0OGNhYWM3ZjVhM2U0
10
- MzI3MjA2OTg1Y2Y2MWQ4ZjcxYTVmMjNiMmIyMTcwNDcwMTE1ZjY1OTQ1Yjhk
11
- YTEzMmM0ZjA4NTJiOTM4NDcxNGJjNjlkNmIwMjc2ODE2ZWVkMDI=
9
+ NGNkYzJjNjZkMTg1ZjU1ZWFiNDM1M2JlZjVjMzcyNjZiMzRmMmFjMDdkM2Y0
10
+ MWRlYWM4YzQ2OThkY2EzNDU2ZmEwN2YzN2NlZDJhNzI1MjBiZGExYzRhNDlm
11
+ ODBhYWM0ZDI4MTYzMzg5MDdmZjk0ODcyNDEwNGFmY2MzNzM2Y2M=
12
12
  data.tar.gz: !binary |-
13
- OGU4ZjY2MWZkMmY2YTE1M2IwYTI4ZGY1MzA5YmMxMTVmNTM2ZWVkOTJhNjc5
14
- YTM0NzhmZGMyOGQ2ZDY5YjBiZDNjYWQzYzlkZjlhM2U3MGI4NjczM2E3NDA4
15
- YjEyMmY1MWJiMGE5M2Y5YWFhYjc4YTYwNTIwNDYyMmM1Mjc4YWE=
13
+ ZmY1OGQxMTJiNDViYTdhNmFhY2Q5NjBjZDY4ZDJmYzAzZDRiNDZjYjdhN2Fj
14
+ MTIzMWY4NDY2YTljM2I5OWQ0YjdjYTJhMmQ5Nzc1MWYzODQ5YzlkZDIyNWUw
15
+ MDIzOGNlNjNiMjBhODJjNDk2ODY1Yjc0NzViNWIzMWNkNTA2MWM=
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.0
1
+ 0.1.1
data/fs_template.gemspec CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = "fs_template"
8
- s.version = "0.1.0"
8
+ s.version = "0.1.1"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Mike Harris"]
@@ -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
- ec "cd #{output_path} && git init && git add . && git commit -m 'Base Files #{config.base}'", :silent => true
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
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fs_template
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mike Harris