Skip to content

Commit e012ef3

Browse files
committed
Missing agent context in gemspec.
1 parent 9d7ffc8 commit e012ef3

File tree

5 files changed

+10
-7
lines changed

5 files changed

+10
-7
lines changed

.github/copilot-instructions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## Use Agent Context
44

5-
When working on this project, consult the `agent.md` file for project-specific guidelines, architecture decisions, and development patterns. This file contains curated information that will help you make better decisions aligned with the project's goals and standards.
5+
When working on this project, consult the `agents.md` file for project-specific guidelines, architecture decisions, and development patterns. This file contains curated information that will help you make better decisions aligned with the project's goals and standards.
66

77
If the file does not exist, you will need to install it, by running the following command:
88

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/agent.md
1+
/agents.md
22
/.context
33
/.bundle
44
/pkg

.rubocop.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
plugins:
2+
- rubocop-md
23
- rubocop-socketry
34

45
AllCops:

gems.rb

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,9 @@
2626
gem "sus"
2727
gem "covered"
2828
gem "decode"
29+
2930
gem "rubocop"
31+
gem "rubocop-md"
3032
gem "rubocop-socketry"
3133

3234
gem "sus-fixtures-async"

guides/getting-started/readme.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -40,15 +40,15 @@ You can define your queues in an initializer file (e.g., `config/initializers/as
4040
``` ruby
4141
# config/initializers/async_job.rb
4242

43-
require 'async/job/processor/redis'
44-
require 'async/job/processor/inline'
43+
require "async/job/processor/redis"
44+
require "async/job/processor/inline"
4545

4646
Rails.application.configure do
4747
# Create a queue for the "default" backend:
4848
config.async_job.define_queue "default" do
4949
dequeue Async::Job::Processor::Redis
5050
end
51-
51+
5252
# Create a queue named "local" which uses the Inline backend:
5353
config.async_job.define_queue "local" do
5454
dequeue Async::Job::Processor::Inline
@@ -64,7 +64,7 @@ Rather than using `Async::Job` for all jobs, you could opt in using a specific q
6464
class MyJob < ApplicationJob
6565
self.queue_adapter = :async_job
6666
queue_as :local
67-
67+
6868
# ...
6969
end
7070
```
@@ -88,7 +88,7 @@ To enqueue a job, you can use the `perform_later` method in your Active Job clas
8888
``` ruby
8989
class MyJob < ApplicationJob
9090
queue_as :default
91-
91+
9292
def perform(message)
9393
puts message
9494
end

0 commit comments

Comments
 (0)