Skip to content
This repository was archived by the owner on Aug 4, 2024. It is now read-only.

Commit 9d29b5c

Browse files
committed
Updates with changed repo name
1 parent 0a859eb commit 9d29b5c

File tree

3 files changed

+9
-7
lines changed

3 files changed

+9
-7
lines changed

.gitpod.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@
77
tasks:
88
- name: Dev
99
init: |
10-
bin/setup
1110
pyenv uninstall -f 3.11.1
1211
env PYTHON_CONFIGURE_OPTS='--enable-shared' pyenv install -f 3.10
1312
pyenv global -f 3.10
1413
pip install guidance
1514
gp env PYTHONPATH='/workspace/.pyenv_mirror/user/3.10.9/lib/python3.10/site-packages'
15+
bin/setup
1616
env:
1717
PYTHONPATH: '/workspace/.pyenv_mirror/user/3.10.9/lib/python3.10/site-packages'

README.md

+2
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,8 @@ using an env variable for the below:
4646
```bash
4747
export OPENAI_API_KEY=<your key>
4848
```
49+
These keys can be found at https://platform.openai.com/account/api-keys if you
50+
have an account.
4951

5052
### Usage
5153
```ruby

guidance.gemspec

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
1-
require_relative "lib/guidance_lib/version"
1+
require_relative "lib/guidance/version"
22

33
Gem::Specification.new do |spec|
44
spec.name = "guidance"
5-
spec.version = GuidanceLib::VERSION
5+
spec.version = Guidance::VERSION
66
spec.authors = ["Noah Horton"]
77
spec.email = ["[email protected]"]
88

99
spec.summary = "Microsoft Guidance for Ruby"
10-
spec.homepage = "https://github.com/Unsupervisedcom/guideance-rails"
10+
spec.homepage = "https://github.com/Unsupervisedcom/guideance"
1111
spec.license = "MIT"
1212
spec.required_ruby_version = ">= 3.0"
1313

1414
spec.metadata = {
15-
"bug_tracker_uri" => "https://github.com/Unsupervisedcom/guideance-rails/issues",
16-
"changelog_uri" => "https://github.com/Unsupervisedcom/guideance-rails/releases",
17-
"source_code_uri" => "https://github.com/Unsupervisedcom/guideance-rails",
15+
"bug_tracker_uri" => "https://github.com/Unsupervisedcom/guideance/issues",
16+
"changelog_uri" => "https://github.com/Unsupervisedcom/guideance/releases",
17+
"source_code_uri" => "https://github.com/Unsupervisedcom/guideance",
1818
"homepage_uri" => spec.homepage,
1919
"rubygems_mfa_required" => "true"
2020
}

0 commit comments

Comments
 (0)