Skip to content

Commit

Permalink
feat: 🎸 'google-api-client' gem を導入した (#8)
Browse files Browse the repository at this point in the history
  • Loading branch information
nikukyugamer authored Jun 9, 2022
1 parent d401d0f commit f5c0450
Show file tree
Hide file tree
Showing 3 changed files with 61 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
config/google_api_credentials.json
config/google_api_token.yml
config/google_natural_language_api_credentials.json

vendor/
.vscode/
.history/
Expand Down
1 change: 1 addition & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '3.1.2'

gem 'bootsnap', require: false
gem 'google-api-client'
gem 'puma'
gem 'rails'
gem 'sqlite3'
Expand Down
56 changes: 56 additions & 0 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,8 @@ GEM
i18n (>= 1.6, < 2)
minitest (>= 5.1)
tzinfo (~> 2.0)
addressable (2.8.0)
public_suffix (>= 2.0.2, < 5.0)
ast (2.4.2)
bootsnap (1.12.0)
msgpack (~> 1.2)
Expand All @@ -75,26 +77,63 @@ GEM
debug (1.5.0)
irb (>= 1.3.6)
reline (>= 0.2.7)
declarative (0.0.20)
diff-lcs (1.5.0)
digest (3.1.0)
erubi (1.10.0)
faraday (2.3.0)
faraday-net_http (~> 2.0)
ruby2_keywords (>= 0.0.4)
faraday-net_http (2.0.3)
gems (1.2.0)
globalid (1.0.0)
activesupport (>= 5.0)
google-api-client (0.53.0)
google-apis-core (~> 0.1)
google-apis-generator (~> 0.1)
google-apis-core (0.5.0)
addressable (~> 2.5, >= 2.5.1)
googleauth (>= 0.16.2, < 2.a)
httpclient (>= 2.8.1, < 3.a)
mini_mime (~> 1.0)
representable (~> 3.0)
retriable (>= 2.0, < 4.a)
rexml
webrick
google-apis-discovery_v1 (0.8.0)
google-apis-core (>= 0.4, < 2.a)
google-apis-generator (0.5.0)
activesupport (>= 5.0)
gems (~> 1.2)
google-apis-core (>= 0.5, < 2.a)
google-apis-discovery_v1 (~> 0.5)
thor (>= 0.20, < 2.a)
googleauth (1.1.3)
faraday (>= 0.17.3, < 3.a)
jwt (>= 1.4, < 3.0)
memoist (~> 0.16)
multi_json (~> 1.11)
os (>= 0.9, < 2.0)
signet (>= 0.16, < 2.a)
httpclient (2.8.3)
i18n (1.10.0)
concurrent-ruby (~> 1.0)
io-console (0.5.11)
irb (1.4.1)
reline (>= 0.3.0)
jwt (2.4.1)
loofah (2.18.0)
crass (~> 1.0.2)
nokogiri (>= 1.5.9)
mail (2.7.1)
mini_mime (>= 0.1.1)
marcel (1.0.2)
memoist (0.16.2)
method_source (1.0.0)
mini_mime (1.1.2)
minitest (5.15.0)
msgpack (1.5.2)
multi_json (1.15.0)
net-imap (0.2.3)
digest
net-protocol
Expand All @@ -112,9 +151,11 @@ GEM
nio4r (2.5.8)
nokogiri (1.13.6-x86_64-linux)
racc (~> 1.4)
os (1.1.4)
parallel (1.22.1)
parser (3.1.2.0)
ast (~> 2.4.1)
public_suffix (4.0.7)
puma (5.6.4)
nio4r (~> 2.0)
racc (1.6.0)
Expand Down Expand Up @@ -152,6 +193,11 @@ GEM
regexp_parser (2.5.0)
reline (0.3.1)
io-console (~> 0.5)
representable (3.2.0)
declarative (< 0.1.0)
trailblazer-option (>= 0.1.1, < 0.2.0)
uber (< 0.2.0)
retriable (3.1.2)
rexml (3.2.5)
rspec-core (3.11.0)
rspec-support (~> 3.11.0)
Expand Down Expand Up @@ -186,13 +232,22 @@ GEM
rack (>= 1.1)
rubocop (>= 1.7.0, < 2.0)
ruby-progressbar (1.11.0)
ruby2_keywords (0.0.5)
signet (0.16.1)
addressable (~> 2.8)
faraday (>= 0.17.5, < 3.0)
jwt (>= 1.5, < 3.0)
multi_json (~> 1.10)
sqlite3 (1.4.2)
strscan (3.0.3)
thor (1.2.1)
timeout (0.3.0)
trailblazer-option (0.1.2)
tzinfo (2.0.4)
concurrent-ruby (~> 1.0)
uber (0.1.0)
unicode-display_width (2.1.0)
webrick (1.7.0)
websocket-driver (0.7.5)
websocket-extensions (>= 0.1.0)
websocket-extensions (0.1.5)
Expand All @@ -204,6 +259,7 @@ PLATFORMS
DEPENDENCIES
bootsnap
debug
google-api-client
puma
rails
rspec-rails
Expand Down

0 comments on commit f5c0450

Please sign in to comment.