google_spreadsheet_fetcher 2.0.0 → 2.0.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/lib/google_spreadsheet_fetcher/version.rb +1 -1
- metadata +3 -13
- data/.github/workflows/main.yml +0 -40
- data/.github/workflows/release.yml +0 -33
- data/.gitignore +0 -14
- data/.rspec +0 -3
- data/.travis.yml +0 -5
- data/Gemfile +0 -4
- data/Rakefile +0 -6
- data/bin/console +0 -14
- data/bin/setup +0 -8
- data/google_spreadsheet_fetcher.gemspec +0 -34
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a18dded3ae272e466b1ef230e2b026bbef6dcbdc3504ede64efc98d6be084d84
|
|
4
|
+
data.tar.gz: 602af299a3764c525d76f0594023c8b84784f53993dbc651ff8605148ce47385
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5513c2c32a6fdc869cf6d628d4ca4b6808c84b42107f25ba2dd765c3c173339216a71020fe4003d94c12ef3f117e9a1f702b546c0e2abe31f59402edb223ae80
|
|
7
|
+
data.tar.gz: 8bdeae4bc5fd457095957dcca62cc9bdf9aff6e36d689d817fd84bb2fa2e3752fa25aef17da3753511d44d8b16757d358b1cd127faa9eb9f840051be1ce90630
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google_spreadsheet_fetcher
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.0.
|
|
4
|
+
version: 2.0.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Takahiro Ooishi
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: exe
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date:
|
|
12
|
+
date: 2023-12-08 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: rack
|
|
@@ -117,18 +117,8 @@ executables: []
|
|
|
117
117
|
extensions: []
|
|
118
118
|
extra_rdoc_files: []
|
|
119
119
|
files:
|
|
120
|
-
- ".github/workflows/main.yml"
|
|
121
|
-
- ".github/workflows/release.yml"
|
|
122
|
-
- ".gitignore"
|
|
123
|
-
- ".rspec"
|
|
124
|
-
- ".travis.yml"
|
|
125
|
-
- Gemfile
|
|
126
120
|
- LICENSE
|
|
127
121
|
- README.md
|
|
128
|
-
- Rakefile
|
|
129
|
-
- bin/console
|
|
130
|
-
- bin/setup
|
|
131
|
-
- google_spreadsheet_fetcher.gemspec
|
|
132
122
|
- lib/google_spreadsheet_fetcher.rb
|
|
133
123
|
- lib/google_spreadsheet_fetcher/authorizer/interface.rb
|
|
134
124
|
- lib/google_spreadsheet_fetcher/authorizer/oauth2/authorizer.rb
|
|
@@ -161,7 +151,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
161
151
|
- !ruby/object:Gem::Version
|
|
162
152
|
version: '0'
|
|
163
153
|
requirements: []
|
|
164
|
-
rubygems_version: 3.
|
|
154
|
+
rubygems_version: 3.4.10
|
|
165
155
|
signing_key:
|
|
166
156
|
specification_version: 4
|
|
167
157
|
summary: Google Spreadsheet fetcher
|
data/.github/workflows/main.yml
DELETED
|
@@ -1,40 +0,0 @@
|
|
|
1
|
-
name: rspec
|
|
2
|
-
|
|
3
|
-
on:
|
|
4
|
-
push:
|
|
5
|
-
branches:
|
|
6
|
-
- main
|
|
7
|
-
|
|
8
|
-
pull_request:
|
|
9
|
-
branches:
|
|
10
|
-
- main
|
|
11
|
-
|
|
12
|
-
env:
|
|
13
|
-
RAILS_ENV: test
|
|
14
|
-
|
|
15
|
-
jobs:
|
|
16
|
-
test:
|
|
17
|
-
runs-on: ubuntu-latest
|
|
18
|
-
strategy:
|
|
19
|
-
fail-fast: false
|
|
20
|
-
|
|
21
|
-
matrix:
|
|
22
|
-
ruby:
|
|
23
|
-
- 2.6
|
|
24
|
-
- 2.7
|
|
25
|
-
- 3.0
|
|
26
|
-
- 3.1
|
|
27
|
-
|
|
28
|
-
steps:
|
|
29
|
-
- uses: actions/checkout@v2
|
|
30
|
-
|
|
31
|
-
- name: Set up Ruby
|
|
32
|
-
uses: ruby/setup-ruby@v1
|
|
33
|
-
with:
|
|
34
|
-
ruby-version: ${{ matrix.ruby }}
|
|
35
|
-
bundler-cache: true
|
|
36
|
-
|
|
37
|
-
- name: Run tests
|
|
38
|
-
run: |
|
|
39
|
-
bundle exec rspec
|
|
40
|
-
continue-on-error: ${{ matrix.allow_failures == 'true' }}
|
|
@@ -1,33 +0,0 @@
|
|
|
1
|
-
name: Release gem
|
|
2
|
-
|
|
3
|
-
on:
|
|
4
|
-
workflow_dispatch:
|
|
5
|
-
inputs:
|
|
6
|
-
rubygems-otp-code:
|
|
7
|
-
description: RubyGems OTP code
|
|
8
|
-
required: true
|
|
9
|
-
|
|
10
|
-
permissions:
|
|
11
|
-
contents: write
|
|
12
|
-
|
|
13
|
-
jobs:
|
|
14
|
-
release-gem:
|
|
15
|
-
runs-on: ubuntu-latest
|
|
16
|
-
env:
|
|
17
|
-
GEM_HOST_API_KEY: ${{ secrets.RUBYGEMS_API_KEY }}
|
|
18
|
-
GEM_HOST_OTP_CODE: ${{ github.event.inputs.rubygems-otp-code }}
|
|
19
|
-
steps:
|
|
20
|
-
- uses: actions/checkout@v2
|
|
21
|
-
with:
|
|
22
|
-
fetch-depth: 0 # bundle exec rake release で git tag を見るため、tagをfetchするようにしている
|
|
23
|
-
- uses: ruby/setup-ruby@v1
|
|
24
|
-
with:
|
|
25
|
-
ruby-version: 3.1.1
|
|
26
|
-
- name: Bundle install
|
|
27
|
-
run: bundle install
|
|
28
|
-
- name: Setup git config # bundle exec rake release でgit tagが打たれていない場合、タグを打ってpushしてくれるため用意している
|
|
29
|
-
run: |
|
|
30
|
-
git config --global user.email "taka0125@gmail.com"
|
|
31
|
-
git config --global user.name "Takahiro Ooishi"
|
|
32
|
-
- name: Release gem
|
|
33
|
-
run: bundle exec rake release
|
data/.gitignore
DELETED
data/.rspec
DELETED
data/.travis.yml
DELETED
data/Gemfile
DELETED
data/Rakefile
DELETED
data/bin/console
DELETED
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
#!/usr/bin/env ruby
|
|
2
|
-
|
|
3
|
-
require "bundler/setup"
|
|
4
|
-
require "google_spreadsheet_fetcher"
|
|
5
|
-
|
|
6
|
-
# You can add fixtures and/or initialization code here to make experimenting
|
|
7
|
-
# with your gem easier. You can also use a different console, if you like.
|
|
8
|
-
|
|
9
|
-
# (If you use this, don't forget to add pry to your Gemfile!)
|
|
10
|
-
# require "pry"
|
|
11
|
-
# Pry.start
|
|
12
|
-
|
|
13
|
-
require "irb"
|
|
14
|
-
IRB.start(__FILE__)
|
data/bin/setup
DELETED
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
# coding: utf-8
|
|
2
|
-
lib = File.expand_path('../lib', __FILE__)
|
|
3
|
-
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
4
|
-
require 'google_spreadsheet_fetcher/version'
|
|
5
|
-
|
|
6
|
-
Gem::Specification.new do |spec|
|
|
7
|
-
spec.name = "google_spreadsheet_fetcher"
|
|
8
|
-
spec.version = GoogleSpreadsheetFetcher::VERSION
|
|
9
|
-
spec.authors = ["Takahiro Ooishi", "Yuya Yokosuka"]
|
|
10
|
-
spec.email = ["taka0125@gmail.com", "yuya.yokosuka@gmail.com"]
|
|
11
|
-
|
|
12
|
-
spec.summary = %q{Google Spreadsheet fetcher}
|
|
13
|
-
spec.description = %q{Google Spreadsheet fetcher}
|
|
14
|
-
spec.homepage = "https://github.com/taka0125/google_spreadsheet_fetcher"
|
|
15
|
-
spec.licenses = ['MIT']
|
|
16
|
-
|
|
17
|
-
spec.files = `git ls-files -z`.split("\x0").reject do |f|
|
|
18
|
-
f.match(%r{^(test|spec|features)/})
|
|
19
|
-
end
|
|
20
|
-
spec.bindir = "exe"
|
|
21
|
-
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
|
22
|
-
spec.require_paths = ["lib"]
|
|
23
|
-
|
|
24
|
-
spec.required_ruby_version = '>= 2.3.0'
|
|
25
|
-
|
|
26
|
-
spec.add_dependency 'rack', '< 3.0'
|
|
27
|
-
spec.add_dependency 'google-api-client', '~> 0.9'
|
|
28
|
-
spec.add_dependency 'googleauth'
|
|
29
|
-
spec.add_dependency 'activesupport'
|
|
30
|
-
|
|
31
|
-
spec.add_development_dependency "bundler"
|
|
32
|
-
spec.add_development_dependency "rake"
|
|
33
|
-
spec.add_development_dependency "rspec"
|
|
34
|
-
end
|