hotwire-rails 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 306d93e5b313cb3b4e0a4737109c6b5676b40362b519b59744d4cc3af50a429a
4
+ data.tar.gz: 2981033593339c259c19dd8a1013e49454104080dd1986c9c611522c6252bb14
5
+ SHA512:
6
+ metadata.gz: 40b56adcbb511ad822bddebe037648b38baf2ec791865379d4c51af6fdf3318ac839a0116cb0ba8fc24c6f067279c7218503920762e90d317d4e2b7f63e4bd08
7
+ data.tar.gz: ad52d13e77359c688a4909412e7e3b40473ce888c2f01426f460a8a12e04e4c841046f9d795374ea8ef916e8f51a18d9da6f55a1a90500f39c0bb448030fb08e
@@ -0,0 +1,20 @@
1
+ Copyright (c) 2020 Basecamp
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.
@@ -0,0 +1,26 @@
1
+ # Hotwire for Rails
2
+
3
+ [Hotwire](https://hotwire.dev) is an alternative approach to building modern web applications without using much JavaScript by sending HTML instead of JSON over the wire. This makes for fast first-load pages, keeps template rendering on the server, and allows for a simpler, more productive development experience in any programming language, without sacrificing any of the speed or responsiveness associated with a traditional single-page application.
4
+
5
+ The heart of Hotwire is Turbo. A set of complimentary techniques for speeding up page changes and form submissions, dividing complex pages into components, and stream partial page updates over WebSocket. All without writing any JavaScript at all. And designed from the start to integrate perfectly with native hybrid applications for iOS and Android.
6
+
7
+ While Turbo usually takes care of at least 80% of the interactivity that traditionally would have required JavaScript, there are still cases where a dash of custom code is required. Stimulus makes this easy with a HTML-centric approach to state and wiring.
8
+
9
+ This gem installs both Turbo and Stimulus into your Rails application for use with ES6/ESM in the browser.
10
+
11
+
12
+ ## Installation
13
+
14
+ 1. Add the `hotwire-rails` gem to your Gemfile: `gem 'hotwire-rails'`
15
+ 2. Run `./bin/bundle install`.
16
+ 3. Run `./bin/rails hotwire:install`
17
+
18
+
19
+ ## Usage
20
+
21
+ See https://github.com/hotwired/turbo-rails and https://github.com/hotwired/stimulus-rails
22
+
23
+
24
+ ## License
25
+
26
+ Stimulus for Rails is released under the [MIT License](https://opensource.org/licenses/MIT).
@@ -0,0 +1,13 @@
1
+ require "bundler/setup"
2
+
3
+ require "bundler/gem_tasks"
4
+
5
+ require "rake/testtask"
6
+
7
+ Rake::TestTask.new(:test) do |t|
8
+ t.libs << 'test'
9
+ t.pattern = 'test/**/*_test.rb'
10
+ t.verbose = false
11
+ end
12
+
13
+ task default: :test
@@ -0,0 +1,8 @@
1
+ require "hotwire/version"
2
+ require "hotwire/engine"
3
+
4
+ require "turbo-rails"
5
+ require "hotwire-stimulus-rails"
6
+
7
+ module Hotwire
8
+ end
@@ -0,0 +1,6 @@
1
+ module Hotwire
2
+ class Engine < ::Rails::Engine
3
+ isolate_namespace Hotwire
4
+ config.eager_load_namespaces << Hotwire
5
+ end
6
+ end
@@ -0,0 +1,3 @@
1
+ module Hotwire
2
+ VERSION = "0.1.0"
3
+ end
@@ -0,0 +1,5 @@
1
+ namespace :hotwire do
2
+ desc "Install Hotwire into the app"
3
+ task install: [ "turbo:install", "stimulus:install" ] do
4
+ end
5
+ end
metadata ADDED
@@ -0,0 +1,95 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: hotwire-rails
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Sam Stephenson
8
+ - Javan Mahkmali
9
+ - David Heinemeier Hansson
10
+ autorequire:
11
+ bindir: bin
12
+ cert_chain: []
13
+ date: 2020-12-22 00:00:00.000000000 Z
14
+ dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: turbo-rails
17
+ requirement: !ruby/object:Gem::Requirement
18
+ requirements:
19
+ - - ">="
20
+ - !ruby/object:Gem::Version
21
+ version: '0'
22
+ type: :runtime
23
+ prerelease: false
24
+ version_requirements: !ruby/object:Gem::Requirement
25
+ requirements:
26
+ - - ">="
27
+ - !ruby/object:Gem::Version
28
+ version: '0'
29
+ - !ruby/object:Gem::Dependency
30
+ name: hotwire-stimulus-rails
31
+ requirement: !ruby/object:Gem::Requirement
32
+ requirements:
33
+ - - ">="
34
+ - !ruby/object:Gem::Version
35
+ version: '0'
36
+ type: :runtime
37
+ prerelease: false
38
+ version_requirements: !ruby/object:Gem::Requirement
39
+ requirements:
40
+ - - ">="
41
+ - !ruby/object:Gem::Version
42
+ version: '0'
43
+ - !ruby/object:Gem::Dependency
44
+ name: rails
45
+ requirement: !ruby/object:Gem::Requirement
46
+ requirements:
47
+ - - ">="
48
+ - !ruby/object:Gem::Version
49
+ version: 6.0.0
50
+ type: :runtime
51
+ prerelease: false
52
+ version_requirements: !ruby/object:Gem::Requirement
53
+ requirements:
54
+ - - ">="
55
+ - !ruby/object:Gem::Version
56
+ version: 6.0.0
57
+ description:
58
+ email: david@loudthinking.com
59
+ executables: []
60
+ extensions: []
61
+ extra_rdoc_files: []
62
+ files:
63
+ - MIT-LICENSE
64
+ - README.md
65
+ - Rakefile
66
+ - lib/hotwire-rails.rb
67
+ - lib/hotwire/engine.rb
68
+ - lib/hotwire/version.rb
69
+ - lib/tasks/hotwire_tasks.rake
70
+ homepage: https://hotwire.dev/
71
+ licenses:
72
+ - MIT
73
+ metadata:
74
+ homepage_uri: https://hotwire.dev/
75
+ source_code_uri: https://github.com/hotwired/hotwire-rails
76
+ post_install_message:
77
+ rdoc_options: []
78
+ require_paths:
79
+ - lib
80
+ required_ruby_version: !ruby/object:Gem::Requirement
81
+ requirements:
82
+ - - ">="
83
+ - !ruby/object:Gem::Version
84
+ version: '0'
85
+ required_rubygems_version: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - ">="
88
+ - !ruby/object:Gem::Version
89
+ version: '0'
90
+ requirements: []
91
+ rubygems_version: 3.1.2
92
+ signing_key:
93
+ specification_version: 4
94
+ summary: HTML over the wire.
95
+ test_files: []