bullet_train-themes-tailwind_css 1.0.3 → 1.0.6

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: dad658c2bb89863b9ced4e4e3f05293c5061ed9b19baddaf3d67485a599386c0
4
- data.tar.gz: 86781f957e1b1bae85ba2c4740c8fb69e276c2690cc786c01f144d4bd6fec466
3
+ metadata.gz: ce7f353110f0859d1b2fcbf1c4ac3aad41e6d6f87a6eb5c3f05adaa3f4977758
4
+ data.tar.gz: 25afbcf9d52c8d9aee44f0e76b092aa5ee9ebbd7e8738a62b1a56fa10790542a
5
5
  SHA512:
6
- metadata.gz: 3fe24c995612f3aac4af676db5d0315747a9e7bf0541014a65c2c7931e897add08bea9e0b130d1189fb2428341d2f0e7a6ce00239d9df141a782ee1072b186d4
7
- data.tar.gz: f40d448bedb5aea166322185106d097210def6f7a652a87d345a9fa341cb57d1e178c9a52fdc8cc200fde1be1748c294a1c62f08cb19762d038c1a04cad895ed
6
+ metadata.gz: 146fc0956f7bc3ea84365fd35803172fbca852f13da2a4a7c98af9b8ffa71cefac233c9a06c58baf440d6a343aedbd9a3cc00a8db2c76d9f1d8bd121ccb02c3a
7
+ data.tar.gz: 1860f470767322f3d5dd7bc2c7d7e89f13af08ae1fff9bbea789127ce4fb54ea9f82aaa8ccffbe4c3ad5ddcd3c525f327a39a5c300309f3364fd56db3382cab7
@@ -2,6 +2,9 @@ module BulletTrain
2
2
  module Themes
3
3
  module TailwindCss
4
4
  class Engine < ::Rails::Engine
5
+ initializer "bullet_train.themes.tailwind_css.register" do |app|
6
+ BulletTrain.linked_gems << "bullet_train-themes-tailwind_css"
7
+ end
5
8
  end
6
9
  end
7
10
  end
@@ -1,7 +1,7 @@
1
1
  module BulletTrain
2
2
  module Themes
3
3
  module TailwindCss
4
- VERSION = "1.0.3"
4
+ VERSION = "1.0.6"
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,14 +1,14 @@
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.3
4
+ version: 1.0.6
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-02-16 00:00:00.000000000 Z
11
+ date: 2022-02-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -24,6 +24,20 @@ dependencies:
24
24
  - - ">="
25
25
  - !ruby/object:Gem::Version
26
26
  version: 7.0.0
27
+ - !ruby/object:Gem::Dependency
28
+ name: bullet_train-themes
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
27
41
  description: Bullet Train Themes Tailwind CSS Base
28
42
  email:
29
43
  - andrew.culver@gmail.com
@@ -47,7 +61,6 @@ files:
47
61
  - config/routes.rb
48
62
  - lib/bullet_train/themes/tailwind_css.rb
49
63
  - lib/bullet_train/themes/tailwind_css/engine.rb
50
- - lib/bullet_train/themes/tailwind_css/theme.rb
51
64
  - lib/bullet_train/themes/tailwind_css/version.rb
52
65
  - lib/tasks/bullet_train/themes/tailwind_css_tasks.rake
53
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