turbo-spark 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/MIT-LICENSE +20 -0
- data/README.md +28 -0
- data/Rakefile +8 -0
- data/app/assets/javascripts/hotwire_spark.js +3701 -0
- data/app/assets/javascripts/hotwire_spark.js.map +1 -0
- data/app/assets/javascripts/hotwire_spark.min.js +2 -0
- data/app/assets/javascripts/hotwire_spark.min.js.map +1 -0
- data/app/assets/stylesheets/hotwire_spark/application.css +15 -0
- data/app/channels/hotwire_spark/channel.rb +5 -0
- data/app/controllers/hotwire_spark/application_controller.rb +4 -0
- data/app/helpers/hotwire_spark/application_helper.rb +4 -0
- data/app/jobs/hotwire_spark/application_job.rb +4 -0
- data/app/mailers/hotwire_spark/application_mailer.rb +6 -0
- data/app/models/hotwire_spark/application_record.rb +5 -0
- data/app/views/layouts/hotwire_spark/application.html.erb +17 -0
- data/config/routes.rb +2 -0
- data/lib/hotwire_spark/engine.rb +7 -0
- data/lib/hotwire_spark/version.rb +3 -0
- data/lib/hotwire_spark.rb +5 -0
- data/lib/tasks/hotwire_spark_tasks.rake +4 -0
- metadata +80 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 4dddab34bd84fb22f46f1112fd4ec75ee82dce742669629eab0ed6e20e39f2ae
|
4
|
+
data.tar.gz: 1033c0aea2ef42081464b45b09ac761ed37e6a6a6ce63310a61942e97615c0fa
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: a6234054f178e8387d7b7d8d3609a15d515d2cf99ebd327a0cf8a4610e2b7da7e6dc18baa078467454f0eea5048413949fd3699631227a5cf4cf7169ef0dab5a
|
7
|
+
data.tar.gz: '08e6a01033e771430e93f84fe43a84afcdb572804768bb53b04ed96d604656f823a78e6e7c8c3e4d8468e9a76bf6cf45076e8b4f8a2a5df79fc6fec98c974308'
|
data/MIT-LICENSE
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
Copyright Jorge Manrubia
|
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
|
+
# HotwireSpark
|
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 "hotwire_spark"
|
12
|
+
```
|
13
|
+
|
14
|
+
And then execute:
|
15
|
+
```bash
|
16
|
+
$ bundle
|
17
|
+
```
|
18
|
+
|
19
|
+
Or install it yourself as:
|
20
|
+
```bash
|
21
|
+
$ gem install hotwire_spark
|
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).
|