hanami-reloader 2.3.0 → 3.0.0.rc1
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 +132 -57
- data/LICENSE +20 -0
- data/README.md +12 -49
- data/hanami-reloader.gemspec +20 -19
- data/lib/hanami/reloader/version.rb +1 -2
- metadata +15 -72
- data/LICENSE.md +0 -22
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 913be5a25eb98885b9f4dcac5eec20c0123a811d837dfc7f43e9243305c11257
|
|
4
|
+
data.tar.gz: a9333303ff71bf34b956a48f7b0d1b0bb017398594929fafcb9fbe1b5d56bc69
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: dc5dd96a81bd8860b9644717c56ce883d6b1268432936bbc29d88239c748b89b4ae5e5a92414cb637f3d5395f783dc0bc1ca4c26e38ec2c428f53468b3366949
|
|
7
|
+
data.tar.gz: c2330ec9f3a90a8ab3b0f9e3bc0d705072cf789230bb1f7548196e4b67dbe29b79da46ec5d6be735b8d7ca1fb1d53fe1bab53ed362b5d94f561104071126d3a5
|
data/CHANGELOG.md
CHANGED
|
@@ -1,143 +1,218 @@
|
|
|
1
|
-
#
|
|
1
|
+
# Changelog
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
All notable changes to this project will be documented in this file.
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
|
+
and this project adheres to [Break Versioning](https://www.taoensso.com/break-versioning).
|
|
7
|
+
|
|
8
|
+
## [Unreleased]
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
|
|
14
|
+
### Deprecated
|
|
15
|
+
|
|
16
|
+
### Removed
|
|
17
|
+
|
|
18
|
+
### Fixed
|
|
19
|
+
|
|
20
|
+
### Security
|
|
21
|
+
|
|
22
|
+
[Unreleased]: https://github.com/hanami/reloader/compare/v3.0.0.rc1...HEAD
|
|
23
|
+
|
|
24
|
+
## [3.0.0.rc1] - 2026-06-16
|
|
25
|
+
|
|
26
|
+
### Changed
|
|
27
|
+
|
|
28
|
+
- Require Ruby 3.3 or newer.
|
|
29
|
+
|
|
30
|
+
[3.0.0.rc1]: https://github.com/hanami/reloader/compare/v2.3.0...v3.0.0.rc1
|
|
31
|
+
|
|
32
|
+
## [2.3.0] - 2025-11-12
|
|
6
33
|
|
|
7
34
|
### Changed
|
|
8
35
|
|
|
9
36
|
- Skip reloading and print a warning if used in production env. (@krzykamil in #32)
|
|
10
37
|
|
|
11
|
-
|
|
38
|
+
[2.3.0]: https://github.com/hanami/reloader/compare/v2.3.0.beta2...v2.3.0
|
|
39
|
+
|
|
40
|
+
## [2.3.0.beta2] - 2025-10-17
|
|
12
41
|
|
|
13
42
|
### Changed
|
|
14
43
|
|
|
15
|
-
-
|
|
16
|
-
- Drop support for Ruby 3.1
|
|
44
|
+
- Pass HANAMI_ENV from ENV to guard-puma in generated `Guardfile`. (@afomera in #33)
|
|
45
|
+
- Drop support for Ruby 3.1.
|
|
46
|
+
|
|
47
|
+
[2.3.0.beta2]: https://github.com/hanami/reloader/compare/v2.3.0.beta1...v2.3.0.beta2
|
|
17
48
|
|
|
18
|
-
##
|
|
49
|
+
## [2.3.0.beta1] - 2025-10-03
|
|
19
50
|
|
|
20
|
-
|
|
51
|
+
[2.3.0.beta1]: https://github.com/hanami/reloader/compare/v2.2.0...v2.3.0.beta1
|
|
52
|
+
|
|
53
|
+
## [2.2.0] - 2024-11-05
|
|
21
54
|
|
|
22
55
|
### Added
|
|
23
56
|
|
|
24
|
-
-
|
|
57
|
+
- Depend on specific minimum guard and guard-puma versions via gemspec. This ensures that certain bundle gem deprecation warnings do not show when running `hanami server`. (@timriley in #30)
|
|
58
|
+
|
|
59
|
+
[2.2.0]: https://github.com/hanami/reloader/compare/v2.2.0.rc1...v2.2.0
|
|
25
60
|
|
|
26
|
-
##
|
|
61
|
+
## [2.2.0.rc1] - 2024-10-29
|
|
27
62
|
|
|
28
|
-
|
|
63
|
+
[2.2.0.rc1]: https://github.com/hanami/reloader/compare/v2.2.0.beta2...v2.2.0.rc1
|
|
29
64
|
|
|
30
|
-
##
|
|
65
|
+
## [2.2.0.beta2] - 2024-07-16
|
|
66
|
+
|
|
67
|
+
[2.2.0.beta2]: https://github.com/hanami/reloader/compare/v2.2.0.beta1...v2.2.0.beta2
|
|
68
|
+
|
|
69
|
+
## [2.2.0.beta1] - 2024-07-16
|
|
31
70
|
|
|
32
71
|
### Changed
|
|
33
72
|
|
|
34
|
-
- Drop support for Ruby 3.0
|
|
73
|
+
- Drop support for Ruby 3.0.
|
|
74
|
+
|
|
75
|
+
[2.2.0.beta1]: https://github.com/hanami/reloader/compare/v2.1.0...v2.2.0.beta1
|
|
76
|
+
|
|
77
|
+
## [2.1.0] - 2024-02-27
|
|
78
|
+
|
|
79
|
+
[2.1.0]: https://github.com/hanami/reloader/compare/v2.1.0.rc3...v2.1.0
|
|
35
80
|
|
|
36
|
-
##
|
|
81
|
+
## [2.1.0.rc3] - 2024-02-16
|
|
37
82
|
|
|
38
|
-
|
|
83
|
+
[2.1.0.rc3]: https://github.com/hanami/reloader/compare/v2.1.0.rc2...v2.1.0.rc3
|
|
39
84
|
|
|
40
|
-
##
|
|
85
|
+
## [2.1.0.rc2] - 2023-11-08
|
|
41
86
|
|
|
42
|
-
|
|
87
|
+
[2.1.0.rc2]: https://github.com/hanami/reloader/compare/v2.1.0.rc1...v2.1.0.rc2
|
|
88
|
+
|
|
89
|
+
## [2.1.0.rc1] - 2023-11-02
|
|
43
90
|
|
|
44
91
|
### Fixed
|
|
45
92
|
|
|
46
|
-
-
|
|
47
|
-
-
|
|
93
|
+
- Ensure to reload app when actions, views, and templates, are touched. (@jodosha)
|
|
94
|
+
- Fixed incorrect regular expression in `Guardfile`. (@jodosha)
|
|
95
|
+
|
|
96
|
+
[2.1.0.rc1]: https://github.com/hanami/reloader/compare/v2.1.0.beta2...v2.1.0.rc1
|
|
48
97
|
|
|
49
|
-
##
|
|
98
|
+
## [2.1.0.beta2] - 2023-10-04
|
|
50
99
|
|
|
51
100
|
### Added
|
|
52
101
|
|
|
53
|
-
-
|
|
102
|
+
- When running `hanami new`, generate `Guardfile` that excludes static assets from triggering an app reload. (@jodosha)
|
|
103
|
+
|
|
104
|
+
[2.1.0.beta2]: https://github.com/hanami/reloader/compare/v2.1.0.beta1...v2.1.0.beta2
|
|
54
105
|
|
|
55
|
-
##
|
|
106
|
+
## [2.1.0.beta1] - 2023-06-29
|
|
56
107
|
|
|
57
|
-
|
|
108
|
+
[2.1.0.beta1]: https://github.com/hanami/reloader/compare/v2.0.2...v2.1.0.beta1
|
|
109
|
+
|
|
110
|
+
## [2.0.2] - 2022-12-25
|
|
58
111
|
|
|
59
112
|
### Added
|
|
60
113
|
|
|
61
|
-
-
|
|
114
|
+
- Official support for Ruby 3.2. (@jodosha)
|
|
115
|
+
|
|
116
|
+
[2.0.2]: https://github.com/hanami/reloader/compare/v2.0.1...v2.0.2
|
|
62
117
|
|
|
63
|
-
##
|
|
118
|
+
## [2.0.1] - 2022-12-06
|
|
64
119
|
|
|
65
120
|
### Fixed
|
|
66
121
|
|
|
67
|
-
-
|
|
122
|
+
- Ensure `hanami server` to respect HTTP port used in `.env` or the value given as CLI argument (`--port`). (@jodosha)
|
|
68
123
|
|
|
69
|
-
|
|
124
|
+
[2.0.1]: https://github.com/hanami/reloader/compare/v2.0.0...v2.0.1
|
|
125
|
+
|
|
126
|
+
## [2.0.0] - 2022-11-22
|
|
70
127
|
|
|
71
128
|
### Added
|
|
72
129
|
|
|
73
|
-
-
|
|
74
|
-
-
|
|
75
|
-
-
|
|
130
|
+
- Use Zeitwerk to autoload the gem. (@timriley)
|
|
131
|
+
- Generate new apps by requiring `guard-puma` `~> 0.8`. (@jodosha)
|
|
132
|
+
- Run bundle install after modifying `Gemfile`. (@timriley)
|
|
76
133
|
|
|
77
134
|
### Fixed
|
|
78
135
|
|
|
79
|
-
-
|
|
136
|
+
- Ensure to use the given HTTP port. (@jodosha)
|
|
137
|
+
|
|
138
|
+
[2.0.0]: https://github.com/hanami/reloader/compare/v2.0.0.rc1...v2.0.0
|
|
80
139
|
|
|
81
|
-
##
|
|
140
|
+
## [2.0.0.rc1] - 2022-11-08
|
|
82
141
|
|
|
83
142
|
### Changed
|
|
84
143
|
|
|
85
|
-
-
|
|
144
|
+
- Follow `hanami` versioning. (@jodosha)
|
|
145
|
+
|
|
146
|
+
[2.0.0.rc1]: https://github.com/hanami/reloader/compare/v1.0.0.beta4...v2.0.0.rc1
|
|
86
147
|
|
|
87
|
-
##
|
|
148
|
+
## [1.0.0.beta4] - 2022-10-24
|
|
88
149
|
|
|
89
150
|
### Changed
|
|
90
151
|
|
|
91
|
-
-
|
|
152
|
+
- Add help message to `hanami server` command. (@jodosha in #14)
|
|
92
153
|
|
|
93
|
-
|
|
154
|
+
[1.0.0.beta4]: https://github.com/hanami/reloader/compare/v1.0.0.beta3...v1.0.0.beta4
|
|
155
|
+
|
|
156
|
+
## [1.0.0.beta3] - 2022-09-21
|
|
94
157
|
|
|
95
158
|
### Added
|
|
96
159
|
|
|
97
|
-
-
|
|
98
|
-
-
|
|
160
|
+
- Support for Hanami 2.0. (@jodosha)
|
|
161
|
+
- Official support for Ruby 3.0 and 3.1. (@jodosha)
|
|
99
162
|
|
|
100
163
|
### Changed
|
|
101
164
|
|
|
102
|
-
-
|
|
165
|
+
- Drop support for Ruby: MRI 2.5, 2.6, and 2.7. (@jodosha)
|
|
166
|
+
|
|
167
|
+
[1.0.0.beta3]: https://github.com/hanami/reloader/compare/v1.0.0.alpha1...v1.0.0.beta3
|
|
103
168
|
|
|
104
|
-
##
|
|
169
|
+
## [1.0.0.alpha1] - 2019-01-30
|
|
105
170
|
|
|
106
171
|
### Added
|
|
107
172
|
|
|
108
|
-
-
|
|
109
|
-
-
|
|
110
|
-
-
|
|
173
|
+
- Added support for `hanami server --no-code-reloading` to skip code reloading. (@jodosha)
|
|
174
|
+
- Added `hanami server --guardfile` option to specify the path to `Guardfile`. It defaults to `Guardfile` at the root of the project. (@jodosha)
|
|
175
|
+
- Added support for `hanami generate reloader --puma` to generate Puma specific configuration. (@jodosha)
|
|
111
176
|
|
|
112
177
|
### Changed
|
|
113
178
|
|
|
114
|
-
-
|
|
115
|
-
-
|
|
116
|
-
-
|
|
179
|
+
- Drop support for Ruby: MRI 2.3, and 2.4. (@jodosha)
|
|
180
|
+
- `hanami generate reloader` generates `Guardfile` (instead of `.hanami.server.guardfile`), with the Guard `:server` group. (@jodosha)
|
|
181
|
+
- `hanami server` will look for `Guardfile` at the root of the project instead of `.hanami.server.guardfile`. (@jodosha)
|
|
117
182
|
|
|
118
|
-
|
|
183
|
+
[1.0.0.alpha1]: https://github.com/hanami/reloader/compare/v0.3.0...v1.0.0.alpha1
|
|
184
|
+
|
|
185
|
+
## [0.3.0] - 2020-02-10
|
|
119
186
|
|
|
120
187
|
### Added
|
|
121
188
|
|
|
122
|
-
-
|
|
123
|
-
-
|
|
124
|
-
-
|
|
189
|
+
- Official support for Ruby 2.7.0. (@jodosha)
|
|
190
|
+
- Official support for Ruby 2.6.0. (@jodosha)
|
|
191
|
+
- Support for `bundler` 2.0+. (@jodosha)
|
|
192
|
+
|
|
193
|
+
[0.3.0]: https://github.com/hanami/reloader/compare/v0.2.1...v0.3.0
|
|
125
194
|
|
|
126
|
-
##
|
|
195
|
+
## [0.2.1] - 2018-01-23
|
|
127
196
|
|
|
128
197
|
### Fixed
|
|
129
198
|
|
|
130
|
-
-
|
|
199
|
+
- Avoid Guard prompt when shutting down the server. (@jodosha)
|
|
200
|
+
|
|
201
|
+
[0.2.1]: https://github.com/hanami/reloader/compare/v0.2.0...v0.2.1
|
|
131
202
|
|
|
132
|
-
##
|
|
203
|
+
## [0.2.0] - 2017-11-24
|
|
133
204
|
|
|
134
205
|
### Changed
|
|
135
206
|
|
|
136
|
-
-
|
|
207
|
+
- Use `.hanami.server.guardfile` instead of `Guardfile` to avoid conflicts with other `guard` plugins. (@mereghost)
|
|
137
208
|
|
|
138
|
-
|
|
209
|
+
[0.2.0]: https://github.com/hanami/reloader/compare/v0.1.0...v0.2.0
|
|
210
|
+
|
|
211
|
+
## [0.1.0] - 2017-11-01
|
|
139
212
|
|
|
140
213
|
### Added
|
|
141
214
|
|
|
142
|
-
-
|
|
143
|
-
-
|
|
215
|
+
- Added Hanami command `hanami generate reloader`. (@jodosha)
|
|
216
|
+
- Code reloading based on `guard`. (@jodosha)
|
|
217
|
+
|
|
218
|
+
[0.1.0]: https://github.com/hanami/reloader/releases/tag/v0.1.0
|
data/LICENSE
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
The MIT License (MIT)
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2015-2026 Hanakai team
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
6
|
+
this software and associated documentation files (the "Software"), to deal in
|
|
7
|
+
the Software without restriction, including without limitation the rights to
|
|
8
|
+
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
|
9
|
+
the Software, and to permit persons to whom the Software is furnished to do so,
|
|
10
|
+
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, FITNESS
|
|
17
|
+
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
|
18
|
+
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
|
19
|
+
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
20
|
+
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
CHANGED
|
@@ -1,59 +1,22 @@
|
|
|
1
|
-
|
|
1
|
+
<!--- This file is synced from hanakai-rb/repo-sync -->
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
[actions]: https://github.com/hanami/hanami-reloader/actions
|
|
4
|
+
[chat]: https://discord.gg/naQApPAsZB
|
|
5
|
+
[forum]: https://discourse.hanamirb.org
|
|
6
|
+
[rubygem]: https://rubygems.org/gems/hanami-reloader
|
|
4
7
|
|
|
5
|
-
|
|
8
|
+
# Hanami Reloader [][rubygem] [][actions]
|
|
6
9
|
|
|
7
|
-
[][forum]
|
|
11
|
+
[][chat]
|
|
9
12
|
|
|
10
|
-
##
|
|
13
|
+
## Links
|
|
11
14
|
|
|
12
|
-
|
|
15
|
+
- [User documentation](https://hanamirb.org)
|
|
16
|
+
- [API documentation](http://rubydoc.info/gems/hanami-reloader)
|
|
13
17
|
|
|
14
|
-
## Contact
|
|
15
|
-
|
|
16
|
-
- Home page: http://hanamirb.org
|
|
17
|
-
- Mailing List: http://hanamirb.org/mailing-list
|
|
18
|
-
- Bugs/Issues: https://github.com/hanami/reloader/issues
|
|
19
|
-
- Chat: http://chat.hanamirb.org
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
## Installation
|
|
23
|
-
|
|
24
|
-
Add this line to your application's Gemfile:
|
|
25
|
-
|
|
26
|
-
```ruby
|
|
27
|
-
group :cli, :development do
|
|
28
|
-
gem "hanami-reloader"
|
|
29
|
-
end
|
|
30
|
-
```
|
|
31
|
-
|
|
32
|
-
And then execute:
|
|
33
|
-
|
|
34
|
-
$ bundle install
|
|
35
|
-
$ bundle exec hanami setup
|
|
36
|
-
|
|
37
|
-
## Usage
|
|
38
|
-
|
|
39
|
-
## Development
|
|
40
|
-
|
|
41
|
-
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
|
42
|
-
|
|
43
|
-
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and the created tag, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
|
44
|
-
|
|
45
|
-
## Contributing
|
|
46
|
-
|
|
47
|
-
Bug reports and pull requests are welcome on GitHub at https://github.com/hanami/reloader. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/hanami/rspec/blob/main/CODE_OF_CONDUCT.md).
|
|
48
18
|
|
|
49
19
|
## License
|
|
50
20
|
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
## Code of Conduct
|
|
54
|
-
|
|
55
|
-
Everyone interacting in the `Hanami::Reloader` project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/hanami/reloader/blob/main/CODE_OF_CONDUCT.md).
|
|
56
|
-
|
|
57
|
-
## Copyright
|
|
21
|
+
See `LICENSE` file.
|
|
58
22
|
|
|
59
|
-
Copyright © 2014–2024 Hanami Team – Released under MIT License
|
data/hanami-reloader.gemspec
CHANGED
|
@@ -1,37 +1,38 @@
|
|
|
1
1
|
# frozen_string_literal: true
|
|
2
2
|
|
|
3
|
+
# This file is synced from hanakai-rb/repo-sync. To update it, edit repo-sync.yml.
|
|
4
|
+
|
|
3
5
|
lib = File.expand_path("lib", __dir__)
|
|
4
6
|
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
5
7
|
require "hanami/reloader/version"
|
|
6
8
|
|
|
7
9
|
Gem::Specification.new do |spec|
|
|
8
10
|
spec.name = "hanami-reloader"
|
|
9
|
-
spec.version = Hanami::Reloader::VERSION
|
|
10
11
|
spec.authors = ["Hanakai team"]
|
|
11
12
|
spec.email = ["info@hanakai.org"]
|
|
12
|
-
|
|
13
|
-
spec.summary = "Hanami reloader"
|
|
14
|
-
spec.description = "Code reloading for Hanami"
|
|
15
|
-
spec.homepage = "http://hanamirb.org"
|
|
16
13
|
spec.license = "MIT"
|
|
14
|
+
spec.version = Hanami::Reloader::VERSION.dup
|
|
17
15
|
|
|
18
|
-
spec.
|
|
19
|
-
|
|
20
|
-
spec.
|
|
16
|
+
spec.summary = "Code reloading for Hanami"
|
|
17
|
+
spec.description = spec.summary
|
|
18
|
+
spec.homepage = "https://hanamirb.org"
|
|
19
|
+
spec.files = Dir["CHANGELOG.md", "LICENSE", "README.md", "hanami-reloader.gemspec", "lib/**/*"]
|
|
21
20
|
spec.bindir = "exe"
|
|
22
|
-
spec.executables =
|
|
21
|
+
spec.executables = Dir["exe/*"].map { |f| File.basename(f) }
|
|
23
22
|
spec.require_paths = ["lib"]
|
|
24
23
|
|
|
25
|
-
spec.
|
|
26
|
-
spec.metadata["rubygems_mfa_required"] = "true"
|
|
24
|
+
spec.extra_rdoc_files = ["README.md", "CHANGELOG.md", "LICENSE"]
|
|
27
25
|
|
|
28
|
-
spec.
|
|
29
|
-
spec.
|
|
30
|
-
spec.
|
|
31
|
-
spec.
|
|
26
|
+
spec.metadata["changelog_uri"] = "https://github.com/hanami/hanami-reloader/blob/main/CHANGELOG.md"
|
|
27
|
+
spec.metadata["source_code_uri"] = "https://github.com/hanami/hanami-reloader"
|
|
28
|
+
spec.metadata["bug_tracker_uri"] = "https://github.com/hanami/hanami-reloader/issues"
|
|
29
|
+
spec.metadata["funding_uri"] = "https://github.com/sponsors/hanami"
|
|
32
30
|
|
|
33
|
-
spec.
|
|
34
|
-
|
|
35
|
-
spec.
|
|
36
|
-
spec.
|
|
31
|
+
spec.required_ruby_version = ">= 3.3"
|
|
32
|
+
|
|
33
|
+
spec.add_runtime_dependency "guard", "~> 2.19"
|
|
34
|
+
spec.add_runtime_dependency "guard-puma", "~> 0.8"
|
|
35
|
+
spec.add_runtime_dependency "hanami-cli", "~> 3.0.0.rc"
|
|
36
|
+
spec.add_runtime_dependency "zeitwerk", "~> 2.6"
|
|
37
37
|
end
|
|
38
|
+
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: hanami-reloader
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version:
|
|
4
|
+
version: 3.0.0.rc1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Hanakai team
|
|
@@ -43,14 +43,14 @@ dependencies:
|
|
|
43
43
|
requirements:
|
|
44
44
|
- - "~>"
|
|
45
45
|
- !ruby/object:Gem::Version
|
|
46
|
-
version:
|
|
46
|
+
version: 3.0.0.rc
|
|
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:
|
|
53
|
+
version: 3.0.0.rc
|
|
54
54
|
- !ruby/object:Gem::Dependency
|
|
55
55
|
name: zeitwerk
|
|
56
56
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -65,89 +65,32 @@ dependencies:
|
|
|
65
65
|
- - "~>"
|
|
66
66
|
- !ruby/object:Gem::Version
|
|
67
67
|
version: '2.6'
|
|
68
|
-
- !ruby/object:Gem::Dependency
|
|
69
|
-
name: bundler
|
|
70
|
-
requirement: !ruby/object:Gem::Requirement
|
|
71
|
-
requirements:
|
|
72
|
-
- - ">="
|
|
73
|
-
- !ruby/object:Gem::Version
|
|
74
|
-
version: '1.6'
|
|
75
|
-
- - "<"
|
|
76
|
-
- !ruby/object:Gem::Version
|
|
77
|
-
version: '3'
|
|
78
|
-
type: :development
|
|
79
|
-
prerelease: false
|
|
80
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
81
|
-
requirements:
|
|
82
|
-
- - ">="
|
|
83
|
-
- !ruby/object:Gem::Version
|
|
84
|
-
version: '1.6'
|
|
85
|
-
- - "<"
|
|
86
|
-
- !ruby/object:Gem::Version
|
|
87
|
-
version: '3'
|
|
88
|
-
- !ruby/object:Gem::Dependency
|
|
89
|
-
name: rake
|
|
90
|
-
requirement: !ruby/object:Gem::Requirement
|
|
91
|
-
requirements:
|
|
92
|
-
- - "~>"
|
|
93
|
-
- !ruby/object:Gem::Version
|
|
94
|
-
version: '13.0'
|
|
95
|
-
type: :development
|
|
96
|
-
prerelease: false
|
|
97
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
98
|
-
requirements:
|
|
99
|
-
- - "~>"
|
|
100
|
-
- !ruby/object:Gem::Version
|
|
101
|
-
version: '13.0'
|
|
102
|
-
- !ruby/object:Gem::Dependency
|
|
103
|
-
name: rspec
|
|
104
|
-
requirement: !ruby/object:Gem::Requirement
|
|
105
|
-
requirements:
|
|
106
|
-
- - "~>"
|
|
107
|
-
- !ruby/object:Gem::Version
|
|
108
|
-
version: '3.7'
|
|
109
|
-
type: :development
|
|
110
|
-
prerelease: false
|
|
111
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
112
|
-
requirements:
|
|
113
|
-
- - "~>"
|
|
114
|
-
- !ruby/object:Gem::Version
|
|
115
|
-
version: '3.7'
|
|
116
|
-
- !ruby/object:Gem::Dependency
|
|
117
|
-
name: rubocop
|
|
118
|
-
requirement: !ruby/object:Gem::Requirement
|
|
119
|
-
requirements:
|
|
120
|
-
- - "~>"
|
|
121
|
-
- !ruby/object:Gem::Version
|
|
122
|
-
version: '1.11'
|
|
123
|
-
type: :development
|
|
124
|
-
prerelease: false
|
|
125
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
126
|
-
requirements:
|
|
127
|
-
- - "~>"
|
|
128
|
-
- !ruby/object:Gem::Version
|
|
129
|
-
version: '1.11'
|
|
130
68
|
description: Code reloading for Hanami
|
|
131
69
|
email:
|
|
132
70
|
- info@hanakai.org
|
|
133
71
|
executables: []
|
|
134
72
|
extensions: []
|
|
135
|
-
extra_rdoc_files:
|
|
73
|
+
extra_rdoc_files:
|
|
74
|
+
- CHANGELOG.md
|
|
75
|
+
- LICENSE
|
|
76
|
+
- README.md
|
|
136
77
|
files:
|
|
137
78
|
- CHANGELOG.md
|
|
138
|
-
- LICENSE
|
|
79
|
+
- LICENSE
|
|
139
80
|
- README.md
|
|
140
81
|
- hanami-reloader.gemspec
|
|
141
82
|
- lib/hanami-reloader.rb
|
|
142
83
|
- lib/hanami/reloader.rb
|
|
143
84
|
- lib/hanami/reloader/commands.rb
|
|
144
85
|
- lib/hanami/reloader/version.rb
|
|
145
|
-
homepage:
|
|
86
|
+
homepage: https://hanamirb.org
|
|
146
87
|
licenses:
|
|
147
88
|
- MIT
|
|
148
89
|
metadata:
|
|
149
|
-
|
|
150
|
-
|
|
90
|
+
changelog_uri: https://github.com/hanami/hanami-reloader/blob/main/CHANGELOG.md
|
|
91
|
+
source_code_uri: https://github.com/hanami/hanami-reloader
|
|
92
|
+
bug_tracker_uri: https://github.com/hanami/hanami-reloader/issues
|
|
93
|
+
funding_uri: https://github.com/sponsors/hanami
|
|
151
94
|
rdoc_options: []
|
|
152
95
|
require_paths:
|
|
153
96
|
- lib
|
|
@@ -155,7 +98,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
155
98
|
requirements:
|
|
156
99
|
- - ">="
|
|
157
100
|
- !ruby/object:Gem::Version
|
|
158
|
-
version: '3.
|
|
101
|
+
version: '3.3'
|
|
159
102
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
160
103
|
requirements:
|
|
161
104
|
- - ">="
|
|
@@ -164,5 +107,5 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
164
107
|
requirements: []
|
|
165
108
|
rubygems_version: 3.6.9
|
|
166
109
|
specification_version: 4
|
|
167
|
-
summary: Hanami
|
|
110
|
+
summary: Code reloading for Hanami
|
|
168
111
|
test_files: []
|
data/LICENSE.md
DELETED
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
Copyright © 2014 Luca Guidi
|
|
2
|
-
|
|
3
|
-
MIT License
|
|
4
|
-
|
|
5
|
-
Permission is hereby granted, free of charge, to any person obtaining
|
|
6
|
-
a copy of this software and associated documentation files (the
|
|
7
|
-
"Software"), to deal in the Software without restriction, including
|
|
8
|
-
without limitation the rights to use, copy, modify, merge, publish,
|
|
9
|
-
distribute, sublicense, and/or sell copies of the Software, and to
|
|
10
|
-
permit persons to whom the Software is furnished to do so, subject to
|
|
11
|
-
the following conditions:
|
|
12
|
-
|
|
13
|
-
The above copyright notice and this permission notice shall be
|
|
14
|
-
included in all copies or substantial portions of the Software.
|
|
15
|
-
|
|
16
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
17
|
-
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
18
|
-
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
19
|
-
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
20
|
-
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
21
|
-
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
22
|
-
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|