tailwind_dsl 0.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.builders/_.rb +1 -0
- data/.builders/boot.rb +65 -0
- data/.builders/generators/01-bootstrap.rb +130 -0
- data/.releaserc.json +40 -0
- data/.rspec +3 -0
- data/.rubocop.yml +89 -0
- data/CHANGELOG.md +5 -0
- data/CODE_OF_CONDUCT.md +74 -0
- data/Gemfile +21 -0
- data/Guardfile +30 -0
- data/LICENSE.txt +21 -0
- data/README.md +82 -0
- data/Rakefile +34 -0
- data/bin/console +16 -0
- data/bin/setup +11 -0
- data/lib/tailwind_dsl/version.rb +5 -0
- data/lib/tailwind_dsl.rb +17 -0
- data/package-lock.json +10685 -0
- data/package.json +14 -0
- data/sig/tailwind_dsl.rbs +4 -0
- metadata +80 -0
data/package.json
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "tailwind_dsl",
|
|
3
|
+
"version": "0.0.2",
|
|
4
|
+
"description": "Tailwind DSL will build tailwind websites useing Domain Specific Language conventions",
|
|
5
|
+
"scripts": {
|
|
6
|
+
"release": "semantic-release"
|
|
7
|
+
},
|
|
8
|
+
"devDependencies": {
|
|
9
|
+
"@klueless-js/semantic-release-rubygem": "github:klueless-js/semantic-release-rubygem",
|
|
10
|
+
"@semantic-release/changelog": "^6.0.1",
|
|
11
|
+
"@semantic-release/git": "^10.0.1",
|
|
12
|
+
"semantic-release": "^19.0.2"
|
|
13
|
+
}
|
|
14
|
+
}
|
metadata
ADDED
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: tailwind_dsl
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.0.2
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- David Cruwys
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: exe
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2022-04-01 00:00:00.000000000 Z
|
|
12
|
+
dependencies:
|
|
13
|
+
- !ruby/object:Gem::Dependency
|
|
14
|
+
name: k_log
|
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
|
16
|
+
requirements:
|
|
17
|
+
- - "~>"
|
|
18
|
+
- !ruby/object:Gem::Version
|
|
19
|
+
version: 0.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: 0.0.0
|
|
27
|
+
description: " Tailwind DSL will build tailwind websites useing Domain Specific
|
|
28
|
+
Language conventions\n"
|
|
29
|
+
email:
|
|
30
|
+
- david@ideasmen.com.au
|
|
31
|
+
executables: []
|
|
32
|
+
extensions: []
|
|
33
|
+
extra_rdoc_files: []
|
|
34
|
+
files:
|
|
35
|
+
- ".builders/_.rb"
|
|
36
|
+
- ".builders/boot.rb"
|
|
37
|
+
- ".builders/generators/01-bootstrap.rb"
|
|
38
|
+
- ".releaserc.json"
|
|
39
|
+
- ".rspec"
|
|
40
|
+
- ".rubocop.yml"
|
|
41
|
+
- CHANGELOG.md
|
|
42
|
+
- CODE_OF_CONDUCT.md
|
|
43
|
+
- Gemfile
|
|
44
|
+
- Guardfile
|
|
45
|
+
- LICENSE.txt
|
|
46
|
+
- README.md
|
|
47
|
+
- Rakefile
|
|
48
|
+
- bin/console
|
|
49
|
+
- bin/setup
|
|
50
|
+
- lib/tailwind_dsl.rb
|
|
51
|
+
- lib/tailwind_dsl/version.rb
|
|
52
|
+
- package-lock.json
|
|
53
|
+
- package.json
|
|
54
|
+
- sig/tailwind_dsl.rbs
|
|
55
|
+
homepage: http://appydave.com/gems/tailwind_dsl
|
|
56
|
+
licenses:
|
|
57
|
+
- MIT
|
|
58
|
+
metadata:
|
|
59
|
+
rubygems_mfa_required: 'true'
|
|
60
|
+
post_install_message:
|
|
61
|
+
rdoc_options: []
|
|
62
|
+
require_paths:
|
|
63
|
+
- lib
|
|
64
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
65
|
+
requirements:
|
|
66
|
+
- - ">="
|
|
67
|
+
- !ruby/object:Gem::Version
|
|
68
|
+
version: '2.7'
|
|
69
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
70
|
+
requirements:
|
|
71
|
+
- - ">="
|
|
72
|
+
- !ruby/object:Gem::Version
|
|
73
|
+
version: '0'
|
|
74
|
+
requirements: []
|
|
75
|
+
rubygems_version: 3.1.2
|
|
76
|
+
signing_key:
|
|
77
|
+
specification_version: 4
|
|
78
|
+
summary: Tailwind DSL will build tailwind websites useing Domain Specific Language
|
|
79
|
+
conventions
|
|
80
|
+
test_files: []
|