turnout2024 3.0.1 → 3.0.2

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: cfc454e495941cfa8b66db6ade08f52bd2d8127b294f6d8f8d717c04fadc6b12
4
- data.tar.gz: d3a061aa0d8e9a9577394b3287a578bebd4aea0b13577a14f1a7f86fda2c34a0
3
+ metadata.gz: caf9cf9b22b5d71d267fb036d36d4ef9b58ad29599fce817e59c7d92b67ea658
4
+ data.tar.gz: 51109865634f9912a6ac6f89d137d777041cd6b6ae9296601be690283c6f52a0
5
5
  SHA512:
6
- metadata.gz: 65bba15cab24978f4cd60e963b96a7bb938fc8ff9481fe9fa952a817c7ab1ae7ae4d5484e742b3b0aec11a842b66d794b39c72a3c8356f745dac59fe049fe25d
7
- data.tar.gz: 2b231c44a2bcb66ad9ff68e6b02f4de535c41ae51403d7740f1bbb9984976d6e351c2ebfed39b621cc7edb51f5a150b6808161c0f7d300c060cd9782a308e940
6
+ metadata.gz: 05505f6f8aa40df5c563cd3d90f50d76dcd97b7cd7528ae1f8cb9555aa4c5266f39633c492c2df66bcbdf449413e9bff997ea08fb6480e69b8740f3c63bba070
7
+ data.tar.gz: 06b07d302bcf9eb285533932c35b1bb074483afa81aa06b6bba5121c9a217227e8b5198e9cf0221a5087e37a3d56cf48ad9b87a392b02426a185d5e3d4215155
data/README.md CHANGED
@@ -1,10 +1,14 @@
1
- Turnout2024 [![Code Climate](https://codeclimate.com/github/pglombardo/turnout2024.svg)](https://codeclimate.com/github/pglombardo/turnout2024) [![Gem Version](https://badge.fury.io/rb/turnout2024.svg)](https://badge.fury.io/rb/turnout2024)
2
- =======
1
+ # Turnout2024
2
+
3
3
  Turnout2024 is [Rack](http://rack.rubyforge.org/) middleware with a [Ruby on Rails](http://rubyonrails.org) engine that allows you to easily put your app in maintenance mode.
4
4
 
5
- This project is forked from the original [turnout gem](https://github.com/biola/turnout) which unfortunately hasn't been updated in 6+ years.
5
+ ---
6
+
7
+ ![Gem Version](https://img.shields.io/gem/v/turnout2024)
8
+
9
+ _This project is forked from the original [turnout gem](https://github.com/biola/turnout) which unfortunately hasn't been updated in 6+ years._
6
10
 
7
- The gem name has been updated but everything internally is still `Turnout`. Pull requests are more than welcome!
11
+ Pull requests with tests are welcome!
8
12
 
9
13
  Features
10
14
  ========
@@ -39,7 +39,7 @@ module Turnout
39
39
  end
40
40
 
41
41
  def method_missing(name, *args)
42
- name_string = name.to_s
42
+ name_string = name.to_s.dup
43
43
  if name_string.chomp!('=')
44
44
  self[name_string] = args.first
45
45
  else
@@ -1,3 +1,3 @@
1
1
  module Turnout
2
- VERSION = '3.0.1'.freeze
2
+ VERSION = '3.0.2'.freeze
3
3
  end
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: turnout2024
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.1
4
+ version: 3.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Adam Crownoble, Peter Giacomo Lombardo
8
- autorequire:
9
8
  bindir: bin
10
9
  cert_chain: []
11
- date: 2024-06-17 00:00:00.000000000 Z
10
+ date: 1980-01-02 00:00:00.000000000 Z
12
11
  dependencies:
13
12
  - !ruby/object:Gem::Dependency
14
13
  name: tilt
@@ -199,7 +198,6 @@ homepage: https://github.com/pglombardo/turnout2024
199
198
  licenses:
200
199
  - MIT
201
200
  metadata: {}
202
- post_install_message:
203
201
  rdoc_options: []
204
202
  require_paths:
205
203
  - lib
@@ -214,8 +212,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
214
212
  - !ruby/object:Gem::Version
215
213
  version: '0'
216
214
  requirements: []
217
- rubygems_version: 3.5.11
218
- signing_key:
215
+ rubygems_version: 3.7.2
219
216
  specification_version: 4
220
217
  summary: A Rack based maintenance mode plugin for Rails
221
218
  test_files: []