bullet_train-themes-testing 1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.bt-link +0 -0
- data/MIT-LICENSE +20 -0
- data/README.md +28 -0
- data/Rakefile +8 -0
- data/app/assets/config/bullet_train_themes_testing_manifest.js +0 -0
- data/app/assets/stylesheets/tailwindcss/base.css +1 -0
- data/app/assets/stylesheets/tailwindcss/components.css +1 -0
- data/app/assets/stylesheets/tailwindcss/utilities.css +1 -0
- data/app/assets/stylesheets/testing/actiontext.css +26 -0
- data/app/assets/stylesheets/testing/application.css +33 -0
- data/app/assets/stylesheets/testing/electron.css +46 -0
- data/app/assets/stylesheets/testing/fields/cloudinary_image.css +58 -0
- data/app/assets/stylesheets/testing/fields/date_field.css +19 -0
- data/app/assets/stylesheets/testing/fields/index.css +5 -0
- data/app/assets/stylesheets/testing/fields/phone_field.css +7 -0
- data/app/assets/stylesheets/testing/fields/super_select.css +103 -0
- data/app/assets/stylesheets/testing/fields/trix_editor.css +90 -0
- data/app/assets/stylesheets/testing/mailer.scss +359 -0
- data/app/assets/stylesheets/testing/tailwind/colors.css +100 -0
- data/app/assets/stylesheets/testing/tailwind/components.css +151 -0
- data/app/assets/stylesheets/testing/tailwind/dark-mode.css +218 -0
- data/app/assets/stylesheets/testing/tailwind/utilities.css +49 -0
- data/app/assets/stylesheets/testing/turn.css +44 -0
- data/app/assets/stylesheets/testing.tailwind.css +5 -0
- data/app/javascript/application.testing.js +0 -0
- data/app/views/themes/testing/_alert.html.erb +13 -0
- data/app/views/themes/testing/_box.html.erb +66 -0
- data/app/views/themes/testing/_breadcrumb.html.erb +23 -0
- data/app/views/themes/testing/_cell.html.erb +41 -0
- data/app/views/themes/testing/_decision_line.html.erb +12 -0
- data/app/views/themes/testing/_line.html.erb +3 -0
- data/app/views/themes/testing/_notices.html.erb +15 -0
- data/app/views/themes/testing/_page.html.erb +12 -0
- data/app/views/themes/testing/_title.html.erb +18 -0
- data/app/views/themes/testing/attributes/_base.html.erb +30 -0
- data/app/views/themes/testing/attributes/_block.html.erb +9 -0
- data/app/views/themes/testing/breadcrumbs/_actions.html.erb +22 -0
- data/app/views/themes/testing/commentary/_box.html.erb +13 -0
- data/app/views/themes/testing/conversations/_card.html.erb +21 -0
- data/app/views/themes/testing/conversations/_comment.html.erb +26 -0
- data/app/views/themes/testing/conversations/_message.html.erb +136 -0
- data/app/views/themes/testing/conversations/_thread_border.html.erb +3 -0
- data/app/views/themes/testing/fields/_field.html.erb +81 -0
- data/app/views/themes/testing/forms/_errors.html.erb +14 -0
- data/app/views/themes/testing/layouts/_account.html.erb +138 -0
- data/app/views/themes/testing/layouts/_devise.html.erb +11 -0
- data/app/views/themes/testing/layouts/_head.html.erb +8 -0
- data/app/views/themes/testing/layouts/_mailer.html.erb +429 -0
- data/app/views/themes/testing/memberships/_photos.html.erb +18 -0
- data/app/views/themes/testing/menu/_heading.html.erb +3 -0
- data/app/views/themes/testing/menu/_item.html.erb +16 -0
- data/app/views/themes/testing/menu/_section.html.erb +7 -0
- data/app/views/themes/testing/workflow/_box.html.erb +30 -0
- data/config/routes.rb +2 -0
- data/lib/bullet_train/themes/testing/engine.rb +12 -0
- data/lib/bullet_train/themes/testing/version.rb +7 -0
- data/lib/bullet_train/themes/testing.rb +16 -0
- data/lib/tasks/bullet_train/themes/testing_tasks.rake +53 -0
- data/tailwind.testing.config.js +80 -0
- metadata +132 -0
metadata
ADDED
@@ -0,0 +1,132 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: bullet_train-themes-testing
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: '1.0'
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Gabriel Zayas
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2022-06-17 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: rails
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ">="
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: 7.0.0
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ">="
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: 7.0.0
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: bullet_train-themes-tailwind_css
|
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'
|
41
|
+
description: 'Bullet Train Themes: Testing'
|
42
|
+
email:
|
43
|
+
- g-zayas@hotmail.com
|
44
|
+
executables: []
|
45
|
+
extensions: []
|
46
|
+
extra_rdoc_files: []
|
47
|
+
files:
|
48
|
+
- ".bt-link"
|
49
|
+
- MIT-LICENSE
|
50
|
+
- README.md
|
51
|
+
- Rakefile
|
52
|
+
- app/assets/config/bullet_train_themes_testing_manifest.js
|
53
|
+
- app/assets/stylesheets/tailwindcss/base.css
|
54
|
+
- app/assets/stylesheets/tailwindcss/components.css
|
55
|
+
- app/assets/stylesheets/tailwindcss/utilities.css
|
56
|
+
- app/assets/stylesheets/testing.tailwind.css
|
57
|
+
- app/assets/stylesheets/testing/actiontext.css
|
58
|
+
- app/assets/stylesheets/testing/application.css
|
59
|
+
- app/assets/stylesheets/testing/electron.css
|
60
|
+
- app/assets/stylesheets/testing/fields/cloudinary_image.css
|
61
|
+
- app/assets/stylesheets/testing/fields/date_field.css
|
62
|
+
- app/assets/stylesheets/testing/fields/index.css
|
63
|
+
- app/assets/stylesheets/testing/fields/phone_field.css
|
64
|
+
- app/assets/stylesheets/testing/fields/super_select.css
|
65
|
+
- app/assets/stylesheets/testing/fields/trix_editor.css
|
66
|
+
- app/assets/stylesheets/testing/mailer.scss
|
67
|
+
- app/assets/stylesheets/testing/tailwind/colors.css
|
68
|
+
- app/assets/stylesheets/testing/tailwind/components.css
|
69
|
+
- app/assets/stylesheets/testing/tailwind/dark-mode.css
|
70
|
+
- app/assets/stylesheets/testing/tailwind/utilities.css
|
71
|
+
- app/assets/stylesheets/testing/turn.css
|
72
|
+
- app/javascript/application.testing.js
|
73
|
+
- app/views/themes/testing/_alert.html.erb
|
74
|
+
- app/views/themes/testing/_box.html.erb
|
75
|
+
- app/views/themes/testing/_breadcrumb.html.erb
|
76
|
+
- app/views/themes/testing/_cell.html.erb
|
77
|
+
- app/views/themes/testing/_decision_line.html.erb
|
78
|
+
- app/views/themes/testing/_line.html.erb
|
79
|
+
- app/views/themes/testing/_notices.html.erb
|
80
|
+
- app/views/themes/testing/_page.html.erb
|
81
|
+
- app/views/themes/testing/_title.html.erb
|
82
|
+
- app/views/themes/testing/attributes/_base.html.erb
|
83
|
+
- app/views/themes/testing/attributes/_block.html.erb
|
84
|
+
- app/views/themes/testing/breadcrumbs/_actions.html.erb
|
85
|
+
- app/views/themes/testing/commentary/_box.html.erb
|
86
|
+
- app/views/themes/testing/conversations/_card.html.erb
|
87
|
+
- app/views/themes/testing/conversations/_comment.html.erb
|
88
|
+
- app/views/themes/testing/conversations/_message.html.erb
|
89
|
+
- app/views/themes/testing/conversations/_thread_border.html.erb
|
90
|
+
- app/views/themes/testing/fields/_field.html.erb
|
91
|
+
- app/views/themes/testing/forms/_errors.html.erb
|
92
|
+
- app/views/themes/testing/layouts/_account.html.erb
|
93
|
+
- app/views/themes/testing/layouts/_devise.html.erb
|
94
|
+
- app/views/themes/testing/layouts/_head.html.erb
|
95
|
+
- app/views/themes/testing/layouts/_mailer.html.erb
|
96
|
+
- app/views/themes/testing/memberships/_photos.html.erb
|
97
|
+
- app/views/themes/testing/menu/_heading.html.erb
|
98
|
+
- app/views/themes/testing/menu/_item.html.erb
|
99
|
+
- app/views/themes/testing/menu/_section.html.erb
|
100
|
+
- app/views/themes/testing/workflow/_box.html.erb
|
101
|
+
- config/routes.rb
|
102
|
+
- lib/bullet_train/themes/testing.rb
|
103
|
+
- lib/bullet_train/themes/testing/engine.rb
|
104
|
+
- lib/bullet_train/themes/testing/version.rb
|
105
|
+
- lib/tasks/bullet_train/themes/testing_tasks.rake
|
106
|
+
- tailwind.testing.config.js
|
107
|
+
homepage: https://github.com/bullet-train-co/bullet_train-themes-testing
|
108
|
+
licenses:
|
109
|
+
- MIT
|
110
|
+
metadata:
|
111
|
+
homepage_uri: https://github.com/bullet-train-co/bullet_train-themes-testing
|
112
|
+
source_code_uri: https://github.com/bullet-train-co/bullet_train-themes-testing
|
113
|
+
post_install_message:
|
114
|
+
rdoc_options: []
|
115
|
+
require_paths:
|
116
|
+
- lib
|
117
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
118
|
+
requirements:
|
119
|
+
- - ">="
|
120
|
+
- !ruby/object:Gem::Version
|
121
|
+
version: '0'
|
122
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
123
|
+
requirements:
|
124
|
+
- - ">="
|
125
|
+
- !ruby/object:Gem::Version
|
126
|
+
version: '0'
|
127
|
+
requirements: []
|
128
|
+
rubygems_version: 3.3.7
|
129
|
+
signing_key:
|
130
|
+
specification_version: 4
|
131
|
+
summary: 'Bullet Train Themes: Testing'
|
132
|
+
test_files: []
|