bullet_train-themes-light 1.0.26 → 1.0.29

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5b1153ab4553c5e5ce24f6b119468692c8426b7b0431049d0a2ef383e91fa9e2
4
- data.tar.gz: 0d32ad318a542758f7af4ea8a4eb1145b3e4668bbfad4c7fff52f26b68fa8d3c
3
+ metadata.gz: 126519b619cca29b479bbc6246433b33bc39a01ed8395aaadcdf1e8127ff22a1
4
+ data.tar.gz: 7e4d34264c5a1454cee655c037ce793656e132e4f22424cb44e0223aa2a255a5
5
5
  SHA512:
6
- metadata.gz: 5e77a3514641720cef5d2d2501ce9dfb9e056e2d091a8026661b43b6cfe0e45c9617485f1cf84d4364d9c67d0a8327957ed698f58dce0206994c073bc36f081c
7
- data.tar.gz: c055cf9036b784bea6abd3072228fe47fd8f8b00a0b8c41a21f0ccaf83874313e74f09ccc9b9eaabffb6689eea000a0880a58c86236952637a8baf939ff6504c
6
+ metadata.gz: 23656b11ae0508e6c2ac6d351ed7e037ebfc8c9a552aac0758768c0ca1452798125d138dfbf925a9ba3bc483d7fc4e7ade2f63e0121451927f473cbf6da4f8e1
7
+ data.tar.gz: '09e4eb9333585a7063b4ad3b8f1835a52e120ffd9e37138a1624c38e2d65d2f162a618994aeeb8ec001f9e4041c0d58fb5a47efffc40f614293ac25843afc2f7'
@@ -4,7 +4,7 @@
4
4
  <%= render 'shared/layouts/head' %>
5
5
  </head>
6
6
  <body class="bg-light-gradient text-gray-700 text-sm font-normal electron-draggable dark:bg-dark-gradient dark:text-darkPrimary-300">
7
- <div data-turbo="false" data-turn-enter data-turn-exit>
7
+ <div data-turn-enter data-turn-exit>
8
8
  <%= yield %>
9
9
  </div>
10
10
  </body>
@@ -1,7 +1,7 @@
1
1
  module BulletTrain
2
2
  module Themes
3
3
  module Light
4
- VERSION = "1.0.26"
4
+ VERSION = "1.0.29"
5
5
  end
6
6
  end
7
7
  end
@@ -9,6 +9,10 @@ namespace :bullet_train do
9
9
  puts "Ejecting Tailwind configuration into `./tailwind.#{args[:destination]}.config.js`."
10
10
  `cp #{theme_base_path}/tailwind.light.config.js #{Rails.root}/tailwind.#{args[:destination]}.config.js`
11
11
 
12
+ puts "Ejecting Tailwind mailer configuration into `./tailwind.mailer.#{args[:destination]}.config.js`."
13
+ `cp #{theme_base_path}/tailwind.mailer.light.config.js #{Rails.root}/tailwind.mailer.#{args[:destination]}.config.js`
14
+ `sed -i #{'""' if `echo $OSTYPE`.include?("darwin")} "s/light/#{args[:destination]}/g" #{Rails.root}/tailwind.mailer.#{args[:destination]}.config.js`
15
+
12
16
  puts "Ejecting stylesheets into `./app/assets/stylesheets/#{args[:destination]}`."
13
17
  `mkdir #{Rails.root}/app/assets/stylesheets`
14
18
  `cp -R #{theme_base_path}/app/assets/stylesheets/light #{Rails.root}/app/assets/stylesheets/#{args[:destination]}`
@@ -31,7 +35,7 @@ namespace :bullet_train do
31
35
 
32
36
  # Stub out the class that represents this theme and establishes its inheritance structure.
33
37
  target_path = "#{Rails.root}/app/lib/bullet_train/themes/#{args[:destination]}.rb"
34
- puts "Stubbing out a class that represents this theme in `./#{target_path}`."
38
+ puts "Stubbing out a class that represents this theme in `.#{target_path}`."
35
39
  `mkdir -p #{Rails.root}/app/lib/bullet_train/themes`
36
40
  `cp #{theme_base_path}/lib/bullet_train/themes/light.rb #{target_path}`
37
41
  `sed -i #{'""' if `echo $OSTYPE`.include?("darwin")} "s/module Light/module #{args[:destination].titlecase}/g" #{target_path}`
metadata CHANGED
@@ -1,29 +1,43 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bullet_train-themes-light
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.26
4
+ version: 1.0.29
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrew Culver
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-06-15 00:00:00.000000000 Z
11
+ date: 2022-06-18 00:00:00.000000000 Z
12
12
  dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: standard
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '0'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: '0'
13
27
  - !ruby/object:Gem::Dependency
14
28
  name: rails
15
29
  requirement: !ruby/object:Gem::Requirement
16
30
  requirements:
17
31
  - - ">="
18
32
  - !ruby/object:Gem::Version
19
- version: 7.0.0
33
+ version: 6.0.0
20
34
  type: :runtime
21
35
  prerelease: false
22
36
  version_requirements: !ruby/object:Gem::Requirement
23
37
  requirements:
24
38
  - - ">="
25
39
  - !ruby/object:Gem::Version
26
- version: 7.0.0
40
+ version: 6.0.0
27
41
  - !ruby/object:Gem::Dependency
28
42
  name: bullet_train-themes-tailwind_css
29
43
  requirement: !ruby/object:Gem::Requirement
@@ -125,7 +139,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
125
139
  - !ruby/object:Gem::Version
126
140
  version: '0'
127
141
  requirements: []
128
- rubygems_version: 3.3.7
142
+ rubygems_version: 3.2.22
129
143
  signing_key:
130
144
  specification_version: 4
131
145
  summary: 'Bullet Train Themes: Light'