estimate_count 0.3.0 → 0.4.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 +4 -4
- data/CHANGELOG.md +22 -0
- data/Gemfile +0 -2
- data/Gemfile.lock +1 -1
- data/lib/estimate_count/version.rb +1 -1
- metadata +17 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 5c13bfac3669b65175b85eac38f0f924e5fa0d98c05c540149094c82b5d03242
|
|
4
|
+
data.tar.gz: 8ad7b5421936626f9329f02f9a3c5b0a3686e481a3c67d5b0d5baf834cef1123
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c48c201949258f037290590387047420a72f391c78013f0a91a11ced87c00d636cb98ed41c4d43defcb4c31d6130a6e1144d977651420ff65db43607d9ada5d6
|
|
7
|
+
data.tar.gz: 9ea0058f76b3d5e2fba446a8b88c87ea92899276ff4638569d8c90a47c5b436279bf34b5a252570ac5556cac24fb4ee5bd3d77aca049e3b826b36b52177dd928
|
data/CHANGELOG.md
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
All notable changes to this project will be documented in this file.
|
|
4
|
+
|
|
5
|
+
## [Unreleased]
|
|
6
|
+
|
|
7
|
+
## 0.4.0 - 2020-05-21
|
|
8
|
+
|
|
9
|
+
### Removed
|
|
10
|
+
- No longer depends on `pry` gem for production
|
|
11
|
+
|
|
12
|
+
## 0.3.0 - 2021-04-20
|
|
13
|
+
|
|
14
|
+
### Added
|
|
15
|
+
- MySQL support
|
|
16
|
+
- Tests for PostgreSQL and MySQL
|
|
17
|
+
|
|
18
|
+
## 0.1.0 - 2021-03-04
|
|
19
|
+
|
|
20
|
+
### Added
|
|
21
|
+
- Initial release
|
|
22
|
+
- `#estimate_count` method for `ActiveRecord::Relation` class, PostgreSQL version
|
data/Gemfile
CHANGED
data/Gemfile.lock
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: estimate_count
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.4.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Chris Hasiński
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2023-05-
|
|
11
|
+
date: 2023-05-21 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: activerecord
|
|
@@ -66,6 +66,20 @@ dependencies:
|
|
|
66
66
|
- - ">="
|
|
67
67
|
- !ruby/object:Gem::Version
|
|
68
68
|
version: '0'
|
|
69
|
+
- !ruby/object:Gem::Dependency
|
|
70
|
+
name: pry
|
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
|
72
|
+
requirements:
|
|
73
|
+
- - ">="
|
|
74
|
+
- !ruby/object:Gem::Version
|
|
75
|
+
version: '0'
|
|
76
|
+
type: :development
|
|
77
|
+
prerelease: false
|
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
79
|
+
requirements:
|
|
80
|
+
- - ">="
|
|
81
|
+
- !ruby/object:Gem::Version
|
|
82
|
+
version: '0'
|
|
69
83
|
description: Uses EXPLAIN to get an estimate count for an ActiveRecord::Relation
|
|
70
84
|
email:
|
|
71
85
|
- krzysztof.hasinski@gmail.com
|
|
@@ -74,6 +88,7 @@ extensions: []
|
|
|
74
88
|
extra_rdoc_files: []
|
|
75
89
|
files:
|
|
76
90
|
- ".rspec"
|
|
91
|
+
- CHANGELOG.md
|
|
77
92
|
- CODE_OF_CONDUCT.md
|
|
78
93
|
- Gemfile
|
|
79
94
|
- Gemfile.lock
|