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 +4 -4
- data/CHANGELOG.md +8 -0
- data/README.md +12 -12
- data/lib/breakout/version.rb +1 -1
- data/lib/breakout-detection.rb +1 -1
- data/lib/breakout.rb +1 -1
- metadata +7 -11
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c0cba782e9a04a46e901e1ed9b109296be0195c0c91738cd7caf92cf40123eab
|
4
|
+
data.tar.gz: e5a48e32dcd93fcdec89317aa36872d9656cb39bf3dd12e37a6b7321c774138e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8546d608d848aa0be380bf39a33605d48d2957385581870b828120a99c7de91e8229e7fc6376c8fe093744f962df29195cd931bc85d9add76350fd0494af945a
|
7
|
+
data.tar.gz: 78c613f4c618e6c20a67d2486358f4854affc1c1f6ca5b99c846e4b869d4c8ffc5033f8b25d18474982799cb11df030696f67b600142743e3f9305bcf1797057
|
data/CHANGELOG.md
CHANGED
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
|
-
[](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
|
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("
|
24
|
-
Date.parse("
|
25
|
-
Date.parse("
|
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
|
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
|
data/lib/breakout/version.rb
CHANGED
data/lib/breakout-detection.rb
CHANGED
@@ -1 +1 @@
|
|
1
|
-
|
1
|
+
require_relative "breakout"
|
data/lib/breakout.rb
CHANGED
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.
|
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:
|
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.
|
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.
|
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
|
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
|
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: []
|