bullet_train-themes-tailwind_css 1.0.4 → 1.0.5

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: a83e6e1ba42ca442994ee5257f6aa4a878170ca127ed01506551734cd935e168
4
- data.tar.gz: 85abf3e298c2e3b0c8cbc3b4b895b13d201f7c67cf38b5dfa19310d6ac08e905
3
+ metadata.gz: 599b1d6fc7e4d3af42380d26839af3a0065cffedf6c2c914a6b1a379bcc8659f
4
+ data.tar.gz: 590ce833210404bc04b5b9ae708022e6a16072c76070a496df0ddf1273aeec16
5
5
  SHA512:
6
- metadata.gz: 0aea4b921f5852da76d01387c347e2a0dd1256c4014c46e240e003eee580d7b7ac43173d48625fda8f516dcff1a0bc4f52192485bba950b908554532acfe3421
7
- data.tar.gz: ec711ae1a749479a69396e762802a699257783b40ba69547dfd9e5b0ff547d45d228daea50781c94c676f0f4da193b11b4da57cde2ddb18ed44fa7142be9acc6
6
+ metadata.gz: 1582efb947b986601178d553b92f2d14d497acb0ec22f560c1a6834dc8e06869b133d4ee1444ab64b27988504f044c621178ae1044a824c0e0eb0a0c6d958cc0
7
+ data.tar.gz: b4f930291e428a350f7773a090b6331b8dc95f4f7fb7302fbd5922e973cca883dfc144d12fcb8e3796752df7a26150fcf80b6d5d06e2cb9637d65f38ccf44fb2
@@ -1,7 +1,7 @@
1
1
  module BulletTrain
2
2
  module Themes
3
3
  module TailwindCss
4
- VERSION = "1.0.4"
4
+ VERSION = "1.0.5"
5
5
  end
6
6
  end
7
7
  end
@@ -1,10 +1,15 @@
1
1
  require "bullet_train/themes/tailwind_css/version"
2
2
  require "bullet_train/themes/tailwind_css/engine"
3
- require "bullet_train/themes/tailwind_css/theme"
3
+ require "bullet_train/themes"
4
4
 
5
5
  module BulletTrain
6
6
  module Themes
7
7
  module TailwindCss
8
+ class Theme < BulletTrain::Themes::Base::Theme
9
+ def directory_order
10
+ ['tailwind_css'] + 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-tailwind_css
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.4
4
+ version: 1.0.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrew Culver
@@ -61,7 +61,6 @@ files:
61
61
  - config/routes.rb
62
62
  - lib/bullet_train/themes/tailwind_css.rb
63
63
  - lib/bullet_train/themes/tailwind_css/engine.rb
64
- - lib/bullet_train/themes/tailwind_css/theme.rb
65
64
  - lib/bullet_train/themes/tailwind_css/version.rb
66
65
  - lib/tasks/bullet_train/themes/tailwind_css_tasks.rake
67
66
  homepage: https://github.com/bullet-train-co/bullet_train-themes-tailwind_css
@@ -1,11 +0,0 @@
1
- module BulletTrain
2
- module Themes
3
- module TailwindCss
4
- class Theme < Base::Theme
5
- def directory_order
6
- ['tailwind_css'] + super
7
- end
8
- end
9
- end
10
- end
11
- end