opal_stimulus 0.1.9 → 0.2.1
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 +4 -4
- data/CHANGELOG.md +9 -0
- data/lib/opal_stimulus/version.rb +1 -1
- metadata +6 -12
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 5098b831d63e7aeb99ff4a02e6ca01f641511ae3c4367956d13f1c84d43bc175
|
|
4
|
+
data.tar.gz: d157ca07e37b1a3ed318f1ef7bbacf0ea1a259a41b6cab2958fd025f7ffb73af
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c4e91c67996d571ddcf880e5f8bae8defa8ba73d5aa9583cf61d6aa080123e64cf165cf460ba40cef2ad670f98b9c55cf5bf8c754c4c7c8516982c748459e194
|
|
7
|
+
data.tar.gz: 13bb5af21667a4248c74668ba318f0070040f93998614932dea87adb235dfd1f2bebf1f250452daadebdfd822d3b47e6118500a4f30fc36fa6348947522d7f1f
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
## [Unreleased]
|
|
2
2
|
|
|
3
|
+
## [0.2.1] - 2026-08-19
|
|
4
|
+
|
|
5
|
+
- Update opal_proxy to 0.2.0
|
|
6
|
+
- Fix Rails asset installation tests with Propshaft
|
|
7
|
+
|
|
3
8
|
## [0.1.0] - 2025-03-27
|
|
4
9
|
|
|
5
10
|
- Initial release
|
|
@@ -52,3 +57,7 @@
|
|
|
52
57
|
|
|
53
58
|
- Revise README for Opal Stimulus by @elia
|
|
54
59
|
- Change README
|
|
60
|
+
|
|
61
|
+
## [0.2.0] - 2025-11-14
|
|
62
|
+
|
|
63
|
+
- Update rails and propshaft minimum dependencies
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: opal_stimulus
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1
|
|
4
|
+
version: 0.2.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Joseph Schito
|
|
@@ -43,14 +43,14 @@ dependencies:
|
|
|
43
43
|
requirements:
|
|
44
44
|
- - "~>"
|
|
45
45
|
- !ruby/object:Gem::Version
|
|
46
|
-
version: 0.
|
|
46
|
+
version: 0.2.0
|
|
47
47
|
type: :runtime
|
|
48
48
|
prerelease: false
|
|
49
49
|
version_requirements: !ruby/object:Gem::Requirement
|
|
50
50
|
requirements:
|
|
51
51
|
- - "~>"
|
|
52
52
|
- !ruby/object:Gem::Version
|
|
53
|
-
version: 0.
|
|
53
|
+
version: 0.2.0
|
|
54
54
|
- !ruby/object:Gem::Dependency
|
|
55
55
|
name: rails
|
|
56
56
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -58,9 +58,6 @@ dependencies:
|
|
|
58
58
|
- - ">="
|
|
59
59
|
- !ruby/object:Gem::Version
|
|
60
60
|
version: '7.2'
|
|
61
|
-
- - "<"
|
|
62
|
-
- !ruby/object:Gem::Version
|
|
63
|
-
version: 8.0.3
|
|
64
61
|
type: :runtime
|
|
65
62
|
prerelease: false
|
|
66
63
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -68,23 +65,20 @@ dependencies:
|
|
|
68
65
|
- - ">="
|
|
69
66
|
- !ruby/object:Gem::Version
|
|
70
67
|
version: '7.2'
|
|
71
|
-
- - "<"
|
|
72
|
-
- !ruby/object:Gem::Version
|
|
73
|
-
version: 8.0.3
|
|
74
68
|
- !ruby/object:Gem::Dependency
|
|
75
69
|
name: propshaft
|
|
76
70
|
requirement: !ruby/object:Gem::Requirement
|
|
77
71
|
requirements:
|
|
78
72
|
- - "~>"
|
|
79
73
|
- !ruby/object:Gem::Version
|
|
80
|
-
version: '1.
|
|
74
|
+
version: '1.3'
|
|
81
75
|
type: :development
|
|
82
76
|
prerelease: false
|
|
83
77
|
version_requirements: !ruby/object:Gem::Requirement
|
|
84
78
|
requirements:
|
|
85
79
|
- - "~>"
|
|
86
80
|
- !ruby/object:Gem::Version
|
|
87
|
-
version: '1.
|
|
81
|
+
version: '1.3'
|
|
88
82
|
description: Opal Stimulus provides a way to write Stimulus controllers in Ruby, leveraging
|
|
89
83
|
the Opal compiler to convert Ruby code into JavaScript. This allows developers familiar
|
|
90
84
|
with Ruby to use the Stimulus framework without needing to write JavaScript directly.
|
|
@@ -137,7 +131,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
137
131
|
- !ruby/object:Gem::Version
|
|
138
132
|
version: '0'
|
|
139
133
|
requirements: []
|
|
140
|
-
rubygems_version:
|
|
134
|
+
rubygems_version: 4.0.16
|
|
141
135
|
specification_version: 4
|
|
142
136
|
summary: 'Opal Stimulus: Write Stimulus controllers in Ruby'
|
|
143
137
|
test_files: []
|