stimeo 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.
Files changed (5) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE +21 -0
  3. data/README.md +15 -0
  4. data/lib/stimeo.rb +5 -0
  5. metadata +63 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 803d990fe99175b6a174a5368eba105993c9b8be2ce6e7338838bbe7212e28b6
4
+ data.tar.gz: 7de566b77ed7d74a7f61e89dea42277bb9872419beca3bb58d0c611a6d911c23
5
+ SHA512:
6
+ metadata.gz: 0b082719c071d84f87427d1dea7656846ea0ec89c700d67d6611ae50cbb3d9535efbf7eba4aab24fd6ce7f98a112bd519f339380848afecd1dd3eba48e4f8560
7
+ data.tar.gz: 8bfdcf3d38da616ad594f773dee02edbcd7650c4b041c9da72fe211d04a16318b00db629f791e744444f7f25b071c4f1540c3dbcf78c98cfc895aeb4477b6fae
data/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Stimeo Labs (taiyaky)
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,15 @@
1
+ # stimeo (gem)
2
+
3
+ **This is an alias of the [`stimeo-ui`](https://rubygems.org/gems/stimeo-ui) gem** —
4
+ the headless, accessibility-first Stimulus UI framework for Ruby on Rails by
5
+ [Stimeo Labs](https://stimeo-labs.com). The project holds this name so that
6
+ `gem "stimeo"` always resolves to the real library.
7
+
8
+ Prefer the real gem:
9
+
10
+ ```bash
11
+ bundle add stimeo-ui --version "0.1.0.pre.beta.2"
12
+ bin/rails generate stimeo:install
13
+ ```
14
+
15
+ Docs: <https://stimeo-labs.com> · Issues: <https://github.com/taiyaky/stimeo-ui/issues>
data/lib/stimeo.rb ADDED
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ # Alias entry — loads the real library (stimeo-ui). Prefer requiring
4
+ # "stimeo/ui" via the stimeo-ui gem directly.
5
+ require "stimeo/ui"
metadata ADDED
@@ -0,0 +1,63 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: stimeo
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Stimeo Labs
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2026-07-12 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: stimeo-ui
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - '='
18
+ - !ruby/object:Gem::Version
19
+ version: 0.1.0.pre.beta.2
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - '='
25
+ - !ruby/object:Gem::Version
26
+ version: 0.1.0.pre.beta.2
27
+ description: Name held by Stimeo Labs so `gem "stimeo"` resolves to the real library.
28
+ Prefer depending on stimeo-ui directly; this gem only depends on it and loads it.
29
+ email:
30
+ executables: []
31
+ extensions: []
32
+ extra_rdoc_files: []
33
+ files:
34
+ - LICENSE
35
+ - README.md
36
+ - lib/stimeo.rb
37
+ homepage: https://stimeo-labs.com
38
+ licenses:
39
+ - MIT
40
+ metadata:
41
+ source_code_uri: https://github.com/taiyaky/stimeo-ui
42
+ bug_tracker_uri: https://github.com/taiyaky/stimeo-ui/issues
43
+ rubygems_mfa_required: 'true'
44
+ post_install_message:
45
+ rdoc_options: []
46
+ require_paths:
47
+ - lib
48
+ required_ruby_version: !ruby/object:Gem::Requirement
49
+ requirements:
50
+ - - ">="
51
+ - !ruby/object:Gem::Version
52
+ version: '3.1'
53
+ required_rubygems_version: !ruby/object:Gem::Requirement
54
+ requirements:
55
+ - - ">="
56
+ - !ruby/object:Gem::Version
57
+ version: '0'
58
+ requirements: []
59
+ rubygems_version: 3.5.22
60
+ signing_key:
61
+ specification_version: 4
62
+ summary: Alias of stimeo-ui — headless Stimulus UI framework for Rails.
63
+ test_files: []