ons-firestore 1.1.0 → 1.1.1

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: '0077852086ffe77e35e89820a68feae7bc2711f74f0727dca47587344c8d0a41'
4
- data.tar.gz: 3fa7333f538ac6f6ed5038d8c6190a02473c7f451ca2dfe04b4e5d151ec27ceb
3
+ metadata.gz: 7071e0cea0d0adb25db556b56c07e5e3db7373efb6568d80fa86ad3de7f0553a
4
+ data.tar.gz: fa2f124217f08065cbeec384fa2d2c896c4b6c935dde744861a3b03d10e77019
5
5
  SHA512:
6
- metadata.gz: f01fb9331db325667ac3e60f6e1a9310f05cc3fdd0025462913bfc5c328191fefc1deb5b2de921aacb48377ade65cb090af4ac622b493b14c5a8df49d74bcedf
7
- data.tar.gz: cf2ca0fb7c3fd1093c56d12388174e726133d1e8df59fe8da319d97e18d1cd089c6aaba7e31ed8eee17591d960aaa7f84bdd16f9825106c3de8a69dee80791cb
6
+ metadata.gz: 5d67f09a82059d39cd90ef7e5b153562d68e71e27f1b379748bb139bd498c58f4ea4c548b4f5132a44ea666e7ef4f7f19ba356fe65d55b9937a8e8b3601266fa
7
+ data.tar.gz: 7098b9941d613ca972ca4078987e306b7d7ad2d01a2d1a9a4b821e0efa88a40da0f664103caaa41713875c788cfb2c059cd9be20b6a136190c2a277a23e590c2
@@ -22,7 +22,7 @@ class Firestore
22
22
  # Returns all Firestore documents within a collection.
23
23
  #
24
24
  # @param collection_name [String] the name of the Firestore collection containing the documents
25
- # @return [Enumberator] list of documents within the collection
25
+ # @return [Enumerator] list of documents within the collection
26
26
  # @raise [ArgumentError] if collection_name is nil
27
27
  def all_documents(collection_name)
28
28
  raise ArgumentError.new('collection_name cannot be nil') if collection_name.nil?
@@ -4,7 +4,7 @@ module ONSFirestore
4
4
  module Version
5
5
  MAJOR = 1
6
6
  MINOR = 1
7
- TINY = 0
7
+ TINY = 1
8
8
  end
9
9
  VERSION = [Version::MAJOR, Version::MINOR, Version::TINY].compact * '.'
10
10
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ons-firestore
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.0
4
+ version: 1.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - John Topley