fishplate 1.1.2 → 1.1.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 34c5c7465470b446a28ee88c8b202cec4fc744ecace1692cb24eb9bfb255f781
4
- data.tar.gz: 659d828b7287e68807b8212edd655b9caeb05c204e5ff1926d709bc1995ed3a8
3
+ metadata.gz: b4f2d7ca217b912fbd66ccb9504c7ae25fd64fc5057a2d67f1619e0fd0a84ec6
4
+ data.tar.gz: bbada21b4a1d09945b1c7138c018c1d540f3e9031d6608369ec1cc1db7824d96
5
5
  SHA512:
6
- metadata.gz: 888cda2d7bf52020f48bc2b6a487fbfb24c79888e443025469887732f36454754be5be252b977cb632c7248a5bb1bc0229b9c38736acdd1797cf8cb0a52262e0
7
- data.tar.gz: 93baf883a64281babf62738b5698460eaa447891285eb1c3087d6b9ca0339a1a018ec15d3378d6e1b9e0d3ce0ba225765256469a2ef85c58af64e2aed643b494
6
+ metadata.gz: d5c8deaf024053d046d0f74e33c36e0c393461446b336b151864b1ba8852be042c2cf2b65151ff7cc22ff4075d8f8c66286082917de3bbd9edf99154017d3274
7
+ data.tar.gz: 3dcf597d4c8f8faebccc5cbb6c9d44e4abd7c01ca03c542d4bb9848c9f8456d946bc63bce096c749256ea1f9687f927350a4cc43108eca6be37bd1af3c36a6d7
data/.bundler-version CHANGED
@@ -1 +1 @@
1
- 2.2.9
1
+ 2.2.32
@@ -1,18 +1,6 @@
1
- ## Description
1
+ ## Description, motivation and context
2
2
  <!--- Describe your changes in detail -->
3
-
4
- ## Related issue(s)
5
- <!--- GH issue number -->
6
-
7
- ## Motivation and Context
8
3
  <!--- Why is this change required? What problem does it solve? -->
9
- <!--- If it fixes an open issue, please link to the issue here. -->
10
4
 
11
- ## How Has This Been Tested?
12
- <!--- Please describe in detail how you tested your changes. -->
13
-
14
- ## Screenshots (if appropriate):
15
- <!--- Please add any screenshots of the feature. -->
16
-
17
- ## Related PRs
18
- <!--- Please add links to any related PRs (backend, component packages, etc). -->
5
+ ## Related issue(s) or PR(s)
6
+ <!--- GH issue number -->
@@ -10,7 +10,7 @@ jobs:
10
10
  auto-approve:
11
11
  runs-on: ubuntu-latest
12
12
  steps:
13
- - uses: hmarr/auto-approve-action@v2.0.0
13
+ - uses: hmarr/auto-approve-action@v2
14
14
  if: github.actor == 'dependabot[bot]' || github.actor == 'dependabot-preview[bot]' || github.actor == 'renofidev'
15
15
  with:
16
16
  github-token: "${{ secrets.GITHUB_TOKEN }}"
@@ -0,0 +1,28 @@
1
+ name: Ruby CI
2
+
3
+ on:
4
+ push:
5
+ branches: [ main ]
6
+ pull_request:
7
+ branches: [ main ]
8
+
9
+ jobs:
10
+ test:
11
+ runs-on: ubuntu-latest
12
+ strategy:
13
+ matrix:
14
+ ruby-version: ['2.7', '3.0']
15
+
16
+ steps:
17
+ - uses: actions/checkout@v2
18
+ - name: Set up Ruby
19
+ # To automatically get bug fixes and new Ruby versions for ruby/setup-ruby,
20
+ # change this to (see https://github.com/ruby/setup-ruby#versioning):
21
+ # uses: ruby/setup-ruby@v1
22
+ uses: ruby/setup-ruby@473e4d8fe5dd94ee328fdfca9f8c9c7afc9dae5e
23
+ with:
24
+ ruby-version: ${{ matrix.ruby-version }}
25
+ bundler-cache: true # runs 'bundle install' and caches installed gems automatically
26
+
27
+ - name: Run tests
28
+ run: bundle exec rake ci
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- fishplate (1.1.2)
4
+ fishplate (1.1.3)
5
5
  a9n (~> 1.0)
6
6
  activemodel (~> 6.0)
7
7
  activerecord (~> 6.0)
@@ -12,13 +12,13 @@ PATH
12
12
  GEM
13
13
  remote: https://rubygems.org/
14
14
  specs:
15
- a9n (1.2.2)
16
- activemodel (6.1.3)
17
- activesupport (= 6.1.3)
18
- activerecord (6.1.3)
19
- activemodel (= 6.1.3)
20
- activesupport (= 6.1.3)
21
- activesupport (6.1.3)
15
+ a9n (1.2.3)
16
+ activemodel (6.1.4.1)
17
+ activesupport (= 6.1.4.1)
18
+ activerecord (6.1.4.1)
19
+ activemodel (= 6.1.4.1)
20
+ activesupport (= 6.1.4.1)
21
+ activesupport (6.1.4.1)
22
22
  concurrent-ruby (~> 1.0, >= 1.0.2)
23
23
  i18n (>= 1.6, < 2)
24
24
  minitest (>= 5.1)
@@ -26,22 +26,22 @@ GEM
26
26
  zeitwerk (~> 2.3)
27
27
  ast (2.4.2)
28
28
  coderay (1.1.3)
29
- concurrent-ruby (1.1.8)
29
+ concurrent-ruby (1.1.9)
30
30
  diff-lcs (1.4.4)
31
- i18n (1.8.9)
31
+ i18n (1.8.11)
32
32
  concurrent-ruby (~> 1.0)
33
33
  method_source (1.0.0)
34
- minitest (5.14.3)
35
- parallel (1.20.1)
36
- parser (3.0.0.0)
34
+ minitest (5.14.4)
35
+ parallel (1.21.0)
36
+ parser (3.0.2.0)
37
37
  ast (~> 2.4.1)
38
- pry (0.14.0)
38
+ pry (0.14.1)
39
39
  coderay (~> 1.1)
40
40
  method_source (~> 1.0)
41
41
  rainbow (3.0.0)
42
- rake (13.0.3)
43
- regexp_parser (2.0.3)
44
- rexml (3.2.4)
42
+ rake (13.0.6)
43
+ regexp_parser (2.1.1)
44
+ rexml (3.2.5)
45
45
  rspec (3.10.0)
46
46
  rspec-core (~> 3.10.0)
47
47
  rspec-expectations (~> 3.10.0)
@@ -54,34 +54,37 @@ GEM
54
54
  rspec-mocks (3.10.2)
55
55
  diff-lcs (>= 1.2.0, < 2.0)
56
56
  rspec-support (~> 3.10.0)
57
- rspec-support (3.10.2)
58
- rubocop (1.10.0)
57
+ rspec-support (3.10.3)
58
+ rubocop (1.23.0)
59
59
  parallel (~> 1.10)
60
60
  parser (>= 3.0.0.0)
61
61
  rainbow (>= 2.2.2, < 4.0)
62
62
  regexp_parser (>= 1.8, < 3.0)
63
63
  rexml
64
- rubocop-ast (>= 1.2.0, < 2.0)
64
+ rubocop-ast (>= 1.12.0, < 2.0)
65
65
  ruby-progressbar (~> 1.7)
66
66
  unicode-display_width (>= 1.4.0, < 3.0)
67
- rubocop-ast (1.4.1)
68
- parser (>= 2.7.1.5)
69
- rubocop-rake (0.5.1)
70
- rubocop
71
- rubocop-rspec (2.2.0)
67
+ rubocop-ast (1.13.0)
68
+ parser (>= 3.0.1.1)
69
+ rubocop-rake (0.6.0)
72
70
  rubocop (~> 1.0)
73
- rubocop-ast (>= 1.1.0)
71
+ rubocop-rspec (2.6.0)
72
+ rubocop (~> 1.19)
74
73
  ruby-progressbar (1.11.0)
75
74
  sqlite3 (1.4.2)
76
75
  tzinfo (2.0.4)
77
76
  concurrent-ruby (~> 1.0)
78
- tzinfo-data (1.2021.1)
77
+ tzinfo-data (1.2021.5)
79
78
  tzinfo (>= 1.0.0)
80
- unicode-display_width (2.0.0)
81
- zeitwerk (2.4.2)
79
+ unicode-display_width (2.1.0)
80
+ zeitwerk (2.5.1)
82
81
 
83
82
  PLATFORMS
84
- ruby
83
+ aarch64-linux-musl
84
+ x86_64-darwin-18
85
+ x86_64-darwin-19
86
+ x86_64-darwin-20
87
+ x86_64-linux
85
88
 
86
89
  DEPENDENCIES
87
90
  bundler
@@ -95,4 +98,4 @@ DEPENDENCIES
95
98
  sqlite3
96
99
 
97
100
  BUNDLED WITH
98
- 2.2.3
101
+ 2.2.29
data/README.md CHANGED
@@ -1,5 +1,5 @@
1
1
  [![Gem Version](https://badge.fury.io/rb/fishplate.svg)](https://rubygems.org/gems/fishplate)
2
- [![Build Status](https://travis-ci.org/RenoFi/fishplate.svg?branch=master)](https://travis-ci.org/RenoFi/fishplate)
2
+ [![Build Status](https://github.com/RenoFi/fishplate/actions/workflows/ci.yml/badge.svg)](https://github.com/RenoFi/fishplate/actions/workflows/ci.yml?query=branch%3Amain)
3
3
 
4
4
  # fishplate
5
5
 
@@ -65,6 +65,13 @@ rake db:structure:load # Recreates the databases from the struc
65
65
  rake db:version # Retrieves the current schema version number
66
66
  ```
67
67
 
68
+ ### Rack Middleware
69
+
70
+ To free up DB connections after each request, add middleware to your `config.ru`:
71
+ ```ruby
72
+ use Fishplate::Rack
73
+ ```
74
+
68
75
  ## Contributing
69
76
 
70
77
  Bug reports and pull requests are welcome on GitHub at https://github.com/RenoFi/fishplate. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
data/Rakefile CHANGED
@@ -5,4 +5,5 @@ require 'rubocop/rake_task'
5
5
  RSpec::Core::RakeTask.new(:spec)
6
6
  RuboCop::RakeTask.new
7
7
 
8
- task default: %i[rubocop:auto_correct spec]
8
+ task ci: %i[spec rubocop]
9
+ task default: %i[spec rubocop:auto_correct]
data/fishplate.gemspec CHANGED
@@ -14,6 +14,7 @@ Gem::Specification.new do |spec|
14
14
 
15
15
  spec.metadata['homepage_uri'] = 'https://github.com/RenoFi/fishplate'
16
16
  spec.metadata['source_code_uri'] = 'https://github.com/RenoFi/fishplate'
17
+ spec.metadata['rubygems_mfa_required'] = 'true'
17
18
 
18
19
  spec.files = Dir.chdir(__dir__) do
19
20
  `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(bin/|spec/|\.rub)}) }
@@ -1,3 +1,3 @@
1
1
  module Fishplate
2
- VERSION = "1.1.2".freeze
2
+ VERSION = "1.1.3".freeze
3
3
  end
data/lib/fishplate.rb CHANGED
@@ -12,6 +12,7 @@ module Fishplate
12
12
  class << self
13
13
  def load_seed
14
14
  return unless A9n.root.join('db/seeds.rb').exist?
15
+
15
16
  Kernel.load A9n.root.join('db/seeds.rb')
16
17
  end
17
18
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fishplate
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.2
4
+ version: 1.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Krzysztof Knapik
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2021-02-22 00:00:00.000000000 Z
11
+ date: 2021-11-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: a9n
@@ -221,9 +221,9 @@ files:
221
221
  - ".github/PULL_REQUEST_TEMPLATE.md"
222
222
  - ".github/workflows/auto-approve.yml"
223
223
  - ".github/workflows/auto-merge.yml"
224
+ - ".github/workflows/ci.yml"
224
225
  - ".gitignore"
225
226
  - ".rspec"
226
- - ".travis.yml"
227
227
  - Gemfile
228
228
  - Gemfile.lock
229
229
  - LICENSE
@@ -241,6 +241,7 @@ licenses:
241
241
  metadata:
242
242
  homepage_uri: https://github.com/RenoFi/fishplate
243
243
  source_code_uri: https://github.com/RenoFi/fishplate
244
+ rubygems_mfa_required: 'true'
244
245
  post_install_message:
245
246
  rdoc_options: []
246
247
  require_paths:
@@ -256,7 +257,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
256
257
  - !ruby/object:Gem::Version
257
258
  version: '0'
258
259
  requirements: []
259
- rubygems_version: 3.2.3
260
+ rubygems_version: 3.2.23
260
261
  signing_key:
261
262
  specification_version: 4
262
263
  summary: Fishplate is a library allowing running ActiveRecord without Railties.
data/.travis.yml DELETED
@@ -1,12 +0,0 @@
1
- ---
2
- sudo: false
3
- language: ruby
4
- cache: bundler
5
- rvm:
6
- - 2.6
7
- - 2.7
8
- - 3.0
9
- before_install: gem install bundler
10
- script:
11
- - bundle exec rake spec
12
- - bundle exec rake rubocop