breakout-detection 0.1.1 → 0.2.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6678a5f3c82af3a88809391a6c692f3d0af7d6d6acb335936a6a0712ed0a2176
4
- data.tar.gz: d44d0f92be5412e5f49e095f9b3a1d0c564c30ac2e42911e276bc1092c10edd3
3
+ metadata.gz: 7b665aa0eaa17e43b38e8a4375a1f09c5885d19f6f461cae910ff4b8a7468bcc
4
+ data.tar.gz: 68c844bcfd8085d10e2ff2e081364a57c17c54c107f22cff2f9b78049cdb19a1
5
5
  SHA512:
6
- metadata.gz: 343f0d3245d495d022b2953009f724d0bf83f2448280b4e9ad0b4ca678241ac57044b9d6b3efbb2d473f2fc61d0083e601fbae669b243196aba080e440296bce
7
- data.tar.gz: 129bc113eae6cda7e081ad8cc15f7b01f772bd7504187b96ad0e2a3af583e256d7127049e1528c5de4c9eeb87dad2e9db00101c35e14def788243f073226c36a
6
+ metadata.gz: 4b729d9d68272f9b9453af53a183fff49717bc5669ed3fbf2e0e57f41b20513fe2412a4fa8822591b764cb7b801c8f152e0d97aec231bb5730ec644f30fa7e8a
7
+ data.tar.gz: a847b56c452c8ac3874f3bdc0239d4f5755a33e6bf2c06a3162ac27eea8c435175bd72608b22fe617ea40a4242224869c005382cb2e51b906a86b1601d4240e0
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ ## 0.2.0 (2023-05-11)
2
+
3
+ - Dropped support for Ruby < 3
4
+
1
5
  ## 0.1.1 (2021-10-20)
2
6
 
3
7
  - 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/workflows/build/badge.svg?branch=master)](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
@@ -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.2.0"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
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.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrew Kane
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-10-20 00:00:00.000000000 Z
11
+ date: 2023-05-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rice
@@ -45,7 +45,7 @@ files:
45
45
  - lib/breakout-detection.rb
46
46
  - lib/breakout.rb
47
47
  - lib/breakout/version.rb
48
- homepage: https://github.com/ankane/breakout
48
+ homepage: https://github.com/ankane/breakout-ruby
49
49
  licenses:
50
50
  - GPL-2.0-or-later
51
51
  metadata: {}
@@ -57,14 +57,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
57
57
  requirements:
58
58
  - - ">="
59
59
  - !ruby/object:Gem::Version
60
- version: '2.6'
60
+ version: '3'
61
61
  required_rubygems_version: !ruby/object:Gem::Requirement
62
62
  requirements:
63
63
  - - ">="
64
64
  - !ruby/object:Gem::Version
65
65
  version: '0'
66
66
  requirements: []
67
- rubygems_version: 3.2.22
67
+ rubygems_version: 3.4.10
68
68
  signing_key:
69
69
  specification_version: 4
70
70
  summary: Breakout detection for Ruby