mongoid-grid_fs 2.3.0 → 2.5.0

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
- SHA1:
3
- metadata.gz: c175ff638f8c7bea0bf38455b0d2ed073f054edb
4
- data.tar.gz: e3dd05342dd15cae3de9969490738f24761987d6
2
+ SHA256:
3
+ metadata.gz: badeed24be962cfe0703db3b729a4d3941e4f707774be209b224b37f74fb709a
4
+ data.tar.gz: df22b750f61661cff90eaaceaf6faeb73ea75cbab44e2b52c4ae95bb22989f8d
5
5
  SHA512:
6
- metadata.gz: 09bc2641f04c456a88a960eee4300ee70ea01996010abc05350d3bd45f5692db8e47e03de4e6dd3446145ec74c2dfd3c9de271e6bb524651a3a1b16c4cff3053
7
- data.tar.gz: 7a8303cdce64c6a2e92d54a8e174e629cd18f44f1a726aeb2baf98564d3eab38e128ab472a4174a35bdc7e441cd14649aaadf9bd25bccec58a9bfb6c4b52434e
6
+ metadata.gz: 59c26d3fbbd58640ca92808f1ee46f312092ed9139b551da5f99bf8418eac76815943a980e53e86347980a12e4089c7c8529eb3e548bf0bb0fe6b2753b4bf29f
7
+ data.tar.gz: 4ba07aa7b6319fcb8c62c0a50edec2e99321c0827220292b1dca1fd9f3710f1b37f5c9e3cbed1d9f15d77dc7a6a34058a4cb2b0d942e93895e5097a860a7bcf7
data/README.md CHANGED
@@ -1,9 +1,8 @@
1
1
  mongoid-grid_fs
2
2
  ---------------
3
3
 
4
- [![Gem Version](https://img.shields.io/gem/v/mongoid-grid_fs.svg)](https://rubygems.org/gems/mongoid-grid_fs)
5
- [![Build Status](https://travis-ci.org/ahoward/mongoid-grid_fs.svg)](https://travis-ci.org/ahoward/mongoid-grid_fs)
6
- [![Gem Downloads](https://img.shields.io/gem/dt/mongoid-grid_fs.svg)](https://rubygems.org/gems/mongoid-grid_fs)
4
+ [![Gem Version](https://badge.fury.io/rb/mongoid-grid_fs.svg)](https://badge.fury.io/rb/mongoid-grid_fs)
5
+ [![CI](https://github.com/mongoid/mongoid-grid_fs/actions/workflows/ci.yml/badge.svg)](https://github.com/mongoid/mongoid-grid_fs/actions/workflows/ci.yml)
7
6
 
8
7
  A pure Mongoid/Moped implementation of the MongoDB GridFS specification
9
8
 
@@ -68,10 +67,7 @@ It has the following features:
68
67
  CONTRIBUTING
69
68
  ------------
70
69
 
71
- ```
72
- $ bundle install
73
- $ bundle exec rake test
74
- ```
70
+ See [CONTRIBUTING](CONTRIBUTING.md).
75
71
 
76
72
  LICENSE
77
73
  -------
data/Rakefile CHANGED
@@ -1,12 +1,15 @@
1
- require "bundler/gem_tasks"
2
- require "bundler/setup"
3
- require "rake/testtask"
1
+ require 'bundler/gem_tasks'
2
+ require 'bundler/setup'
3
+ require 'rake/testtask'
4
4
 
5
5
  Rake::TestTask.new(:test) do |t|
6
- t.libs << "lib"
7
- t.libs << "test"
8
- t.pattern = "test/**/*_test.rb"
6
+ t.libs << 'lib'
7
+ t.libs << 'test'
8
+ t.pattern = 'test/**/*_test.rb'
9
9
  t.verbose = false
10
10
  end
11
11
 
12
- task :default => :test
12
+ require 'rubocop/rake_task'
13
+ RuboCop::RakeTask.new(:rubocop)
14
+
15
+ task default: %i[rubocop test]
@@ -1,5 +1,5 @@
1
1
  module Mongoid
2
2
  class GridFs
3
- VERSION = "2.3.0"
3
+ VERSION = '2.5.0'.freeze
4
4
  end
5
5
  end