breakout-detection 0.1.1 → 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: 6678a5f3c82af3a88809391a6c692f3d0af7d6d6acb335936a6a0712ed0a2176
4
- data.tar.gz: d44d0f92be5412e5f49e095f9b3a1d0c564c30ac2e42911e276bc1092c10edd3
3
+ metadata.gz: c0cba782e9a04a46e901e1ed9b109296be0195c0c91738cd7caf92cf40123eab
4
+ data.tar.gz: e5a48e32dcd93fcdec89317aa36872d9656cb39bf3dd12e37a6b7321c774138e
5
5
  SHA512:
6
- metadata.gz: 343f0d3245d495d022b2953009f724d0bf83f2448280b4e9ad0b4ca678241ac57044b9d6b3efbb2d473f2fc61d0083e601fbae669b243196aba080e440296bce
7
- data.tar.gz: 129bc113eae6cda7e081ad8cc15f7b01f772bd7504187b96ad0e2a3af583e256d7127049e1528c5de4c9eeb87dad2e9db00101c35e14def788243f073226c36a
6
+ metadata.gz: 8546d608d848aa0be380bf39a33605d48d2957385581870b828120a99c7de91e8229e7fc6376c8fe093744f962df29195cd931bc85d9add76350fd0494af945a
7
+ data.tar.gz: 78c613f4c618e6c20a67d2486358f4854affc1c1f6ca5b99c846e4b869d4c8ffc5033f8b25d18474982799cb11df030696f67b600142743e3f9305bcf1797057
data/CHANGELOG.md CHANGED
@@ -1,3 +1,11 @@
1
+ ## 0.3.0 (2025-04-03)
2
+
3
+ - Dropped support for Ruby < 3.2
4
+
5
+ ## 0.2.0 (2023-05-11)
6
+
7
+ - Dropped support for Ruby < 3
8
+
1
9
  ## 0.1.1 (2021-10-20)
2
10
 
3
11
  - Added `plot` method
data/README.md CHANGED
@@ -1,17 +1,17 @@
1
- # Breakout
1
+ # Breakout Ruby
2
2
 
3
3
  :fire: [BreakoutDetection](https://github.com/twitter/BreakoutDetection) for Ruby
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/workflows/build/badge.svg?branch=master)](https://github.com/ankane/breakout/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
 
11
11
  Add this line to your application’s Gemfile:
12
12
 
13
13
  ```ruby
14
- gem 'breakout-detection'
14
+ gem "breakout-detection"
15
15
  ```
16
16
 
17
17
  ## Getting Started
@@ -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
 
@@ -65,7 +65,7 @@ Breakout.detect(
65
65
  Add [Vega](https://github.com/ankane/vega) to your application’s Gemfile:
66
66
 
67
67
  ```ruby
68
- gem 'vega'
68
+ gem "vega"
69
69
  ```
70
70
 
71
71
  And use:
@@ -84,22 +84,22 @@ This library uses the C++ code from the [BreakoutDetection](https://github.com/t
84
84
 
85
85
  ## History
86
86
 
87
- View the [changelog](https://github.com/ankane/breakout/blob/master/CHANGELOG.md)
87
+ View the [changelog](https://github.com/ankane/breakout-ruby/blob/master/CHANGELOG.md)
88
88
 
89
89
  ## Contributing
90
90
 
91
91
  Everyone is encouraged to help improve this project. Here are a few ways you can help:
92
92
 
93
- - [Report bugs](https://github.com/ankane/breakout/issues)
94
- - Fix bugs and [submit pull requests](https://github.com/ankane/breakout/pulls)
93
+ - [Report bugs](https://github.com/ankane/breakout-ruby/issues)
94
+ - Fix bugs and [submit pull requests](https://github.com/ankane/breakout-ruby/pulls)
95
95
  - Write, clarify, or fix documentation
96
96
  - Suggest or add new features
97
97
 
98
98
  To get started with development:
99
99
 
100
100
  ```sh
101
- git clone https://github.com/ankane/breakout.git
102
- cd breakout
101
+ git clone https://github.com/ankane/breakout-ruby.git
102
+ cd breakout-ruby
103
103
  bundle install
104
104
  bundle exec rake compile
105
105
  bundle exec rake test
@@ -1,3 +1,3 @@
1
1
  module Breakout
2
- VERSION = "0.1.1"
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.1.1
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: 2021-10-20 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:
@@ -45,11 +43,10 @@ files:
45
43
  - lib/breakout-detection.rb
46
44
  - lib/breakout.rb
47
45
  - lib/breakout/version.rb
48
- homepage: https://github.com/ankane/breakout
46
+ 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: '2.6'
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.2.22
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: []