bullet_train-themes-light 1.0.2 → 1.0.3

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: 9355602d1279b445f92210f641a00e93dc939947393d381f8f2f6441d6cf6e11
4
- data.tar.gz: c919c1a4c34fd19c62c43d124ff2a190ef95ad3636d2a863921d514317c7aa6c
3
+ metadata.gz: 5043bd981a4c2635d06c90be8594dfa727bc98c3862e776a3e1641de15b7cc70
4
+ data.tar.gz: 5711f3d71a29df84f8f5fbf1f180030643a5c0149bf05a62f1a667dae7ecc171
5
5
  SHA512:
6
- metadata.gz: 6aefe215dcf682b514deb1ffa5057894c2add6d3da7d1b6da23f4604eadda5ab80cca90fa7914ffffca8d1f5810c3d2146b1a0c9c323b50a72a4219b9150eb02
7
- data.tar.gz: cbddbf909da9cdfeeec93b87b97903b5c6d97a757f97e14a98541f685e8c76e84e4dd49b9691629a61eacdb0f1373815d3f9b41eaee3c456823200fc5a643b16
6
+ metadata.gz: 0b2e0c7c6889ed4209d1949362c92f392270cb78583fb7cf03fe95b8435f0000ee4cf0bca4fee9e2aeb821ec08a85315cf22b2251e2fdf8f4f06ae919f00ff78
7
+ data.tar.gz: a7638d318e9b5a42e0ea607ad2fd4fa2d27c13b833cb70c6ab69f567111660f242d2498c008a392aff35152e277667190b5b7c26af6266cf308118be244ef25f
@@ -1,7 +1,7 @@
1
1
  module BulletTrain
2
2
  module Themes
3
3
  module Light
4
- VERSION = "1.0.2"
4
+ VERSION = "1.0.3"
5
5
  end
6
6
  end
7
7
  end
@@ -1,10 +1,15 @@
1
1
  require "bullet_train/themes/light/version"
2
2
  require "bullet_train/themes/light/engine"
3
- require "bullet_train/themes/light/theme"
3
+ require "bullet_train/themes/tailwind_css"
4
4
 
5
5
  module BulletTrain
6
6
  module Themes
7
7
  module Light
8
+ class Theme < BulletTrain::Themes::TailwindCss::Theme
9
+ def directory_order
10
+ ['light'] + super
11
+ end
12
+ end
8
13
  end
9
14
  end
10
15
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bullet_train-themes-light
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.2
4
+ version: 1.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrew Culver
@@ -75,7 +75,6 @@ files:
75
75
  - config/routes.rb
76
76
  - lib/bullet_train/themes/light.rb
77
77
  - lib/bullet_train/themes/light/engine.rb
78
- - lib/bullet_train/themes/light/theme.rb
79
78
  - lib/bullet_train/themes/light/version.rb
80
79
  - lib/tasks/bullet_train/themes/light_tasks.rake
81
80
  homepage: https://github.com/bullet-train-co/bullet_train-themes-light
@@ -1,13 +0,0 @@
1
- require "bullet_train/themes/tailwind_css"
2
-
3
- module BulletTrain
4
- module Themes
5
- module Light
6
- class Theme < TailwindCss::Theme
7
- def directory_order
8
- ['light'] + super
9
- end
10
- end
11
- end
12
- end
13
- end