airbrake_mcp 1.0.2 → 1.0.3

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b2240a66c5be534864e153cecb78600f027a30e877974cbad9a21a1b6b4823bf
4
- data.tar.gz: d55ff5ccc6a5e9e4bb4bcb943582c997faec795378affc05175f6bd4c47f57b3
3
+ metadata.gz: 722e5cf91d2f23f4723ce52aecf454c9e4dd6371e6388dbcd9d2dfb4703cf9f8
4
+ data.tar.gz: df24d6787c6ee9abb46783e58c87cc4b7c56a6999db39b657ee556099f7ca674
5
5
  SHA512:
6
- metadata.gz: 6190373dabc25f17f30f5d7ecade25fe344802a72f5ff70085e05b652bd2f2adab074fdd8503bbde1a9de41f961a609cd13f9e6fdaeeddcc1b414c6a63519317
7
- data.tar.gz: 346e2155248f9e9449f879542071be018b68e624db4fdb5771696fe6de12353193d88439ede288fb71476a32341d2a46773a8de21b7b34312673118d03b4b184
6
+ metadata.gz: e078d5b0fb0435dd004ddb9ddf8654ac705a265469ea19025a8a01e7b9ea5cc1b6fde09ba457887efbafa54bf3f7386962ccd61497db9cc910f4bcbe77184b7b
7
+ data.tar.gz: 9fd4a9aefc16035ef2c0633a54a5083c6c0e2100fe3a6fb695cae8c3218dbcf6a0862fb5adde30269c0d5885afa2ea0bf8a31bef3eed6ad1b42f04587611dc9c
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.0.3] - 2026-01-06
4
+
5
+ ### Fixed
6
+ - Removed `require 'bundler/setup'` from bin script to fix Bundler conflicts when running from project directories with their own Gemfile
7
+ - Made dotenv loading optional (development dependency only)
8
+
9
+ ### Changed
10
+ - Simplified README installation instructions
11
+
3
12
  ## [1.0.2] - 2025-01-06
4
13
 
5
14
  ### Added
data/README.md CHANGED
@@ -48,41 +48,36 @@ bundle install
48
48
  ### Quick Setup
49
49
 
50
50
  ```bash
51
- claude mcp add airbrake $(which airbrake_mcp) \
51
+ claude mcp add airbrake airbrake_mcp \
52
52
  -e AIRBRAKE_USER_KEY=your_user_key \
53
53
  -e AIRBRAKE_PROJECT_ID=123456
54
54
  ```
55
55
 
56
56
  ### Using rbenv/asdf/chruby
57
57
 
58
- If you use a Ruby version manager, Claude Code runs in a non-interactive shell without access to your `.bashrc`/`.zshrc`. You need to provide the full path to the shim:
58
+ If you use a Ruby version manager, Claude Code runs in a non-interactive shell without access to your shell profile. Provide the full path to the shim:
59
59
 
60
60
  ```bash
61
- # For rbenv
61
+ # rbenv
62
62
  claude mcp add airbrake ~/.rbenv/shims/airbrake_mcp \
63
63
  -e AIRBRAKE_USER_KEY=your_user_key \
64
64
  -e AIRBRAKE_PROJECT_ID=123456
65
65
 
66
- # For asdf
66
+ # asdf
67
67
  claude mcp add airbrake ~/.asdf/shims/airbrake_mcp \
68
68
  -e AIRBRAKE_USER_KEY=your_user_key \
69
69
  -e AIRBRAKE_PROJECT_ID=123456
70
-
71
- # For chruby (use full gem path)
72
- claude mcp add airbrake $(gem environment gemdir)/bin/airbrake_mcp \
73
- -e AIRBRAKE_USER_KEY=your_user_key \
74
- -e AIRBRAKE_PROJECT_ID=123456
75
70
  ```
76
71
 
77
72
  ### Manual Configuration
78
73
 
79
- Add to `~/.claude/settings.json` or project's `.claude/settings.local.json`:
74
+ Add to `~/.claude/settings.json`:
80
75
 
81
76
  ```json
82
77
  {
83
78
  "mcpServers": {
84
79
  "airbrake": {
85
- "command": "/full/path/to/airbrake_mcp",
80
+ "command": "airbrake_mcp",
86
81
  "args": [],
87
82
  "env": {
88
83
  "AIRBRAKE_USER_KEY": "your_user_key",
data/bin/airbrake_mcp CHANGED
@@ -1,8 +1,12 @@
1
1
  #!/usr/bin/env ruby
2
2
  # frozen_string_literal: true
3
3
 
4
- require 'bundler/setup'
5
- require 'dotenv/load'
4
+ # Load dotenv for development (optional)
5
+ begin
6
+ require 'dotenv/load'
7
+ rescue LoadError
8
+ # dotenv is optional, used only for local development
9
+ end
6
10
 
7
11
  require 'airbrake_mcp'
8
12
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module AirbrakeMcp
4
- VERSION = '1.0.2'
4
+ VERSION = '1.0.3'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: airbrake_mcp
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.2
4
+ version: 1.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - httplab