sheets_db 0.8.0 → 0.8.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 +4 -4
- data/documentation/usage.md +1 -1
- data/lib/sheets_db/version.rb +1 -1
- data/lib/sheets_db/worksheet/row.rb +4 -1
- data/lib/sheets_db/worksheet.rb +2 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3512aee623de503648264a2420bf8e9a74b17a60
|
4
|
+
data.tar.gz: bf6c2802a235557a6ba296e49f45b51452f3c704
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 91a34dbe4f66c7139be11a29580d300f654cf698d7355787b9ebf9c7bf75dc83a0f83386f349babbbbafba5f3e70f461cfc6d2229469ce9eb7b830400aa3ecc5
|
7
|
+
data.tar.gz: 24b4ffe779c70624c0ba02dd122b46b1f518c8ac7dcc224eb3bc695790201f20087c22ee55cc99a01c7dc87bef01b98472617499f86873b011d7f8dd5deffa14
|
data/documentation/usage.md
CHANGED
@@ -169,7 +169,7 @@ end
|
|
169
169
|
|
170
170
|
The only required argument to the `attribute` class method is the name of the column itself. All other options are optional:
|
171
171
|
|
172
|
-
`type`: The `attribute` method currently supports
|
172
|
+
`type`: The `attribute` method currently supports five types: `Integer`, `Float`, `DateTime`, `Boolean` and the default `String`. Any other value given to the `type` option will be ignored and the default will be used. (Note that the `Boolean` type must be specified as a string or symbol (`type: :Boolean`) since there is no actual `Boolean` class in Ruby.)
|
173
173
|
|
174
174
|
`multiple`: This option defaults to false. If true, it tells SheetsDB to parse the value as a comma-separated list of values, and return an array by splitting on the comma (if no comma is found, it will return a single element array).
|
175
175
|
|
data/lib/sheets_db/version.rb
CHANGED
@@ -7,7 +7,10 @@ module SheetsDB
|
|
7
7
|
class << self
|
8
8
|
def inherited(subclass)
|
9
9
|
super
|
10
|
-
subclass.instance_variable_set(
|
10
|
+
subclass.instance_variable_set(
|
11
|
+
:@attribute_definitions,
|
12
|
+
Marshal.load(Marshal.dump(@attribute_definitions))
|
13
|
+
)
|
11
14
|
end
|
12
15
|
|
13
16
|
def attribute(name, type: String, multiple: false, transform: nil, column_name: nil, if_column_missing: nil)
|
data/lib/sheets_db/worksheet.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: sheets_db
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.8.
|
4
|
+
version: 0.8.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ravi Gadad
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2019-04-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google_drive
|