bugsnag-jets 0.1.0 → 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile.lock +1 -1
- data/README.md +12 -37
- data/lib/bugsnag_jets/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5e6336ec08ac8cb932d337a60db8ed2111ba5df73db8e3b451084b63951d8730
|
4
|
+
data.tar.gz: 5383161dad22a7efbfc539c508b6de3047f283623cbbabcf5aad0135f9fc4bbd
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0c6e0edc5c01d471b5aba8f22575a6a70ffdf8c0faa8811d552233826294068d2a77a3dcd6beeff9708f842778ef38e14804aa83bfa96877a6c950cae8bc3b47
|
7
|
+
data.tar.gz: b3abbf65519e977fa16ed9f651f982ffa652ac4d88aab950ff532c1f2749b8a3b474602142b744f79834d8ea13b2ff8826b07c47f0e34401c5b3a86c35c7f796
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
@@ -1,40 +1,15 @@
|
|
1
|
-
|
1
|
+
This gems adds [Bugsnag](https://www.bugsnag.com/) support to the serverless [Ruby Jets Framework](https://rubyonjets.com/).
|
2
2
|
|
3
|
-
|
3
|
+
This is not an official gem supported by [Bugsnag](https://www.bugsnag.com/).
|
4
4
|
|
5
|
-
|
5
|
+
# Installation
|
6
|
+
|
7
|
+
Add this line to your Gemfile:
|
8
|
+
|
9
|
+
`gem 'bugsnag-jets'`
|
10
|
+
|
11
|
+
And then execute:
|
12
|
+
|
13
|
+
`bundle`
|
6
14
|
|
7
|
-
|
8
|
-
|
9
|
-
Add this line to your application's Gemfile:
|
10
|
-
|
11
|
-
```ruby
|
12
|
-
gem 'bugsnag_jets-jets'
|
13
|
-
```
|
14
|
-
|
15
|
-
And then execute:
|
16
|
-
|
17
|
-
$ bundle install
|
18
|
-
|
19
|
-
Or install it yourself as:
|
20
|
-
|
21
|
-
$ gem install bugsnag-jets
|
22
|
-
|
23
|
-
## Usage
|
24
|
-
|
25
|
-
TODO: Write usage instructions here
|
26
|
-
|
27
|
-
## Development
|
28
|
-
|
29
|
-
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
30
|
-
|
31
|
-
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
32
|
-
|
33
|
-
## Contributing
|
34
|
-
|
35
|
-
Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/bugsnag-jets.
|
36
|
-
|
37
|
-
|
38
|
-
## License
|
39
|
-
|
40
|
-
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
15
|
+
Add the env variable `BUGSNAG_API_KEY` to your Jets .env file.
|
data/lib/bugsnag_jets/version.rb
CHANGED