bard 1.3.5 → 1.3.6

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: f60ca542176963e6e28f2668e7e586579623d3e484edfc4ff2bdded229d264fc
4
- data.tar.gz: 80f70c58ac4ec8c9d3360450a93a243258404e56a8e5a1d91d97ae065e0ae28e
3
+ metadata.gz: 5053dc8c4726e144736e568b70eaccff71dc0f6dced2d87c9d5dc3e18ded0906
4
+ data.tar.gz: a350973b973785621969f862e981dada65e46a1bacbe7bdabb30c5ab188c1779
5
5
  SHA512:
6
- metadata.gz: f3b82acca3f891fa76e03a53a54b2dddf108d8139ff0a630a229b51e2e17bc25ae0665fb04212546fc9cdf8e1c3ec1b1877d5bcf4677852cdd5407fcca37d0b9
7
- data.tar.gz: 3a897074c8ba3e11f7b823ef2e762c00a7f46f761a38372a380eeb7f84d57743bbc93b19682f9b11501d0bdca22d59cc102ccef59a7f698b99646625a17fa703
6
+ metadata.gz: a87bf99bf8b8374906254753fae5b18a7374d2f51c5e6fe3c3841828807f12b61233dc205a7a9ea11ee9a4f91e5bb0b9ff61395240fc30ef7fd4ef2ce763f8d7
7
+ data.tar.gz: 371d04cb10632a937c7a65a761498df299f06a26a7d7d05e0c6f8cf941fadf5a99581c64e07d235bccc2c029e5ad67fa948dfe0d24c1094094ef5c1824bde5bb
@@ -40,8 +40,8 @@ module Bard::CLI::Deploy
40
40
  end
41
41
 
42
42
  if options[:clone]
43
- config[to].run! "git clone git@github.com:botandrosedesign/#{project_name}", home: true
44
- invoke :master_key, nil, from: "local", to: to
43
+ config[to].run! "git clone git@github.com:botandrosedesign/#{project_name} #{config[to].path}", home: true
44
+ invoke :master_key, [], from: "local", to: to
45
45
  config[to].run! "bin/setup && bard setup"
46
46
  else
47
47
  if config[to].github_pages
data/lib/bard/cli/new.rb CHANGED
@@ -34,7 +34,7 @@ class Bard::CLI::New < Bard::CLI::Command
34
34
  rvm use --create #{ruby_version}@#{project_name}
35
35
 
36
36
  gem list rails -i || gem install rails --no-document
37
- rails new #{project_name} --skip-git --skip-kamal -m #{template_path}
37
+ rails new #{project_name} --skip-git --skip-kamal --skip-test -m #{template_path}
38
38
  '
39
39
  BASH
40
40
  end
@@ -54,7 +54,7 @@ class Bard::CLI::New < Bard::CLI::Command
54
54
  def stage
55
55
  run! <<~BASH
56
56
  cd ../#{project_name}
57
- bard deploy --provision
57
+ bard deploy --clone
58
58
  BASH
59
59
  end
60
60
 
@@ -21,7 +21,6 @@ file ".gitignore", <<~GITIGNORE
21
21
  # Ignore master key for decrypting credentials and more.
22
22
  /config/master.key
23
23
 
24
- /config/database.yml
25
24
  /db/*.sqlite3
26
25
  /db/data.*
27
26
 
@@ -53,6 +52,7 @@ file "Gemfile", <<~RUBY
53
52
  gem "solid_cable"
54
53
 
55
54
  gem "image_processing"
55
+ gem "puma"
56
56
 
57
57
  group :development do
58
58
  gem "web-console"
@@ -69,7 +69,6 @@ file "Gemfile", <<~RUBY
69
69
  gem "cuprite-downloads"
70
70
  gem "capybara-screenshot"
71
71
  gem "database_cleaner"
72
- gem "puma"
73
72
  gem "chop"
74
73
  gem "email_spec"
75
74
  gem "timecop"
@@ -78,7 +77,6 @@ file "Gemfile", <<~RUBY
78
77
 
79
78
  group :production do
80
79
  gem "foreman-export-systemd_user"
81
- gem "puma"
82
80
  end
83
81
  RUBY
84
82
 
data/lib/bard/version.rb CHANGED
@@ -1,4 +1,4 @@
1
1
  module Bard
2
- VERSION = "1.3.5"
2
+ VERSION = "1.3.6"
3
3
  end
4
4
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bard
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.5
4
+ version: 1.3.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Micah Geisel