Skip to content

Commit f9f28c0

Browse files
Very minor cleanup and comments (#1)
1 parent 478770e commit f9f28c0

20 files changed

+21
-22
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
ruby:
1717
- '3.4'
1818
- '3.3'
19-
- '3.2'
19+
- '3.2' # EOL: 2026-03-31 (expected)
2020

2121
steps:
2222
- uses: actions/checkout@v4

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,16 @@ Chatwerk provides AI tool integration for the [QueryPackwerk](https://github.com
77
88
## Installation
99

10-
Install the gem, either add in to your packwerk'd application's Gemfile:
10+
Install the gem.
11+
12+
Either add it to your packwerk'd application's Gemfile:
1113

1214
```ruby
1315
$ bundle add chatwerk
1416
$ bundle install
1517
```
1618

17-
or install it on its own:
19+
Or, install it on its own:
1820

1921
```bash
2022
$ gem install chatwerk

lib/chatwerk/cli.rb

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# typed: false
21
# frozen_string_literal: true
32

43
require 'thor'

lib/chatwerk/helpers.rb

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
module Chatwerk
24
module Helpers
35
def chdir(&)

lib/chatwerk/mcp.rb

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
require 'mcp'
24

35
module Chatwerk

lib/chatwerk/tools/print_env_tool.rb

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
require 'mcp'
24
require_relative '../helpers'
35

lib/chatwerk/version.rb

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# typed: false
21
# frozen_string_literal: true
32

43
module Chatwerk

lib/chatwerk/views.rb

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
module Chatwerk
24
module Views
35
autoload :NoPackagesView, 'chatwerk/views/no_packages_view'

spec/chatwerk/api_spec.rb

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
1-
# typed: false
21
# frozen_string_literal: true
32

4-
require 'spec_helper'
5-
63
RSpec.describe Chatwerk::Api do
74
let(:pwd) { '/test/workspace' }
85
let(:package_path) { 'packs/test_package' }

spec/chatwerk/error_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
require 'spec_helper'
1+
# frozen_string_literal: true
22

33
RSpec.describe Chatwerk::Error do
44
context 'with a Chatwerk::Error' do

0 commit comments

Comments
 (0)