bard 1.4.4 → 1.4.5

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: f3b22c705d9f6893aacd2c8d232abb796d2028316d8b5a104d59946fa910e4ca
4
- data.tar.gz: c19f7fe76879913fe5cb5393c8bdad0a2951b34b8c7f5a1aa1421e928c9071cf
3
+ metadata.gz: 10a46ca0d1145fbdce208fd3b3040088058a49605688d5833f04cfd220bb7235
4
+ data.tar.gz: '01861cceb218abe6a962a8b0ba2a5449ec4d6d75f40dff607957a0c833cdb6a8'
5
5
  SHA512:
6
- metadata.gz: 0af636009fc030280b5bd60b9b58ccf2513c2c490ba9e912c5449e17f601a3533480b3ea51349e0fdffe0c5c4c8a12174c76101c0bbca82036676da6d0a9df56
7
- data.tar.gz: b64e0a9d7723eb23a7d4ec0fd0d20d9398dd5116c7d7f5676ea48648735fd3b3954d69cf1512e06c0213c0f9854e18b0e4af6c1f560409e8a060fc8d740d96c7
6
+ metadata.gz: b4dd3b9800cc0e172f34b52ff852189f550d1cfa3e749ca7edd1e9e6fa427155cf714c3618c422de97c37060fa97c80580cad02fc1bd13506c5ced7d67700d98
7
+ data.tar.gz: '00920b1fb15c5b698d36f58d4993172be6ee5614a2668be17c7d0bd0800dd5c2150242b63e73344fc6fc37b7d7e6b67c7f7cab52c97abedebbbe9fd2a018ff55'
data/lib/bard/cli/new.rb CHANGED
@@ -63,7 +63,7 @@ class Bard::CLI::New < Bard::CLI::Command
63
63
  end
64
64
 
65
65
  def ruby_version
66
- File.read(".ruby-version").chomp
66
+ "ruby-3.3.3"
67
67
  end
68
68
 
69
69
  def template_path
@@ -185,6 +185,8 @@ insert_into_file "config/database.yml", <<-YAML, after: "# database: path/to/per
185
185
  migrations_paths: db/queue_migrate
186
186
  YAML
187
187
 
188
+ gsub_file "config/database.yml", "path/to/persistent/", ""
189
+
188
190
  gsub_file "config/environments/production.rb", / (config\.logger.+STDOUT.*)$/, ' # \1'
189
191
 
190
192
  after_bundle do
@@ -6,6 +6,7 @@ class Bard::CLI::Provision < Bard::CLI::Command
6
6
  SSH
7
7
  User
8
8
  AuthorizedKeys
9
+ Swapfile
9
10
  Apt
10
11
  MySQL
11
12
  Repo
@@ -13,10 +14,9 @@ class Bard::CLI::Provision < Bard::CLI::Command
13
14
  RVM
14
15
  App
15
16
  Passenger
16
- Data
17
17
  HTTP
18
18
  LogRotation
19
- Swapfile
19
+ Data
20
20
  Deploy
21
21
  ]
22
22
 
@@ -8,7 +8,7 @@ class Bard::Provision::MySQL < Bard::Provision
8
8
  provision_server.run! [
9
9
  "sudo apt-get install -y mysql-server",
10
10
  %(sudo mysql -uroot -e "ALTER USER \\"'\\"root\\"'\\"@\\"'\\"localhost\\"'\\" IDENTIFIED WITH mysql_native_password BY \\"'\\"\\"'\\", \\"'\\"root\\"'\\"@\\"'\\"localhost\\"'\\" PASSWORD EXPIRE NEVER; FLUSH PRIVILEGES;"),
11
- %(mysql -uroot -e "UPDATE mysql.user SET password_lifetime = NULL WHERE user = 'root' AND host = 'localhost';"),
11
+ %(mysql -uroot -e "UPDATE mysql.user SET password_lifetime = NULL WHERE user = \\"'\\"root\\"'\\" AND host = \\"'\\"localhost\\"'\\";"),
12
12
  ].join("; "), home: true
13
13
  end
14
14
 
data/lib/bard/version.rb CHANGED
@@ -1,4 +1,4 @@
1
1
  module Bard
2
- VERSION = "1.4.4"
2
+ VERSION = "1.4.5"
3
3
  end
4
4
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bard
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.4.4
4
+ version: 1.4.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Micah Geisel
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-02-13 00:00:00.000000000 Z
11
+ date: 2025-03-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: thor