mime_actor 1.0.0 → 1.0.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: fbf21714856f466dcd213606d554c45634a8601d4d83c1157cf48979ab680c3a
4
- data.tar.gz: 6a3f623b039d7cd3fdc41b7bce4e4f827779aedf9537a87f2cafc6667d985c23
3
+ metadata.gz: 45acf30e67a036d73b11bc6f79600212ebf2c69127e2727198e7f0c4a01e8530
4
+ data.tar.gz: 43d12c88f6eaf61bc02a34bce84249dd91581d2688f6e05d453f0e532bf1bf5e
5
5
  SHA512:
6
- metadata.gz: 9250e3561b80891aabeae7808abd60370be195d7d3139520f83b5346208be3e420841caed5002e073ab9417d3c7f815205f4f086d2c575bbf876070b4f82fb4a
7
- data.tar.gz: a93d0cb88e4fab401fd5dd6e02674f5ef834c19c9755577c8410073ed4ce30c364f0368eeda3fdb7960d4f81810297977cb89c512cb86418e95a05a9452918a7
6
+ metadata.gz: 2798078282a7aca6e3af70cd448f7f37a0bf75450429cd3566f0c8f399c9c768805f7dc84de00be386454db9851a182974cd80904c40e875760453682cd4bbe5
7
+ data.tar.gz: 359066bc2b07af9d6c5f42ca21762c5b57496aea7f28a0dd28384ec1d5889bc50500a422f8c97db70cbf97a7d727e899ee2ec84b1966bb8ca43882ca33dc135a
data/README.md CHANGED
@@ -190,9 +190,9 @@ You can find the documentation on [RubyDoc][doc_mime_actor].
190
190
 
191
191
  ## Requirements
192
192
 
193
- - Ruby: MRI 3.1+
194
- - ActiveSupport: 7.0+
195
- - ActionPack: 7.0+
193
+ - Ruby: MRI 2.5+
194
+ - ActiveSupport: 6.1+
195
+ - ActionPack: 6.1+
196
196
 
197
197
  ## Installation
198
198
 
@@ -231,4 +231,4 @@ Bug reports and pull requests are welcome on GitHub at [https://github.com/ryanc
231
231
  [doc_mime_actor]: https://rubydoc.info/gems/mime_actor
232
232
  [doc_action_controller]: https://rubydoc.info/gems/actionpack/ActionController/Metal
233
233
  [doc_action_controller_mime_responds]: https://rubydoc.info/gems/actionpack/ActionController/MimeResponds
234
- [doc_comparison]: https://github.com/ryancyq/mime_actor/blob/main/COMPARE.md
234
+ [doc_comparison]: https://github.com/ryancyq/mime_actor/blob/main/COMPARE.md
@@ -2,8 +2,10 @@
2
2
 
3
3
  # :markup: markdown
4
4
 
5
- # required by active_support/tagged_logging
6
5
  require "active_support/version"
6
+ # required by active_support/logger
7
+ require "logger" if ActiveSupport.version < "7.1"
8
+ # required by active_support/tagged_logging
7
9
  require "active_support/isolated_execution_state" if ActiveSupport.version >= "7.0"
8
10
 
9
11
  require "active_support/concern"
@@ -123,7 +123,7 @@ module MimeActor
123
123
  # end
124
124
  # end
125
125
  #
126
- #{actions.each.map { |action| action_method_template(action) }.join(";")}
126
+ #{actions.map { |action| action_method_template(action) }.join(";")}
127
127
  RUBY
128
128
  end
129
129
 
@@ -14,7 +14,7 @@ module MimeActor
14
14
  module VERSION
15
15
  MAJOR = 1
16
16
  MINOR = 0
17
- BUILD = 0
17
+ BUILD = 1
18
18
  PRE = nil
19
19
 
20
20
  STRING = [MAJOR, MINOR, BUILD, PRE].compact.join(".")
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mime_actor
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ryan Chang
8
- autorequire:
9
8
  bindir: exe
10
9
  cert_chain: []
11
- date: 2024-10-03 00:00:00.000000000 Z
10
+ date: 2025-03-21 00:00:00.000000000 Z
12
11
  dependencies:
13
12
  - !ruby/object:Gem::Dependency
14
13
  name: actionpack
@@ -71,7 +70,6 @@ metadata:
71
70
  homepage_uri: https://github.com/ryancyq/mime_actor
72
71
  source_code_uri: https://github.com/ryancyq/mime_actor
73
72
  changelog_uri: https://github.com/ryancyq/mime_actor/blob/main/CHANGELOG.md
74
- post_install_message:
75
73
  rdoc_options: []
76
74
  require_paths:
77
75
  - lib
@@ -86,8 +84,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
86
84
  - !ruby/object:Gem::Version
87
85
  version: '0'
88
86
  requirements: []
89
- rubygems_version: 3.5.16
90
- signing_key:
87
+ rubygems_version: 3.6.2
91
88
  specification_version: 4
92
89
  summary: Action processing with Callback + Rescue handlers for different MIME types
93
90
  in Rails