hotkeys-rails 0.1.0 → 0.1.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 0e144f56e44055cc18278c5250a6297519b873bde607c51b24dd5521a40f176e
4
- data.tar.gz: 601a217fb719cffca22d8869eee811cf2052d3f63d45e5a46f0b94812bc8605d
3
+ metadata.gz: de9042165b61ef9effe62c6ec5f3ac95acedb6701b06574d47dbe263c7343fbf
4
+ data.tar.gz: f08dddaad326de62c2f7f6eca3451086a1160f0e9da9f6d1c50e650d71456785
5
5
  SHA512:
6
- metadata.gz: 72d1774b2efa3e4c85a6fddf37729a91e16c36e455a8d8cd4e5e519d680e20ccb71515e51899f7e7cbe45321ac5baacf190b02770ae995810299060f5c8968ea
7
- data.tar.gz: a96373911237b3d209f714a9088762c78cc7f7a209b4c16fdd1740d9d5647fbf7f94a5ed61a0c501ed9c4a27582ff1a6e39d7867a82526c419d23937b27bf5d5
6
+ metadata.gz: efcb4954b056689bf47ce269d2893367541749f3f97821f8fc9da2c26d89a0dba2e3f367825b6bb0eafeab9aaafdfeb000bfb3bca7b488f49da3256abb3388ca
7
+ data.tar.gz: d94fc5273c2efd1bd5c1f97ee9ea15732843d184be14784c309598c2ec2bdfd9512e51723aed9f8c7664b67915e3b421bd94c790ef8984bb2e0956215efc7463
data/CHANGELOG.md CHANGED
@@ -2,6 +2,12 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file.
4
4
 
5
+ ## [0.1.1] - 2024-12-03
6
+
7
+ ### Fixed
8
+
9
+ - Bundler auto-loading now works without explicit `require: "hotkeys_rails"` in Gemfile ([#1](https://github.com/kieranklaassen/hotkeys-rails/issues/1))
10
+
5
11
  ## [0.1.0] - 2024-12-02
6
12
 
7
13
  Initial release.
data/README.md CHANGED
@@ -1,5 +1,8 @@
1
1
  # Hotkeys Rails
2
2
 
3
+ [![Gem Version](https://badge.fury.io/rb/hotkeys-rails.svg)](https://badge.fury.io/rb/hotkeys-rails)
4
+ [![CI](https://github.com/kieranklaassen/hotkeys-rails/actions/workflows/ci.yml/badge.svg)](https://github.com/kieranklaassen/hotkeys-rails/actions/workflows/ci.yml)
5
+
3
6
  Keyboard shortcuts for Hotwire apps. No dependencies. No configuration. Just HTML.
4
7
 
5
8
  ## Installation
@@ -0,0 +1 @@
1
+ require "hotkeys_rails"
@@ -1,3 +1,3 @@
1
1
  module HotkeysRails
2
- VERSION = "0.1.0"
2
+ VERSION = "0.1.1"
3
3
  end
metadata CHANGED
@@ -1,13 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hotkeys-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kieran Klaassen
8
+ autorequire:
8
9
  bindir: bin
9
10
  cert_chain: []
10
- date: 1980-01-02 00:00:00.000000000 Z
11
+ date: 2025-12-03 00:00:00.000000000 Z
11
12
  dependencies:
12
13
  - !ruby/object:Gem::Dependency
13
14
  name: railties
@@ -35,6 +36,7 @@ files:
35
36
  - lib/generators/hotkeys_rails/install_generator.rb
36
37
  - lib/generators/hotkeys_rails/templates/hotkey.css
37
38
  - lib/generators/hotkeys_rails/templates/hotkey_controller.js
39
+ - lib/hotkeys-rails.rb
38
40
  - lib/hotkeys_rails.rb
39
41
  - lib/hotkeys_rails/engine.rb
40
42
  - lib/hotkeys_rails/helper.rb
@@ -46,6 +48,7 @@ metadata:
46
48
  homepage_uri: https://github.com/kieranklaassen/hotkeys-rails
47
49
  source_code_uri: https://github.com/kieranklaassen/hotkeys-rails
48
50
  changelog_uri: https://github.com/kieranklaassen/hotkeys-rails/blob/main/CHANGELOG.md
51
+ post_install_message:
49
52
  rdoc_options: []
50
53
  require_paths:
51
54
  - lib
@@ -60,7 +63,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
60
63
  - !ruby/object:Gem::Version
61
64
  version: '0'
62
65
  requirements: []
63
- rubygems_version: 3.6.9
66
+ rubygems_version: 3.4.10
67
+ signing_key:
64
68
  specification_version: 4
65
69
  summary: Keyboard shortcuts for Hotwire apps
66
70
  test_files: []