opbeat 3.0.0 → 3.0.1
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 +4 -4
- data/.gitignore +1 -0
- data/HISTORY.md +6 -0
- data/README.md +2 -2
- data/lib/opbeat/integration/sidekiq.rb +1 -1
- data/lib/opbeat/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9bd0e8b876fcfe53940663a7aa99aef542d75dfc
|
|
4
|
+
data.tar.gz: 4955d024a5b1eee21385ba40c3fb6cdc2d1f8c48
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 163c15a7fb0bde41da99529d7dc5b3c8eb99a0499615517f3e537c9f6d4d3013dc57c226e4ceb7e680e05ef2901a6a35e9422ece79a332646cf72f350dceb2cc
|
|
7
|
+
data.tar.gz: be064cbb76a40c5c3e0ab4d6c2f0fec78947bb803f025d4df09a553e091c29150a2aae130781bb6786b5a1398ec823f33dee092ac09d073548e4e1267e8876ff
|
data/.gitignore
CHANGED
data/HISTORY.md
CHANGED
data/README.md
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
Add the following to your `Gemfile`:
|
|
10
10
|
|
|
11
11
|
```ruby
|
|
12
|
-
gem 'opbeat',
|
|
12
|
+
gem 'opbeat', '~> 3.0'
|
|
13
13
|
```
|
|
14
14
|
|
|
15
15
|
The Opbeat gem adhere to [Semantic
|
|
@@ -137,7 +137,7 @@ class MyWorker
|
|
|
137
137
|
def perform
|
|
138
138
|
Opbeat.transaction "MyWorker#perform", "worker.sidekiq" do
|
|
139
139
|
User.find_each do |user|
|
|
140
|
-
Opbeat.trace 'run!' do
|
|
140
|
+
Opbeat.trace 'run!' do
|
|
141
141
|
user.sync_with_payment_provider!
|
|
142
142
|
end
|
|
143
143
|
end
|
data/lib/opbeat/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: opbeat
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.0.
|
|
4
|
+
version: 3.0.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Mikkel Malmberg
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-
|
|
11
|
+
date: 2016-02-02 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: activesupport
|