Skip to content

Commit 4e9dda2

Browse files
committed
Clarify installation instructions
1 parent c14992a commit 4e9dda2

File tree

1 file changed

+15
-6
lines changed

1 file changed

+15
-6
lines changed

README.md

Lines changed: 15 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,25 @@ This gem mirrors the public interface of [elevenlabs-python](https://github.com/
44

55
## Installation
66

7-
Add the gem to your project:
7+
Since this gem isn’t published on RubyGems yet, install it from the local source or Git:
88

9-
```ruby
10-
gem "elevenlabs"
9+
```bash
10+
git clone https://github.com/architecture/elevenlabs-ruby
11+
cd elevenlabs-ruby
12+
gem build elevenlabs-ruby.gemspec
13+
gem install ./elevenlabs-0.1.0.gem
1114
```
1215

13-
or via Bundler:
16+
Or reference the GitHub repo/path directly from your `Gemfile`:
1417

15-
```bash
16-
bundle add elevenlabs
18+
```ruby
19+
# Latest main branch
20+
gem "elevenlabs", git: "https://github.com/architecture/elevenlabs-ruby", branch: "main"
21+
22+
# Specific tag/commit
23+
gem "elevenlabs", git: "https://github.com/architecture/elevenlabs-ruby", tag: "v0.1.0"
24+
# or
25+
gem "elevenlabs", path: "/path/to/elevenlabs-ruby"
1726
```
1827

1928
## Quick start

0 commit comments

Comments
 (0)