kaze 0.19.0 → 1.0.0

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: aa6a78f69e128906909327d2233d5fd252568c806350bc6d5cec5e69bc06b219
4
- data.tar.gz: 7740b4d8df943b329f17da7d8a87661a6c8ae1797de45a2fed02f02954e0020b
3
+ metadata.gz: 9138221bd4a2ceb298c1663380c4b20ea389ae6d140be70e8e5566fcd8c9d37f
4
+ data.tar.gz: 0b7ef58519530ffe3210a5f427451266788b82259ec18481a6f2a3a5aa7e0410
5
5
  SHA512:
6
- metadata.gz: c46e489d3b97cf507582aa86ce8fc22c91e144cd1e4ec62d227578a8b7bac80e39d2f499f129816439dcfb35423e7b9b438adb452e54b777b41a42977444180b
7
- data.tar.gz: 8528922d6e3d8b5b11d8d4c25c0523140ab50632c55292c0a204df19e2974511e242a3fd75487e0a76489e593991c8fc9147627797b4bd6fe253f55dff72774b
6
+ metadata.gz: 65894c1042fa1b3af7cb836a75af0a2eb5115701bafa4ad8a911c6be363341e58aa910776cb61c0fdec5deb2cbef09ec0d8fc5a4c32a8ddd25d6d816c3d60677
7
+ data.tar.gz: afe217578c1e3cb6122b07cfac695b2217eeda27161a99d6cca2c2131ab5a6c72f472558949031b0916189b8895b81b0748c3186f62e9e51db6b6bb7877f98c0
@@ -16,7 +16,7 @@ class Kaze::Commands::App::BaseStack
16
16
 
17
17
  return true if gem_being_installed.empty?
18
18
 
19
- status = run_command("bundle add #{gem_being_installed.join(" ")}#{group ? " --group \"#{group}\"" : ""}")
19
+ status = run_command("#{Dir.pwd}/bin/bundle add #{gem_being_installed.join(" ")}#{group ? " --group \"#{group}\"" : ""}")
20
20
 
21
21
  status.success?
22
22
  end
@@ -28,7 +28,7 @@ class Kaze::Commands::App::BaseStack
28
28
 
29
29
  return true if gems_being_removed.empty?
30
30
 
31
- status = run_command("bundle remove #{gems_being_removed.join(" ")}")
31
+ status = run_command("#{Dir.pwd}/bin/bundle remove #{gems_being_removed.join(" ")}")
32
32
 
33
33
  status.success?
34
34
  end
@@ -2,7 +2,8 @@ class Kaze::Commands::App::HotwireStack < Kaze::Commands::App::BaseStack
2
2
  def install
3
3
  # Gems...
4
4
  return unless remove_gems([ 'sprockets-rails', 'stimulus-rails' ])
5
- return unless install_gems([ 'propshaft', 'view_component', 'tailwindcss-rails', 'turbo-rails', 'dotenv', 'bcrypt' ])
5
+ return unless install_gems([ 'propshaft', 'view_component', 'turbo-rails', 'dotenv', 'bcrypt' ])
6
+ run_command("#{Dir.pwd}/bin/bundle add tailwindcss-rails --version=\"~> 3.0\"")
6
7
  return unless install_gems([ 'hotwire-livereload' ], 'development')
7
8
  return unless install_gems([ 'factory_bot_rails', 'faker' ], 'development, test')
8
9
 
@@ -2,7 +2,8 @@ class Kaze::Commands::App::InertiaReactStack < Kaze::Commands::App::BaseStack
2
2
  def install
3
3
  # Gems...
4
4
  return unless remove_gems([ 'sprockets-rails', 'turbo-rails', 'stimulus-rails' ])
5
- return unless install_gems([ 'propshaft', 'tailwindcss-rails', 'inertia_rails', 'vite_rails', 'dotenv', 'bcrypt', 'js-routes' ])
5
+ return unless install_gems([ 'propshaft', 'inertia_rails', 'vite_rails', 'dotenv', 'bcrypt', 'js-routes' ])
6
+ run_command("#{Dir.pwd}/bin/bundle add tailwindcss-rails --version=\"~> 3.0\"")
6
7
  return unless install_gems([ 'factory_bot_rails', 'faker' ], 'development, test')
7
8
 
8
9
  # NPM Packages...
@@ -2,7 +2,8 @@ class Kaze::Commands::App::InertiaVueStack < Kaze::Commands::App::BaseStack
2
2
  def install
3
3
  # Gems...
4
4
  return unless remove_gems([ 'sprockets-rails', 'turbo-rails', 'stimulus-rails' ])
5
- return unless install_gems([ 'propshaft', 'tailwindcss-rails', 'inertia_rails', 'vite_rails', 'dotenv', 'bcrypt', 'js-routes' ])
5
+ return unless install_gems([ 'propshaft', 'inertia_rails', 'vite_rails', 'dotenv', 'bcrypt', 'js-routes' ])
6
+ run_command("#{Dir.pwd}/bin/bundle add tailwindcss-rails --version=\"~> 3.0\"")
6
7
  return unless install_gems([ 'factory_bot_rails', 'faker' ], 'development, test')
7
8
 
8
9
  # NPM Packages...
data/lib/kaze/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Kaze
2
- VERSION = '0.19.0'
2
+ VERSION = '1.0.0'
3
3
  end
@@ -19,7 +19,7 @@
19
19
  "react": "^18.2.0",
20
20
  "react-dom": "^18.2.0",
21
21
  "tailwindcss": "^3.2.1",
22
- "typescript": "~5.5.3",
22
+ "typescript": "^5.6.3",
23
23
  "vite": "^5.2.11",
24
24
  "vite-plugin-rails": "^0.5.0"
25
25
  }
@@ -15,7 +15,7 @@
15
15
  "axios": "^1.6.4",
16
16
  "postcss": "^8.4.31",
17
17
  "tailwindcss": "^3.2.1",
18
- "typescript": "~5.5.3",
18
+ "typescript": "^5.6.3",
19
19
  "vite": "^5.2.11",
20
20
  "vite-plugin-rails": "^0.5.0",
21
21
  "vue": "^3.4.27",
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: kaze
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.19.0
4
+ version: 1.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Cuong Giang
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-01-20 00:00:00.000000000 Z
11
+ date: 2025-02-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: thor