Commit 571a75854b2c49dcdff71b6e4177424ee66b0ba2
1 parent
e89b275c
Exists in
master
and in
1 other branch
add bitbucket issue tracker as a gem
Showing
2 changed files
with
19 additions
and
3 deletions
Show diff stats
Gemfile
| @@ -31,6 +31,7 @@ gem 'errbit_plugin' | @@ -31,6 +31,7 @@ gem 'errbit_plugin' | ||
| 31 | gem 'errbit_github_plugin' | 31 | gem 'errbit_github_plugin' |
| 32 | gem 'errbit_lighthouse_plugin' | 32 | gem 'errbit_lighthouse_plugin' |
| 33 | gem 'errbit_redmine_plugin' | 33 | gem 'errbit_redmine_plugin' |
| 34 | +gem 'errbit_bitbucket_plugin' | ||
| 34 | 35 | ||
| 35 | # Notification services | 36 | # Notification services |
| 36 | # --------------------------------------- | 37 | # --------------------------------------- |
Gemfile.lock
| @@ -44,6 +44,13 @@ GEM | @@ -44,6 +44,13 @@ GEM | ||
| 44 | erubis (>= 2.6.6) | 44 | erubis (>= 2.6.6) |
| 45 | binding_of_caller (0.7.2) | 45 | binding_of_caller (0.7.2) |
| 46 | debug_inspector (>= 0.0.1) | 46 | debug_inspector (>= 0.0.1) |
| 47 | + bitbucket_rest_api (0.1.5) | ||
| 48 | + faraday (~> 0.8.1) | ||
| 49 | + faraday_middleware (~> 0.9.0) | ||
| 50 | + hashie (~> 2.0.5) | ||
| 51 | + multi_json (~> 1.3) | ||
| 52 | + nokogiri (>= 1.5.2) | ||
| 53 | + simple_oauth | ||
| 47 | builder (3.0.4) | 54 | builder (3.0.4) |
| 48 | callsite (0.0.11) | 55 | callsite (0.0.11) |
| 49 | campy (1.0.0) | 56 | campy (1.0.0) |
| @@ -90,6 +97,10 @@ GEM | @@ -90,6 +97,10 @@ GEM | ||
| 90 | email_spec (1.5.0) | 97 | email_spec (1.5.0) |
| 91 | launchy (~> 2.1) | 98 | launchy (~> 2.1) |
| 92 | mail (~> 2.2) | 99 | mail (~> 2.2) |
| 100 | + errbit_bitbucket_plugin (0.1.0) | ||
| 101 | + bitbucket_rest_api | ||
| 102 | + errbit_plugin | ||
| 103 | + faraday (~> 0.8.1) | ||
| 93 | errbit_github_plugin (0.1.0) | 104 | errbit_github_plugin (0.1.0) |
| 94 | errbit_plugin | 105 | errbit_plugin |
| 95 | octokit | 106 | octokit |
| @@ -103,8 +114,10 @@ GEM | @@ -103,8 +114,10 @@ GEM | ||
| 103 | erubis (2.7.0) | 114 | erubis (2.7.0) |
| 104 | execjs (2.0.2) | 115 | execjs (2.0.2) |
| 105 | fabrication (2.9.0) | 116 | fabrication (2.9.0) |
| 106 | - faraday (0.9.0) | ||
| 107 | - multipart-post (>= 1.2, < 3) | 117 | + faraday (0.8.9) |
| 118 | + multipart-post (~> 1.2.0) | ||
| 119 | + faraday_middleware (0.9.1) | ||
| 120 | + faraday (>= 0.7.4, < 0.10) | ||
| 108 | flowdock (0.3.1) | 121 | flowdock (0.3.1) |
| 109 | httparty (~> 0.7) | 122 | httparty (~> 0.7) |
| 110 | multi_json | 123 | multi_json |
| @@ -174,7 +187,7 @@ GEM | @@ -174,7 +187,7 @@ GEM | ||
| 174 | moped (1.5.1) | 187 | moped (1.5.1) |
| 175 | multi_json (1.10.0) | 188 | multi_json (1.10.0) |
| 176 | multi_xml (0.5.5) | 189 | multi_xml (0.5.5) |
| 177 | - multipart-post (2.0.0) | 190 | + multipart-post (1.2.0) |
| 178 | net-scp (1.1.2) | 191 | net-scp (1.1.2) |
| 179 | net-ssh (>= 2.6.5) | 192 | net-ssh (>= 2.6.5) |
| 180 | net-sftp (2.1.2) | 193 | net-sftp (2.1.2) |
| @@ -284,6 +297,7 @@ GEM | @@ -284,6 +297,7 @@ GEM | ||
| 284 | sawyer (0.5.5) | 297 | sawyer (0.5.5) |
| 285 | addressable (~> 2.3.5) | 298 | addressable (~> 2.3.5) |
| 286 | faraday (~> 0.8, < 0.10) | 299 | faraday (~> 0.8, < 0.10) |
| 300 | + simple_oauth (0.2.0) | ||
| 287 | simplecov (0.7.1) | 301 | simplecov (0.7.1) |
| 288 | multi_json (~> 1.0) | 302 | multi_json (~> 1.0) |
| 289 | simplecov-html (~> 0.7.1) | 303 | simplecov-html (~> 0.7.1) |
| @@ -355,6 +369,7 @@ DEPENDENCIES | @@ -355,6 +369,7 @@ DEPENDENCIES | ||
| 355 | devise | 369 | devise |
| 356 | draper | 370 | draper |
| 357 | email_spec | 371 | email_spec |
| 372 | + errbit_bitbucket_plugin | ||
| 358 | errbit_github_plugin | 373 | errbit_github_plugin |
| 359 | errbit_lighthouse_plugin | 374 | errbit_lighthouse_plugin |
| 360 | errbit_plugin | 375 | errbit_plugin |