Skip to content

Commit

Permalink
version 0.1.0 for google gemini ai
Browse files Browse the repository at this point in the history
  • Loading branch information
SauravSaini98 committed Feb 16, 2024
0 parents commit 23e0296
Show file tree
Hide file tree
Showing 18 changed files with 1,020 additions and 0 deletions.
56 changes: 56 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
# Ignore bundler config.
/.bundle

# Ignore local development configuration.
/config/*.yml

# Ignore test and spec directories.
/spec/tmp
/spec/fixtures
/spec/reports
/spec/examples

# Ignore coverage report generated by SimpleCov.
/coverage

# Ignore environment-specific files.
.env
.env.local
.env.development.local
.env.test.local
.env.production.local

# Ignore local database files.
/db/*.sqlite3
/db/*.sqlite3-journal

# Ignore the output of 'gem build'.
/*.gem

# rspec failure tracking
.rspec_status

# IDE
.idea
.idea/
.idea/*
.vscode
.vs/
*.iml
*.sublime-project
*.sublime-workspace
/.vscode

# Mac
.DS_Store

# Ignore system and application-specific files.
*.log
*.swp
*.bak
Thumbs.db

# Ignore gem artifacts.
/pkg
*.gem

1 change: 1 addition & 0 deletions .rspec
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
--require spec_helper
11 changes: 11 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
source "https://rubygems.org"

# Include gem dependencies from ruby-geminiai.gemspec
gemspec

group :test, :development do
gem "byebug", "~> 11.1.3"
gem "dotenv", "~> 2.8.1"
gem "rake", "~> 13.1"
gem "rspec", "~> 3.12"
end
69 changes: 69 additions & 0 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
PATH
remote: .
specs:
ruby-gemini-ai (0.1.0)
event_stream_parser (>= 0.3.0, < 2.0.0)
faraday (>= 1)
googleauth (~> 1.8)

GEM
remote: https://rubygems.org/
specs:
addressable (2.8.6)
public_suffix (>= 2.0.2, < 6.0)
byebug (11.1.3)
diff-lcs (1.5.1)
dotenv (2.8.1)
event_stream_parser (1.0.0)
faraday (2.9.0)
faraday-net_http (>= 2.0, < 3.2)
faraday-net_http (3.1.0)
net-http
google-cloud-env (2.1.1)
faraday (>= 1.0, < 3.a)
googleauth (1.11.0)
faraday (>= 1.0, < 3.a)
google-cloud-env (~> 2.1)
jwt (>= 1.4, < 3.0)
multi_json (~> 1.11)
os (>= 0.9, < 2.0)
signet (>= 0.16, < 2.a)
jwt (2.7.1)
multi_json (1.15.0)
net-http (0.4.1)
uri
os (1.1.4)
public_suffix (5.0.4)
rake (13.1.0)
rspec (3.13.0)
rspec-core (~> 3.13.0)
rspec-expectations (~> 3.13.0)
rspec-mocks (~> 3.13.0)
rspec-core (3.13.0)
rspec-support (~> 3.13.0)
rspec-expectations (3.13.0)
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.13.0)
rspec-mocks (3.13.0)
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.13.0)
rspec-support (3.13.0)
signet (0.19.0)
addressable (~> 2.8)
faraday (>= 0.17.5, < 3.a)
jwt (>= 1.5, < 3.0)
multi_json (~> 1.10)
uri (0.13.0)

PLATFORMS
arm64-darwin-22

DEPENDENCIES
byebug (~> 11.1.3)
dotenv (~> 2.8.1)
rake (~> 13.1)
rspec (~> 3.12)
ruby-gemini-ai!

BUNDLED WITH
2.3.22
22 changes: 22 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
MIT License

Copyright (c) 2024 GeminiAI

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:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

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.

Loading

0 comments on commit 23e0296

Please sign in to comment.