breakout-detection 0.2.0 → 0.3.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: 7b665aa0eaa17e43b38e8a4375a1f09c5885d19f6f461cae910ff4b8a7468bcc
4
- data.tar.gz: 68c844bcfd8085d10e2ff2e081364a57c17c54c107f22cff2f9b78049cdb19a1
3
+ metadata.gz: c0cba782e9a04a46e901e1ed9b109296be0195c0c91738cd7caf92cf40123eab
4
+ data.tar.gz: e5a48e32dcd93fcdec89317aa36872d9656cb39bf3dd12e37a6b7321c774138e
5
5
  SHA512:
6
- metadata.gz: 4b729d9d68272f9b9453af53a183fff49717bc5669ed3fbf2e0e57f41b20513fe2412a4fa8822591b764cb7b801c8f152e0d97aec231bb5730ec644f30fa7e8a
7
- data.tar.gz: a847b56c452c8ac3874f3bdc0239d4f5755a33e6bf2c06a3162ac27eea8c435175bd72608b22fe617ea40a4242224869c005382cb2e51b906a86b1601d4240e0
6
+ metadata.gz: 8546d608d848aa0be380bf39a33605d48d2957385581870b828120a99c7de91e8229e7fc6376c8fe093744f962df29195cd931bc85d9add76350fd0494af945a
7
+ data.tar.gz: 78c613f4c618e6c20a67d2486358f4854affc1c1f6ca5b99c846e4b869d4c8ffc5033f8b25d18474982799cb11df030696f67b600142743e3f9305bcf1797057
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ ## 0.3.0 (2025-04-03)
2
+
3
+ - Dropped support for Ruby < 3.2
4
+
1
5
  ## 0.2.0 (2023-05-11)
2
6
 
3
7
  - Dropped support for Ruby < 3
data/README.md CHANGED
@@ -4,7 +4,7 @@
4
4
 
5
5
  Learn [how it works](https://blog.twitter.com/engineering/en_us/a/2014/breakout-detection-in-the-wild)
6
6
 
7
- [![Build Status](https://github.com/ankane/breakout-ruby/workflows/build/badge.svg?branch=master)](https://github.com/ankane/breakout-ruby/actions)
7
+ [![Build Status](https://github.com/ankane/breakout-ruby/actions/workflows/build.yml/badge.svg)](https://github.com/ankane/breakout-ruby/actions)
8
8
 
9
9
  ## Installation
10
10
 
@@ -20,9 +20,9 @@ Detect breakouts in a time series
20
20
 
21
21
  ```ruby
22
22
  series = {
23
- Date.parse("2020-01-01") => 100,
24
- Date.parse("2020-01-02") => 150,
25
- Date.parse("2020-01-03") => 136,
23
+ Date.parse("2025-01-01") => 100,
24
+ Date.parse("2025-01-02") => 150,
25
+ Date.parse("2025-01-03") => 136,
26
26
  # ...
27
27
  }
28
28
 
@@ -1,3 +1,3 @@
1
1
  module Breakout
2
- VERSION = "0.2.0"
2
+ VERSION = "0.3.0"
3
3
  end
@@ -1 +1 @@
1
- require "breakout"
1
+ require_relative "breakout"
data/lib/breakout.rb CHANGED
@@ -2,7 +2,7 @@
2
2
  require "breakout/ext"
3
3
 
4
4
  # modules
5
- require "breakout/version"
5
+ require_relative "breakout/version"
6
6
 
7
7
  module Breakout
8
8
  class << self
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: breakout-detection
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrew Kane
8
- autorequire:
9
8
  bindir: bin
10
9
  cert_chain: []
11
- date: 2023-05-12 00:00:00.000000000 Z
10
+ date: 2025-04-03 00:00:00.000000000 Z
12
11
  dependencies:
13
12
  - !ruby/object:Gem::Dependency
14
13
  name: rice
@@ -16,15 +15,14 @@ dependencies:
16
15
  requirements:
17
16
  - - ">="
18
17
  - !ruby/object:Gem::Version
19
- version: 4.0.2
18
+ version: 4.3.3
20
19
  type: :runtime
21
20
  prerelease: false
22
21
  version_requirements: !ruby/object:Gem::Requirement
23
22
  requirements:
24
23
  - - ">="
25
24
  - !ruby/object:Gem::Version
26
- version: 4.0.2
27
- description:
25
+ version: 4.3.3
28
26
  email: andrew@ankane.org
29
27
  executables: []
30
28
  extensions:
@@ -49,7 +47,6 @@ homepage: https://github.com/ankane/breakout-ruby
49
47
  licenses:
50
48
  - GPL-2.0-or-later
51
49
  metadata: {}
52
- post_install_message:
53
50
  rdoc_options: []
54
51
  require_paths:
55
52
  - lib
@@ -57,15 +54,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
57
54
  requirements:
58
55
  - - ">="
59
56
  - !ruby/object:Gem::Version
60
- version: '3'
57
+ version: '3.2'
61
58
  required_rubygems_version: !ruby/object:Gem::Requirement
62
59
  requirements:
63
60
  - - ">="
64
61
  - !ruby/object:Gem::Version
65
62
  version: '0'
66
63
  requirements: []
67
- rubygems_version: 3.4.10
68
- signing_key:
64
+ rubygems_version: 3.6.2
69
65
  specification_version: 4
70
66
  summary: Breakout detection for Ruby
71
67
  test_files: []