rtk-rails 0.1.0

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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: c5fda547cddddae72ea12715ea8e5d715a42e0fd694ebc1dd95eac95d086681b
4
+ data.tar.gz: 4d7329cb4b8c91ff6f106c891e2dd3df9d616a695f1830940d9cadc4c563b9b5
5
+ SHA512:
6
+ metadata.gz: 70cfa5a3a1c080b40e0c4fa42d86e52ca5dcdfc08c449474f632553ecf5abc311ea0a1fb4eb1941ab78a441c16b1d5174b9fdcbc82eeffd20678be334e8eff5f
7
+ data.tar.gz: 6d8a0feddc5c307fa53d38f5f58bce2afbe8b72d9685b72cc2e5eb764ee129bb0b13b7c6a4bb5becc3ded4fd2e8d009c885854a892ba1dc9ef6230519d80c25f
data/MIT-LICENSE ADDED
@@ -0,0 +1,20 @@
1
+ Copyright 2021 Iago Bozza
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
+ # Rails::Rtk
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 'rails-rtk'
12
+ ```
13
+
14
+ And then execute:
15
+ ```bash
16
+ $ bundle
17
+ ```
18
+
19
+ Or install it yourself as:
20
+ ```bash
21
+ $ gem install rails-rtk
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"
File without changes
File without changes
File without changes
@@ -0,0 +1,4 @@
1
+ module RTK
2
+ class Railtie < ::Rails::Railtie
3
+ end
4
+ end
@@ -0,0 +1,3 @@
1
+ module RTK
2
+ VERSION = '0.1.0'
3
+ end
data/lib/rtk.rb ADDED
@@ -0,0 +1,6 @@
1
+ require "rtk/version"
2
+ require "rtk/railtie"
3
+
4
+ module RTK
5
+ # Your code goes here...
6
+ end
@@ -0,0 +1,4 @@
1
+ # desc "Explaining what the task does"
2
+ # task :rtk_rails do
3
+ # # Task goes here
4
+ # end
metadata ADDED
@@ -0,0 +1,78 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: rtk-rails
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Iago Bozza
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2021-10-22 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: 6.1.4
20
+ - - ">="
21
+ - !ruby/object:Gem::Version
22
+ version: 6.1.4.1
23
+ type: :runtime
24
+ prerelease: false
25
+ version_requirements: !ruby/object:Gem::Requirement
26
+ requirements:
27
+ - - "~>"
28
+ - !ruby/object:Gem::Version
29
+ version: 6.1.4
30
+ - - ">="
31
+ - !ruby/object:Gem::Version
32
+ version: 6.1.4.1
33
+ description: Rails RTK is a set of generators to help you set up andmanage your Rails/React/Redux
34
+ application. It includes generators to installand setup React and Redux, including
35
+ RTK Query.
36
+ email:
37
+ - iagobozza@writeonlycode.io
38
+ executables: []
39
+ extensions: []
40
+ extra_rdoc_files: []
41
+ files:
42
+ - MIT-LICENSE
43
+ - README.md
44
+ - Rakefile
45
+ - lib/generators/query/install_generator.rb
46
+ - lib/generators/react/install_generator.rb
47
+ - lib/generators/redux/install_generator.rb
48
+ - lib/rtk.rb
49
+ - lib/rtk/railtie.rb
50
+ - lib/rtk/version.rb
51
+ - lib/tasks/rtk_tasks.rake
52
+ homepage: https://gitlab.com/writeonlyrails/rails-rtk/
53
+ licenses:
54
+ - MIT
55
+ metadata:
56
+ homepage_uri: https://gitlab.com/writeonlyrails/rails-rtk
57
+ source_code_uri: https://gitlab.com/writeonlyrails/rails-rtk
58
+ changelog_uri: https://gitlab.com/writeonlyrails/rails-rtk/-/blob/master/CHANGELOG.md
59
+ post_install_message:
60
+ rdoc_options: []
61
+ require_paths:
62
+ - lib
63
+ required_ruby_version: !ruby/object:Gem::Requirement
64
+ requirements:
65
+ - - ">="
66
+ - !ruby/object:Gem::Version
67
+ version: '0'
68
+ required_rubygems_version: !ruby/object:Gem::Requirement
69
+ requirements:
70
+ - - ">="
71
+ - !ruby/object:Gem::Version
72
+ version: '0'
73
+ requirements: []
74
+ rubygems_version: 3.2.22
75
+ signing_key:
76
+ specification_version: 4
77
+ summary: Rails RTK is a set of generators for Rails, React and Redux-Toolkit.
78
+ test_files: []