founders_template 0.1.1 → 0.1.2

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: 950499597fda4d2a618448382801e5e4ac8c363109445c55b9a8ff392e46e4de
4
- data.tar.gz: 52d6986a6cd0b25ddd7c6283c41ba47c260a42ad927d4a95f024e4a26526b64f
3
+ metadata.gz: 2d2b17da3d674c0c5b4d41ba46958fd0702cafd663753e32686cfae849343eb1
4
+ data.tar.gz: c952aceb8edfd4b65ca351d2761585b2e3bccda6068e25154834e697c5c234c9
5
5
  SHA512:
6
- metadata.gz: 743bfb7aba797891bf2c40ba9ff225bbfa5fe54a269a275b005fb487f77647104bab11a42323a0c9d36e8a375ae29273b26e071dbc1bb8da212e178dfb00fba0
7
- data.tar.gz: 5e5dc5452cec1c375192f12e47c6b243ffa69da290c116eba1bfc6b0ee17515884c36355b3ab68b9097032d5e5d0e080733ab1e9c858eca24325694339446bcf
6
+ metadata.gz: 543bd724960bbebcf8e53eaaa62128b2214517120df19b80469dbe03d009ca4fe46a2bcababc00216f675688b3350c26e44c21d7aa55a317dd270cca76fe59cb
7
+ data.tar.gz: 9a07ada41185a2477c936c98a4b5cc26104b4bb08c5b669266f71a7bab0c626c1b13298f1e3aaab0b216c8f3f0c586b0405e270e6b705920da222e4549699b60
data/Gemfile-rails6.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- founders_template (0.1.1)
4
+ founders_template (0.1.2)
5
5
  thor (~> 1.0)
6
6
 
7
7
  GEM
@@ -24,6 +24,8 @@ module FoundersTemplate
24
24
  desc 'install', 'install the buildspec'
25
25
  def install
26
26
  template 'buildspec.yml.erb', 'buildspec.yml'
27
+
28
+ directory 'ci', 'ci'
27
29
  end
28
30
  end
29
31
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module FoundersTemplate
4
- VERSION = '0.1.1'
4
+ VERSION = '0.1.2'
5
5
  end
@@ -0,0 +1,5 @@
1
+ #!/usr/bin/env bash
2
+
3
+ set -e
4
+
5
+ # PLACE ALL YOUR COMMANDS TO RUN DURING INSTALL BELOW THIS
@@ -0,0 +1,5 @@
1
+ #!/usr/bin/env bash
2
+
3
+ set -e
4
+
5
+ # PLACE ALL YOUR COMMANDS TO RUN DURING POST BUILD BELOW THIS
@@ -0,0 +1,10 @@
1
+ #!/usr/bin/env sh
2
+
3
+ set -e
4
+
5
+ # CUSTOMIZE YOUR TEST REQUIREMENTS BELOW
6
+
7
+ bundle config --delete without &&
8
+ bundle install &&
9
+ bundle exec rake db:create db:migrate RAILS_ENV=test &&
10
+ bundle exec rspec
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.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Trae Robrock
@@ -66,6 +66,9 @@ files:
66
66
  - lib/founders_template/cli.rb
67
67
  - lib/founders_template/version.rb
68
68
  - templates/buildspec.yml.erb
69
+ - templates/ci/install.sh
70
+ - templates/ci/post_build.sh
71
+ - templates/ci/run_tests.sh
69
72
  homepage: https://github.com/trobrock/founders_template
70
73
  licenses:
71
74
  - MIT