Skip to content

Commit 777eb6b

Browse files
architectureclaude
andcommitted
Add git-source install option to README
Users can install directly from a GitHub release tag via Bundler's git source without needing a package registry token. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent 294a7ae commit 777eb6b

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

README.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,20 @@ Then run `bundle install`.
2323

2424
> **Note:** The `gem install elevenlabs` command shown on the GitHub Packages page points to RubyGems.org and will not work — this gem is only available via GitHub Packages.
2525
26+
### Alternative: install directly from GitHub (no registry auth required)
27+
28+
Bundler can pull the gem straight from the git repository. This works for public repos without any token setup:
29+
30+
```ruby
31+
# Pin to a release tag (recommended for production)
32+
gem "elevenlabs", git: "https://github.com/architecture/elevenlabs-ruby", tag: "v0.3.0"
33+
34+
# Or track the latest main branch
35+
gem "elevenlabs", git: "https://github.com/architecture/elevenlabs-ruby", branch: "main"
36+
```
37+
38+
Then run `bundle install`.
39+
2640
## Quick start
2741

2842
```ruby

0 commit comments

Comments
 (0)