founders_template 0.1.6 → 0.1.7

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: 9fc6c2ed7797984b68105964aa48e54595e1361c6e1b10ade5c720a01c41f175
4
- data.tar.gz: e401486862d821d3003d0e71f316db1d225935dc7d11017d5513d8f3f63d2fb0
3
+ metadata.gz: 9ed02317de02c7569651e0a875d6a1485fdce810c6fbcccc240ce03cd5c0eaba
4
+ data.tar.gz: 4bd92f5b1bd1dad179989ea1b7ce3ce85980106c1b003ef1a086b082d1be5b13
5
5
  SHA512:
6
- metadata.gz: f1e4baa6ec6a4b5610c93bde1f42ffdc58648cc1f60602568e7172d7d347d40f467d3b67800a9d8dd2d74c4f43ba72dcc6c08ca2b22036a1543be752712ed49b
7
- data.tar.gz: 8a5de31327a8586e4be4f6ada4979a817e55738aa2aa83496b293aae698557167077be22fc177d98d3f9c8cecbdb6e2f9153b0c6e51c08be70e3649b717ba9e8
6
+ metadata.gz: 9c80f489a732b55201373b8046c8524c002528c9605051123b2537060477fb6c835b66eb956c93112fe795a76f8c7965aaa205fdd0fc3117cbb8fa93e2f20cec
7
+ data.tar.gz: 6a97f1e3340570e32f5a85554eaeacaa30d0fca32048b9d3f1e35ef143687c8fec7b534a91e9b3d518e11d65e48562ada1735812a0e61cb4328a5eb9cc08395d
data/Gemfile-rails6.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- founders_template (0.1.6)
4
+ founders_template (0.1.7)
5
5
  activesupport
6
6
  aws-sdk-core
7
7
  aws-sdk-ec2
@@ -50,8 +50,9 @@ module FoundersTemplate
50
50
  ensure_secret_key
51
51
 
52
52
  template 'buildspec.yml.erb', 'buildspec.yml'
53
- template 'docker-compose.ci.yml.erb', 'docker-compose.ci.yml'
54
53
  template 'dockerignore.erb', '.dockerignore'
54
+ template 'docker-compose.ci.yml.erb', 'docker-compose.ci.yml'
55
+ template 'docker-sync.yml.erb', 'docker-sync.yml'
55
56
 
56
57
  directory 'ci', 'ci'
57
58
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module FoundersTemplate
4
- VERSION = '0.1.6'
4
+ VERSION = '0.1.7'
5
5
  end
@@ -0,0 +1,20 @@
1
+ version: '2'
2
+
3
+ options:
4
+ verbose: false
5
+
6
+ syncs:
7
+ <%= app_config.short_name %>:
8
+ src: './'
9
+ host_disk_mount_mode: 'cached' # see https://docs.docker.com/docker-for-mac/osxfs-caching/#cached
10
+ sync_excludes:
11
+ - '.sass-cache'
12
+ - '.gitignore'
13
+ - '.git'
14
+ - 'tmp/db_data'
15
+ - 'tmp/cache'
16
+ - 'tmp/docker_data'
17
+ - '.docker-sync'
18
+ - 'docker-sync.yml'
19
+ - 'docker-compose.yml'
20
+ - 'terraform'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: founders_template
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.6
4
+ version: 0.1.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Trae Robrock
@@ -130,6 +130,7 @@ files:
130
130
  - templates/ci/post_build.sh
131
131
  - templates/ci/run_tests.sh
132
132
  - templates/docker-compose.ci.yml.erb
133
+ - templates/docker-sync.yml.erb
133
134
  - templates/dockerignore.erb
134
135
  - templates/ft.yml.erb
135
136
  homepage: https://github.com/trobrock/founders_template