maquina-components 0.1.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: f0f4bc77b94379658acd2eb8a4861dd9e93c70ae5030553892eae3e8ec8ce660
4
+ data.tar.gz: 84502d8a40444a30ec4d3d113c53cb495dbed92e683c62b855877b73097f6fbf
5
+ SHA512:
6
+ metadata.gz: 54af9ab2d08c6f8e74a0722377573aaa8434f28d8c592daff680ad660d14f666b78fc8c16aebfcaac13b1a715e7e1c7f3376368802cc956aba533b1b5915d0f2
7
+ data.tar.gz: a4044c1f428042c543f940bc601ccb02eb9f88250fd84226cdb6f9b73a04817ecadc23bf93c8ee7951a9ab54afdb6c728490b3a85ddb1190dc35eea74008fc50
data/MIT-LICENSE ADDED
@@ -0,0 +1,20 @@
1
+ Copyright Mario Alberto Chávez
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,28 @@
1
+ # MaquinaComponents
2
+ Short description and motivation.
3
+
4
+ ## Usage
5
+ How to use my plugin.
6
+
7
+ ## Installation
8
+ Add this line to your application's Gemfile:
9
+
10
+ ```ruby
11
+ gem "maquina_components"
12
+ ```
13
+
14
+ And then execute:
15
+ ```bash
16
+ $ bundle
17
+ ```
18
+
19
+ Or install it yourself as:
20
+ ```bash
21
+ $ gem install maquina_components
22
+ ```
23
+
24
+ ## Contributing
25
+ Contribution directions go here.
26
+
27
+ ## License
28
+ The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
data/Rakefile ADDED
@@ -0,0 +1,3 @@
1
+ require "bundler/setup"
2
+
3
+ require "bundler/gem_tasks"
@@ -0,0 +1,6 @@
1
+ require "maquina_components/version"
2
+ require "maquina_components/engine"
3
+
4
+ module MaquinaComponents
5
+ # Your code goes here...
6
+ end
@@ -0,0 +1,4 @@
1
+ module MaquinaComponents
2
+ class Engine < ::Rails::Engine
3
+ end
4
+ end
@@ -0,0 +1,3 @@
1
+ module MaquinaComponents
2
+ VERSION = "0.1.1"
3
+ end
@@ -0,0 +1,4 @@
1
+ # desc "Explaining what the task does"
2
+ # task :maquina_components do
3
+ # # Task goes here
4
+ # end
metadata ADDED
@@ -0,0 +1,64 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: maquina-components
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.1
5
+ platform: ruby
6
+ authors:
7
+ - Mario Alberto Chávez
8
+ bindir: bin
9
+ cert_chain: []
10
+ date: 2025-01-15 00:00:00.000000000 Z
11
+ dependencies:
12
+ - !ruby/object:Gem::Dependency
13
+ name: rails
14
+ requirement: !ruby/object:Gem::Requirement
15
+ requirements:
16
+ - - ">="
17
+ - !ruby/object:Gem::Version
18
+ version: 8.0.0
19
+ type: :runtime
20
+ prerelease: false
21
+ version_requirements: !ruby/object:Gem::Requirement
22
+ requirements:
23
+ - - ">="
24
+ - !ruby/object:Gem::Version
25
+ version: 8.0.0
26
+ description: ERB, TailwindCSS, and StimulusJS UI components based on Shadcn/UI.
27
+ email:
28
+ - mario.chavez@gmail.com
29
+ executables: []
30
+ extensions: []
31
+ extra_rdoc_files: []
32
+ files:
33
+ - MIT-LICENSE
34
+ - README.md
35
+ - Rakefile
36
+ - lib/maquina-components.rb
37
+ - lib/maquina_components/engine.rb
38
+ - lib/maquina_components/version.rb
39
+ - lib/tasks/maquina_components_tasks.rake
40
+ homepage: https://maquina.app
41
+ licenses:
42
+ - MIT
43
+ metadata:
44
+ homepage_uri: https://maquina.app
45
+ source_code_uri: https://github.com/maquina-app/maquina_components
46
+ changelog_uri: https://github.com/maquina-app/maquina_components
47
+ rdoc_options: []
48
+ require_paths:
49
+ - lib
50
+ required_ruby_version: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ required_rubygems_version: !ruby/object:Gem::Requirement
56
+ requirements:
57
+ - - ">="
58
+ - !ruby/object:Gem::Version
59
+ version: '0'
60
+ requirements: []
61
+ rubygems_version: 3.6.2
62
+ specification_version: 4
63
+ summary: ERB, TailwindCSS, and StimulusJS UI components based on Shadcn/UI.
64
+ test_files: []