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 +4 -4
- data/CHANGELOG.md +4 -0
- data/README.md +9 -9
- data/lib/breakout/version.rb +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7b665aa0eaa17e43b38e8a4375a1f09c5885d19f6f461cae910ff4b8a7468bcc
|
4
|
+
data.tar.gz: 68c844bcfd8085d10e2ff2e081364a57c17c54c107f22cff2f9b78049cdb19a1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4b729d9d68272f9b9453af53a183fff49717bc5669ed3fbf2e0e57f41b20513fe2412a4fa8822591b764cb7b801c8f152e0d97aec231bb5730ec644f30fa7e8a
|
7
|
+
data.tar.gz: a847b56c452c8ac3874f3bdc0239d4f5755a33e6bf2c06a3162ac27eea8c435175bd72608b22fe617ea40a4242224869c005382cb2e51b906a86b1601d4240e0
|
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
|
-
[![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
|
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
|
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
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.
|
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:
|
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: '
|
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.
|
67
|
+
rubygems_version: 3.4.10
|
68
68
|
signing_key:
|
69
69
|
specification_version: 4
|
70
70
|
summary: Breakout detection for Ruby
|