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 +4 -4
- data/lib/bard/cli/deploy.rb +2 -2
- data/lib/bard/cli/new.rb +2 -2
- data/lib/bard/cli/new_rails_template.rb +1 -3
- data/lib/bard/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 5053dc8c4726e144736e568b70eaccff71dc0f6dced2d87c9d5dc3e18ded0906
|
|
4
|
+
data.tar.gz: a350973b973785621969f862e981dada65e46a1bacbe7bdabb30c5ab188c1779
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a87bf99bf8b8374906254753fae5b18a7374d2f51c5e6fe3c3841828807f12b61233dc205a7a9ea11ee9a4f91e5bb0b9ff61395240fc30ef7fd4ef2ce763f8d7
|
|
7
|
+
data.tar.gz: 371d04cb10632a937c7a65a761498df299f06a26a7d7d05e0c6f8cf941fadf5a99581c64e07d235bccc2c029e5ad67fa948dfe0d24c1094094ef5c1824bde5bb
|
data/lib/bard/cli/deploy.rb
CHANGED
|
@@ -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,
|
|
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 --
|
|
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