fino-rails 1.1.1 → 1.1.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: b3410200fba2a47e0eca05d2889da44ebbd9c9919bde2b8dfa501c21c79466ca
4
- data.tar.gz: f0c3c36d92f16e516371c54c5d6f4b12fc431940b2528eebf38e299f23bfbc21
3
+ metadata.gz: 0aa41cdc086dfb56b3d8901c501ed492c63de366140e1ea65260ff3fe47112e1
4
+ data.tar.gz: 6d875fca0b93090caf9817c8c451400ea0a104a58523ca2aae4a68bafd3528ac
5
5
  SHA512:
6
- metadata.gz: 0f2d6cf96189a72808e9ae950eb4fbf835cd26b98fc2b71fd96c345e7862eece7c788769414b7de90513b02717f35b9b295e76b1b79798e544b47ca16efa2f2d
7
- data.tar.gz: 55b8d40dc775215a05d2cc44871d77ea6cff9e4e45b494d8819ae370880b1458c2efacb3df45fc27aab8e1990ec852e877dd29a29fe4f021bd55da1cce31b6ad
6
+ metadata.gz: ee85940787ee390866a115f2c56fb8299483821ab55e9b2b1c12198b9915fae2b6593a7cbc7ca1f3c473387b3d67bb1b57ebb23a718fe66b2e32e6d19f70c29d
7
+ data.tar.gz: be48e1a3dbd54e02a49bb6069b0e71cd8ad6cad38bdfb6cc1840d6dc94097af1f8b14acc63d0dc4b817c69de2c8482254dcc1de763b20b164e518a3eeaeaa2a6
data/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025 Egor Iskrenkov
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, 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,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
data/lib/fino/rails.rb ADDED
@@ -0,0 +1,28 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "fino"
4
+
5
+ module Fino
6
+ module Rails
7
+ module Preloading
8
+ autoload :Middleware, "fino/rails/preloading/middleware"
9
+ end
10
+
11
+ module RequestScopedCache
12
+ autoload :Pipe, "fino/rails/request_scoped_cache/pipe"
13
+ autoload :Middleware, "fino/rails/request_scoped_cache/middleware"
14
+ end
15
+
16
+ module Instrumentation
17
+ autoload :Pipe, "fino/rails/instrumentation/pipe"
18
+ end
19
+ end
20
+
21
+ module_function
22
+
23
+ def root
24
+ File.expand_path("rails", __dir__)
25
+ end
26
+ end
27
+
28
+ require "fino/rails/engine"
data/lib/fino/version.rb CHANGED
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Fino
4
- VERSION = "1.1.1"
4
+ VERSION = "1.1.2"
5
5
  REQUIRED_RUBY_VERSION = ">= 3.0.0"
6
6
  end
data/lib/fino-rails.rb ADDED
@@ -0,0 +1,3 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "fino/rails"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fino-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.1
4
+ version: 1.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Egor Iskrenkov
@@ -15,14 +15,14 @@ dependencies:
15
15
  requirements:
16
16
  - - "~>"
17
17
  - !ruby/object:Gem::Version
18
- version: 1.1.1
18
+ version: 1.1.2
19
19
  type: :runtime
20
20
  prerelease: false
21
21
  version_requirements: !ruby/object:Gem::Requirement
22
22
  requirements:
23
23
  - - "~>"
24
24
  - !ruby/object:Gem::Version
25
- version: 1.1.1
25
+ version: 1.1.2
26
26
  - !ruby/object:Gem::Dependency
27
27
  name: rails
28
28
  requirement: !ruby/object:Gem::Requirement
@@ -43,7 +43,10 @@ executables: []
43
43
  extensions: []
44
44
  extra_rdoc_files: []
45
45
  files:
46
+ - LICENSE
46
47
  - README.md
48
+ - lib/fino-rails.rb
49
+ - lib/fino/rails.rb
47
50
  - lib/fino/rails/app/assets/stylesheets/fino.css
48
51
  - lib/fino/rails/app/controllers/fino/rails/application_controller.rb
49
52
  - lib/fino/rails/app/controllers/fino/rails/dashboard_controller.rb