wrapsheet 0.0.2

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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 5859eef8cc593c2ad313029c37d2ccbf992e65c4ee0449d82183165d76567bce
4
+ data.tar.gz: 6278e991c05be58bb67fb3828bccb49771ef1b616a2b4a89328962dc874213b5
5
+ SHA512:
6
+ metadata.gz: 506f6f7f91a06fdbdac969935b1acf57d119def7337e83f03887f8d4964e05deccbac2221c911736c5427005024032143b2cc30f24499228e52d0ff39b68effd
7
+ data.tar.gz: cd028a80535cde8bc8210d8c24865128b6b27d245232830ba91aabfe85af411cdbdd700bfede3323d4f03c24ab6b5e49f5d70bc142d637f89b213c0a7d290496
data/LICENSE ADDED
@@ -0,0 +1,7 @@
1
+ Copyright 2019 Monte Williams
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
4
+
5
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
6
+
7
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,3 @@
1
+ # wrapsheet
2
+
3
+ @TODO
@@ -0,0 +1,15 @@
1
+ module Wrapsheet
2
+ class Configuration
3
+ attr_accessor :google_account_type
4
+
5
+ class << self
6
+ attr_accessor :config
7
+ end
8
+
9
+ def self.configure(&block)
10
+ self.config = new
11
+ block[config]
12
+ end
13
+
14
+ end
15
+ end
@@ -0,0 +1,3 @@
1
+ module Wrapsheet
2
+ VERSION = File.read(File.expand_path '../../../VERSION', __FILE__).chomp
3
+ end
data/lib/wrapsheet.rb ADDED
@@ -0,0 +1,5 @@
1
+ module Wrapsheet
2
+ end
3
+
4
+ require 'wrapsheet/configuration'
5
+
metadata ADDED
@@ -0,0 +1,76 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: wrapsheet
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.2
5
+ platform: ruby
6
+ authors:
7
+ - Monte Williams
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2019-07-19 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rspec
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: 3.8.0
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: 3.8.0
27
+ - !ruby/object:Gem::Dependency
28
+ name: pry
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: 0.12.2
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: 0.12.2
41
+ description: Google Sheet ruby client has a bad rap. Let's make it better.
42
+ email:
43
+ - monte.williams@gmail.com
44
+ executables: []
45
+ extensions: []
46
+ extra_rdoc_files: []
47
+ files:
48
+ - LICENSE
49
+ - README.md
50
+ - lib/wrapsheet.rb
51
+ - lib/wrapsheet/configuration.rb
52
+ - lib/wrapsheet/version.rb
53
+ homepage: https://github.com/montethinks/wrapsheet
54
+ licenses:
55
+ - MIT
56
+ metadata: {}
57
+ post_install_message:
58
+ rdoc_options: []
59
+ require_paths:
60
+ - lib
61
+ required_ruby_version: !ruby/object:Gem::Requirement
62
+ requirements:
63
+ - - ">="
64
+ - !ruby/object:Gem::Version
65
+ version: '0'
66
+ required_rubygems_version: !ruby/object:Gem::Requirement
67
+ requirements:
68
+ - - ">="
69
+ - !ruby/object:Gem::Version
70
+ version: '0'
71
+ requirements: []
72
+ rubygems_version: 3.0.3
73
+ signing_key:
74
+ specification_version: 4
75
+ summary: Make your gsheet life easier
76
+ test_files: []