canary_ipa 0.3.0 → 0.4.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c31c63bc88126d0aacaff770e502d661a28ece46223f0f0b1c757928c00c86f1
4
- data.tar.gz: 9cea7b992b68bf377263376dba3208e2cc320fd89fbaa80a3f94fc02870cb230
3
+ metadata.gz: a7c32597ab934c0cfe520760a261be74114960f7bfe6d750ec66e3b583d94696
4
+ data.tar.gz: 3fc009bd012fb958944008c26ca883130510e41ddafe246e19f24313f922c31c
5
5
  SHA512:
6
- metadata.gz: 838003fbf86077f740d7c2dad4949a4b1c551494bdb18bfd0d9a16712e5cd905e40afe08c6c401ea2393df4419101268c94b9186cc37efbdba902415b1353810
7
- data.tar.gz: b24aaf34cbe320b2f979cf47767e8719f3a3b00ac928b6f6ddf48bdf43129df536b7f23909e91f3a1afcd48d22af6b3ca9f30bb59fae3a0239cff3c19fdee536
6
+ metadata.gz: 9584f0322d00c900fbc1e93e9a2b033368067e643831f112ded358087d3da41ea3b3525ecca9ec0f50e019af08a3fa74d879722904855965553e33cf023b4ef4
7
+ data.tar.gz: ea3fdda68172d263e4e093df9a9b97bdf71851706be3ac339d0d987e0669fd0083e6f364744db6b15340adf7cb3e75ca54b4f20768efd45444e733f3f4a38276
data/README.md CHANGED
File without changes
data/Rakefile CHANGED
File without changes
@@ -1,3 +1,3 @@
1
1
  module CanaryIpa
2
- VERSION = '0.3.0'
2
+ VERSION = '0.4.0'
3
3
  end
data/lib/canary_ipa.rb CHANGED
@@ -1,5 +1,3 @@
1
- require "canary_ipa/railtie"
2
-
3
1
  module CanaryIpa
4
2
  class << self
5
3
  attr_writer :host, :port
File without changes
metadata CHANGED
@@ -1,29 +1,35 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: canary_ipa
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.4.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Canary Monitoring, Inc
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-03-22 00:00:00.000000000 Z
11
+ date: 2021-09-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - "~>"
17
+ - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: 6.0.3
19
+ version: '6.0'
20
+ - - "<"
21
+ - !ruby/object:Gem::Version
22
+ version: '6.2'
20
23
  type: :runtime
21
24
  prerelease: false
22
25
  version_requirements: !ruby/object:Gem::Requirement
23
26
  requirements:
24
- - - "~>"
27
+ - - ">="
28
+ - !ruby/object:Gem::Version
29
+ version: '6.0'
30
+ - - "<"
25
31
  - !ruby/object:Gem::Version
26
- version: 6.0.3
32
+ version: '6.2'
27
33
  description: Plugin to measure outgoing API call performance using Canary Monitoring
28
34
  email:
29
35
  - rubygems@canarymonitor.com
@@ -34,7 +40,6 @@ files:
34
40
  - README.md
35
41
  - Rakefile
36
42
  - lib/canary_ipa.rb
37
- - lib/canary_ipa/railtie.rb
38
43
  - lib/canary_ipa/version.rb
39
44
  - lib/tasks/canary_ipa_tasks.rake
40
45
  homepage: https://canarymonitor.com
@@ -1,4 +0,0 @@
1
- module CanaryIpa
2
- class Railtie < ::Rails::Railtie
3
- end
4
- end