rcrewai 0.1.0 → 0.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -58,7 +58,7 @@ module RCrewAI
58
58
 
59
59
  def authorization_header
60
60
  {
61
- 'Authorization' => "Bearer #{config.api_key}",
61
+ 'x-api-key' => config.api_key,
62
62
  'anthropic-version' => API_VERSION
63
63
  }
64
64
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module RCrewAI
4
- VERSION = "0.1.0"
4
+ VERSION = "0.2.0"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rcrewai
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - gkosmo
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-08-12 00:00:00.000000000 Z
11
+ date: 2025-08-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: thor
@@ -295,17 +295,41 @@ files:
295
295
  - docs/_layouts/default.html
296
296
  - docs/_layouts/example.html
297
297
  - docs/_layouts/tutorial.html
298
+ - docs/api/agent.md
298
299
  - docs/api/configuration.md
299
300
  - docs/api/crew.md
300
301
  - docs/api/index.md
302
+ - docs/api/task.md
301
303
  - docs/api/tools.md
302
304
  - docs/assets/css/style.css
305
+ - docs/examples/api-integration.md
306
+ - docs/examples/async-execution.md
307
+ - docs/examples/code-review-crew.md
308
+ - docs/examples/content-marketing-pipeline.md
309
+ - docs/examples/custom-tools.md
310
+ - docs/examples/customer-support.md
311
+ - docs/examples/data-analysis-team.md
312
+ - docs/examples/database-operations.md
313
+ - docs/examples/ecommerce-operations.md
314
+ - docs/examples/financial-analysis.md
315
+ - docs/examples/hierarchical-crew.md
303
316
  - docs/examples/human-in-the-loop.md
304
317
  - docs/examples/index.md
318
+ - docs/examples/product-development.md
305
319
  - docs/examples/production-ready-crew.md
320
+ - docs/examples/research-development.md
306
321
  - docs/examples/simple-research-crew.md
322
+ - docs/examples/social-media.md
323
+ - docs/examples/task-automation.md
324
+ - docs/examples/tool-composition.md
325
+ - docs/examples/web-scraping.md
307
326
  - docs/index.md
327
+ - docs/tutorials/advanced-agents.md
328
+ - docs/tutorials/custom-tools.md
329
+ - docs/tutorials/deployment.md
308
330
  - docs/tutorials/getting-started.md
331
+ - docs/tutorials/index.md
332
+ - docs/tutorials/multiple-crews.md
309
333
  - examples/async_execution_example.rb
310
334
  - examples/hierarchical_crew_example.rb
311
335
  - examples/human_in_the_loop_example.rb