apartment_acme_client 0.0.10 → 0.0.11

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: d9169812c7b9cb501ce59e307542f4a28f125e9796b03bd110202d3cbfe85063
4
- data.tar.gz: 2e34a65f7b9eccf111f8d72b5a5ae5aaa0df93c65c0b8d991e6cdff383491ce4
3
+ metadata.gz: 3f9e57aaef18da58ad65373961200a1e7b5911d46c94b229b4b789a81f3f0e00
4
+ data.tar.gz: 15c12eab69d219283d0e98463eb85921f7ad03667fd3812ae583fefd2fac3890
5
5
  SHA512:
6
- metadata.gz: 39c230480ac1a48230964313b600d66c2668c2edf9412947d49c66decf32f7e868409f001fad2b182928768c510265cb06bdb5b967db6bd69262e0e28e871767
7
- data.tar.gz: 256a071c25c057b735502155a7dbb6296626632bd40650f23b53cb2582304accf73d2022086aa9d471e7c4c638582939559dc9fbbb31edf67d35a853bcf79924
6
+ metadata.gz: 71f33305be55e6b1dfeeea055b6be4b58e14107665cfdf7bf3fe3e7786464ca5eaa7a96a5eb86e695eea86bc5e3d245dfb332c797af75c362ff2b13402479a18
7
+ data.tar.gz: 89077cbca9761beb4a5ae3a1b0d61f29af4e47af68768cc904d8d0c5411fc195e7958dcf5e932bb608f292ea174731664db4395fd9845ebc5f10c8f015699228
data/README.md CHANGED
@@ -285,9 +285,28 @@ e.g. [whenever](https://github.com/javan/whenever)
285
285
  ----------------------------------------------------------------------
286
286
  ## Development
287
287
 
288
- 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.
288
+ ### Docker (recommended)
289
+
290
+ This gem has its own Docker environment so it can be developed in isolation from any host Ruby installation or parent project.
291
+
292
+ ```bash
293
+ # From the apartment_acme_client/ directory:
294
+ docker-compose build # once, or when Dockerfile changes
295
+ docker-compose run --rm app bundle install # first time, or after Gemfile changes
296
+ docker-compose run --rm app bundle exec rake spec # run tests
297
+ docker-compose run --rm app bundle exec rake install # build and install gem locally
298
+ ```
299
+
300
+ Installed gems are cached in a named Docker volume (`gem_cache`) so `bundle install` only re-runs when dependencies change.
289
301
 
290
- 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 tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
302
+ ### Releasing a new version
303
+
304
+ 1. Update the version number in `lib/apartment_acme_client/version.rb`
305
+ 2. Run `bundle exec rake release` **on the host** (not inside Docker) — it needs your RubyGems credentials (`~/.gem/credentials`) and git SSH access to push the tag and publish the gem.
306
+
307
+ ### Without Docker
308
+
309
+ 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.
291
310
 
292
311
  ## Contributing
293
312
 
@@ -1,3 +1,3 @@
1
1
  module ApartmentAcmeClient
2
- VERSION = '0.0.10'
2
+ VERSION = '0.0.11'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: apartment_acme_client
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.10
4
+ version: 0.0.11
5
5
  platform: ruby
6
6
  authors:
7
7
  - Robin Dunlop
8
- autorequire:
8
+ autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-11-04 00:00:00.000000000 Z
11
+ date: 2026-04-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: 4.1.0
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
- version: '8'
22
+ version: '9'
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: 4.1.0
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
- version: '8'
32
+ version: '9'
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: acme-client
35
35
  requirement: !ruby/object:Gem::Requirement
@@ -202,7 +202,7 @@ homepage: https://github.com/rdunlop/apartment_acme_client
202
202
  licenses:
203
203
  - MIT
204
204
  metadata: {}
205
- post_install_message:
205
+ post_install_message:
206
206
  rdoc_options: []
207
207
  require_paths:
208
208
  - lib
@@ -217,8 +217,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
217
217
  - !ruby/object:Gem::Version
218
218
  version: '0'
219
219
  requirements: []
220
- rubygems_version: 3.0.3.1
221
- signing_key:
220
+ rubygems_version: 3.4.19
221
+ signing_key:
222
222
  specification_version: 4
223
223
  summary: Let's Encrypt interface for Multi-tenancy applications (like Apartment)
224
224
  test_files: []