turbo-spark 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,4 @@
1
+ module HotwireSpark
2
+ class ApplicationController < ActionController::Base
3
+ end
4
+ end
@@ -0,0 +1,4 @@
1
+ module HotwireSpark
2
+ module ApplicationHelper
3
+ end
4
+ end
@@ -0,0 +1,4 @@
1
+ module HotwireSpark
2
+ class ApplicationJob < ActiveJob::Base
3
+ end
4
+ end
@@ -0,0 +1,6 @@
1
+ module HotwireSpark
2
+ class ApplicationMailer < ActionMailer::Base
3
+ default from: "from@example.com"
4
+ layout "mailer"
5
+ end
6
+ end
@@ -0,0 +1,5 @@
1
+ module HotwireSpark
2
+ class ApplicationRecord < ActiveRecord::Base
3
+ self.abstract_class = true
4
+ end
5
+ end
@@ -0,0 +1,17 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>Hotwire Spark</title>
5
+ <%= csrf_meta_tags %>
6
+ <%= csp_meta_tag %>
7
+
8
+ <%= yield :head %>
9
+
10
+ <%= stylesheet_link_tag "hotwire_spark/application", media: "all" %>
11
+ </head>
12
+ <body>
13
+
14
+ <%= yield %>
15
+
16
+ </body>
17
+ </html>
data/config/routes.rb ADDED
@@ -0,0 +1,2 @@
1
+ HotwireSpark::Engine.routes.draw do
2
+ end
@@ -0,0 +1,7 @@
1
+ require "action_cable/server/base"
2
+
3
+ module HotwireSpark
4
+ class Engine < ::Rails::Engine
5
+ isolate_namespace HotwireSpark
6
+ end
7
+ end
@@ -0,0 +1,3 @@
1
+ module HotwireSpark
2
+ VERSION = "0.0.1"
3
+ end
@@ -0,0 +1,5 @@
1
+ require "hotwire_spark/version"
2
+ require "hotwire_spark/engine"
3
+
4
+ module HotwireSpark
5
+ end
@@ -0,0 +1,4 @@
1
+ # desc "Explaining what the task does"
2
+ # task :hotwire_spark do
3
+ # # Task goes here
4
+ # end
metadata ADDED
@@ -0,0 +1,80 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: turbo-spark
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Jorge Manrubia
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2024-12-16 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: 8.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: 8.0.0
27
+ description: "\U0001F92B"
28
+ email:
29
+ - jorge@37signals.com
30
+ executables: []
31
+ extensions: []
32
+ extra_rdoc_files: []
33
+ files:
34
+ - MIT-LICENSE
35
+ - README.md
36
+ - Rakefile
37
+ - app/assets/javascripts/hotwire_spark.js
38
+ - app/assets/javascripts/hotwire_spark.js.map
39
+ - app/assets/javascripts/hotwire_spark.min.js
40
+ - app/assets/javascripts/hotwire_spark.min.js.map
41
+ - app/assets/stylesheets/hotwire_spark/application.css
42
+ - app/channels/hotwire_spark/channel.rb
43
+ - app/controllers/hotwire_spark/application_controller.rb
44
+ - app/helpers/hotwire_spark/application_helper.rb
45
+ - app/jobs/hotwire_spark/application_job.rb
46
+ - app/mailers/hotwire_spark/application_mailer.rb
47
+ - app/models/hotwire_spark/application_record.rb
48
+ - app/views/layouts/hotwire_spark/application.html.erb
49
+ - config/routes.rb
50
+ - lib/hotwire_spark.rb
51
+ - lib/hotwire_spark/engine.rb
52
+ - lib/hotwire_spark/version.rb
53
+ - lib/tasks/hotwire_spark_tasks.rake
54
+ homepage: https://github.com/basecamp/hotwire_spark
55
+ licenses:
56
+ - MIT
57
+ metadata:
58
+ homepage_uri: https://github.com/basecamp/hotwire_spark
59
+ source_code_uri: https://github.com/basecamp/hotwire_spark
60
+ changelog_uri: https://github.com/basecamp/hotwire_spark
61
+ post_install_message:
62
+ rdoc_options: []
63
+ require_paths:
64
+ - lib
65
+ required_ruby_version: !ruby/object:Gem::Requirement
66
+ requirements:
67
+ - - ">="
68
+ - !ruby/object:Gem::Version
69
+ version: '0'
70
+ required_rubygems_version: !ruby/object:Gem::Requirement
71
+ requirements:
72
+ - - ">="
73
+ - !ruby/object:Gem::Version
74
+ version: '0'
75
+ requirements: []
76
+ rubygems_version: 3.5.22
77
+ signing_key:
78
+ specification_version: 4
79
+ summary: "\U0001F92B"
80
+ test_files: []