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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 58033b85b7409d8388984000a267c5b7bff059d62abf75eab033605e0d689531
4
- data.tar.gz: f561bc69c27f1a6dde5b4a28066d5950db78ead62dc5ceab1e17c67250bcb2da
3
+ metadata.gz: a18dded3ae272e466b1ef230e2b026bbef6dcbdc3504ede64efc98d6be084d84
4
+ data.tar.gz: 602af299a3764c525d76f0594023c8b84784f53993dbc651ff8605148ce47385
5
5
  SHA512:
6
- metadata.gz: 5d35206bb7db14693b68afa1073da9ba2c639989bb37297d2aa0af11f75a1014ff046289b9f776b74b9e687edbae8d208394e61ac1c657bb2d15285e8f8dd4d7
7
- data.tar.gz: a66f04dc7b23c5598f177b54b6193dc485589ff028cb91e906795cfcbbc0ab15ef623ef1cb745c5e319ead782270f6f560e5a0cccbe8ad3877e456f2d94588bd
6
+ metadata.gz: 5513c2c32a6fdc869cf6d628d4ca4b6808c84b42107f25ba2dd765c3c173339216a71020fe4003d94c12ef3f117e9a1f702b546c0e2abe31f59402edb223ae80
7
+ data.tar.gz: 8bdeae4bc5fd457095957dcca62cc9bdf9aff6e36d689d817fd84bb2fa2e3752fa25aef17da3753511d44d8b16757d358b1cd127faa9eb9f840051be1ce90630
@@ -1,3 +1,3 @@
1
1
  module GoogleSpreadsheetFetcher
2
- VERSION = "2.0.0"
2
+ VERSION = "2.0.1"
3
3
  end
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.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: 2022-12-03 00:00:00.000000000 Z
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.3.7
154
+ rubygems_version: 3.4.10
165
155
  signing_key:
166
156
  specification_version: 4
167
157
  summary: Google Spreadsheet fetcher
@@ -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
@@ -1,14 +0,0 @@
1
- /.bundle/
2
- /.yardoc
3
- /Gemfile.lock
4
- /_yardoc/
5
- /coverage/
6
- /doc/
7
- /pkg/
8
- /spec/reports/
9
- /tmp/
10
-
11
- # rspec failure tracking
12
- .rspec_status
13
-
14
- vendor/
data/.rspec DELETED
@@ -1,3 +0,0 @@
1
- --format documentation
2
- --color
3
- -r spec_helper
data/.travis.yml DELETED
@@ -1,5 +0,0 @@
1
- sudo: false
2
- language: ruby
3
- rvm:
4
- - 2.4.1
5
- before_install: gem install bundler -v 1.14.6
data/Gemfile DELETED
@@ -1,4 +0,0 @@
1
- source 'https://rubygems.org'
2
-
3
- # Specify your gem's dependencies in google_spreadsheet_fetcher.gemspec
4
- gemspec
data/Rakefile DELETED
@@ -1,6 +0,0 @@
1
- require "bundler/gem_tasks"
2
- require "rspec/core/rake_task"
3
-
4
- RSpec::Core::RakeTask.new(:spec)
5
-
6
- task :default => :spec
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,8 +0,0 @@
1
- #!/usr/bin/env bash
2
- set -euo pipefail
3
- IFS=$'\n\t'
4
- set -vx
5
-
6
- bundle install
7
-
8
- # Do any other automated setup that you need to do here
@@ -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