tailwind_view_components 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: c69df1786c55285d05e683832a12c39392288a144d765d207dec4874f0c9c996
4
+ data.tar.gz: 79eb8448dae022ce9055174cf1800b51023d826b769b9788d8b39c1a2cba1eda
5
+ SHA512:
6
+ metadata.gz: 3756b901a44fa71fd33d20eb099596c8850a6244f4a05209f7e12062b17006ae3ac4b45d95010ee6f7993477f4f2c0e7105f1fda883e1926544081244d6ef1b4
7
+ data.tar.gz: 9f5ec9a81ffab21454a369edf11e6a72d49e572924732e868c8ed42a30d137ce6cd363bdb21d488cccdcdb4476e6c5cb715e803fd349d58f7b62039d62534526
data/CHANGELOG.md ADDED
File without changes
data/README.md ADDED
@@ -0,0 +1,19 @@
1
+ <h1 align="center">Tailwind::ViewComponents</h1>
2
+
3
+ <p align="center">ViewComponents for the TailwindCSS and TailwindUI(Not included)</p>
4
+
5
+ ## Installation
6
+
7
+ In `Gemfile`, add:
8
+
9
+ ```ruby
10
+ gem "tailwind_view_components"
11
+ ```
12
+
13
+ ## Contributing
14
+
15
+ Bug reports and pull requests are welcome on GitHub at https://github.com/chunlea/tailwind_view_components. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
16
+
17
+ ## License
18
+
19
+ The gem is available as open-source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
@@ -0,0 +1,8 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'tailwind/view_components/version'
4
+
5
+ module Tailwind
6
+ module ViewComponents
7
+ end
8
+ end
@@ -0,0 +1,13 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Tailwind
4
+ module ViewComponents
5
+ module VERSION
6
+ MAJOR = 0
7
+ MINOR = 0
8
+ PATCH = 1
9
+
10
+ STRING = [MAJOR, MINOR, PATCH].join('.')
11
+ end
12
+ end
13
+ end
metadata ADDED
@@ -0,0 +1,48 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: tailwind_view_components
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Chunlea
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2021-04-05 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description:
14
+ email:
15
+ - ichunlea@me.com
16
+ executables: []
17
+ extensions: []
18
+ extra_rdoc_files: []
19
+ files:
20
+ - CHANGELOG.md
21
+ - README.md
22
+ - lib/tailwind/view_components.rb
23
+ - lib/tailwind/view_components/version.rb
24
+ homepage: https://github.com/chunlea/tailwind_view_components
25
+ licenses:
26
+ - MIT
27
+ metadata:
28
+ allowed_push_host: https://rubygems.org
29
+ post_install_message:
30
+ rdoc_options: []
31
+ require_paths:
32
+ - lib
33
+ required_ruby_version: !ruby/object:Gem::Requirement
34
+ requirements:
35
+ - - ">="
36
+ - !ruby/object:Gem::Version
37
+ version: 2.4.0
38
+ required_rubygems_version: !ruby/object:Gem::Requirement
39
+ requirements:
40
+ - - ">="
41
+ - !ruby/object:Gem::Version
42
+ version: '0'
43
+ requirements: []
44
+ rubygems_version: 3.2.4
45
+ signing_key:
46
+ specification_version: 4
47
+ summary: ViewComponents for the TailwindCSS and TailwindUI(Not included)
48
+ test_files: []