mime_actor 0.0.0.alpha → 0.0.4.alpha

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: 7a7d2b7b38b9bb1238267b58f57961e099fd114c9f4786d3300a1a7e74611bc7
4
- data.tar.gz: 3266040aa145d6a6fd2188bd9c9f00a5fe0f6b6e9fd1e165634778d53ae6a368
3
+ metadata.gz: b353a4f0f8625adf8fc788c30a501bb8406ede3bb6ac9309d6e459fc829e0dbd
4
+ data.tar.gz: e9f62e73020e5728e47ca3c6bd1386dc3b861261284c6bb55ce203cabf2d2a99
5
5
  SHA512:
6
- metadata.gz: ddb033cca592816fa6f22e05f51d94a3bf67918541ecdef2d24252e3e3d0bea0d00eeb8b69b6ab63f6b08c1cb9e82f73c288883f9d170a34539e78cf0acd0f30
7
- data.tar.gz: 4014b324249b3f865689426eef1e0314527ef1e8c9bf5d07728b2f3a10fb3c0cdba870fc3a40315e7323a972ab4f04a3193504ba483da37bc19e7eb3e5fbd926
6
+ metadata.gz: 6dd846f06c7461b7c1762f3ff18b16798d41994731fd09a887452830a851b4642431ec115b7a9054cd17cdecd8b3be0d360bf1a1c5a43305e20fab50094c9b47
7
+ data.tar.gz: 1a98f58e33535bd84d564a6c5413a1228cdaeecf0ae9f3203b822de60999623cbc412bc818a09c1b9878059149d7f564473b98a6abc07838862bde62ccaa0973
data/.ruby-version ADDED
@@ -0,0 +1 @@
1
+ 3.3.1
data/README.md CHANGED
@@ -1,5 +1,8 @@
1
1
  # mime_actor
2
2
 
3
+ [![Gem Version](https://badge.fury.io/rb/mime_actor.svg)](https://badge.fury.io/rb/mime_actor)
4
+ [![Build](https://github.com/ryancyq/mime_actor/actions/workflows/build.yml/badge.svg)](https://github.com/ryancyq/mime_actor/actions/workflows/build.yml)
5
+
3
6
  Action rendering and rescue with mime type via configuration in actionpack
4
7
 
5
8
  ## Installation
@@ -1,10 +1,11 @@
1
1
  # frozen_string_literal: true
2
2
 
3
+ require 'active_support'
3
4
  require "active_support/core_ext/array/extract_options"
4
5
  require "active_support/core_ext/array/wrap"
5
6
  require "active_support/core_ext/hash/indifferent_access"
7
+ require "active_support/core_ext/module/attribute_accessors"
6
8
  require 'action_controller'
7
- require 'action_dispatch'
8
9
 
9
10
  module MimeActor
10
11
  module Formatter
@@ -12,7 +12,7 @@ module MimeActor
12
12
  module VERSION
13
13
  MAJOR = 0
14
14
  MINOR = 0
15
- BUILD = 0
15
+ BUILD = 4
16
16
  PRE = "alpha"
17
17
 
18
18
  STRING = [MAJOR, MINOR, BUILD, PRE].compact.join(".")
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mime_actor
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.0.alpha
4
+ version: 0.0.4.alpha
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ryan Chang
8
- autorequire:
8
+ autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-06-21 00:00:00.000000000 Z
11
+ date: 2024-06-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake
@@ -89,6 +89,7 @@ extra_rdoc_files: []
89
89
  files:
90
90
  - ".rspec"
91
91
  - ".rubocop.yml"
92
+ - ".ruby-version"
92
93
  - LICENSE
93
94
  - README.md
94
95
  - Rakefile
@@ -104,7 +105,7 @@ metadata:
104
105
  homepage_uri: https://github.com/ryancyq/mime_actor
105
106
  source_code_uri: https://github.com/ryancyq/mime_actor
106
107
  changelog_uri: https://github.com/ryancyq/mime_actor/blob/main/CHANGELOG.md
107
- post_install_message:
108
+ post_install_message:
108
109
  rdoc_options: []
109
110
  require_paths:
110
111
  - lib
@@ -112,7 +113,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
112
113
  requirements:
113
114
  - - ">="
114
115
  - !ruby/object:Gem::Version
115
- version: 2.7.0
116
+ version: 3.1.0
116
117
  required_rubygems_version: !ruby/object:Gem::Requirement
117
118
  requirements:
118
119
  - - ">="
@@ -120,7 +121,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
120
121
  version: '0'
121
122
  requirements: []
122
123
  rubygems_version: 3.5.9
123
- signing_key:
124
+ signing_key:
124
125
  specification_version: 4
125
126
  summary: action rendering and rescue with mime type via configuration in actionpack
126
127
  test_files: []