attractor 1.0.0 → 1.0.1
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/.github/workflows/ruby.yml +25 -0
- data/CHANGELOG.md +4 -0
- data/lib/attractor/reporters/sinatra_reporter.rb +0 -1
- data/lib/attractor/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3f38396b22816a7fb22cf0c142cfbc88f719627fe817eb800a9ad0112198bbe4
|
|
4
|
+
data.tar.gz: e3195fbb97ca495deaea5fc3de7a2e4bf9e54429e66a657e38c59b6c409ca217
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 68267925faaa4210932f3c5bc5eb50199630ea693b616294bbcd30afb6df47b968bf0d6b7bcc5968279f96b95eed27f35d5d6bf218b67baeb72109f2572976f4
|
|
7
|
+
data.tar.gz: 352aed4e99d5b864274915b842493d3b984f1f59836b3f076f248c33809b90c5609b6b449a92f00117cff26393175ed1e8f40eca7e7458633a70f5d1e04fdc11
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
name: Ruby
|
|
2
|
+
|
|
3
|
+
on: [push]
|
|
4
|
+
|
|
5
|
+
jobs:
|
|
6
|
+
build:
|
|
7
|
+
|
|
8
|
+
runs-on: ubuntu-latest
|
|
9
|
+
|
|
10
|
+
strategy:
|
|
11
|
+
matrix:
|
|
12
|
+
ruby-version: [2.4.x, 2.5.x, 2.6.x]
|
|
13
|
+
|
|
14
|
+
steps:
|
|
15
|
+
- uses: actions/checkout@v1
|
|
16
|
+
- name: Set up Ruby ${{ matrix.ruby-version }}
|
|
17
|
+
uses: actions/setup-ruby@v1
|
|
18
|
+
with:
|
|
19
|
+
ruby-version: ${{ matrix.ruby-version }}
|
|
20
|
+
- name: Build and test with Rake
|
|
21
|
+
run: |
|
|
22
|
+
gem install bundler
|
|
23
|
+
bundle install --jobs 4 --retry 3
|
|
24
|
+
bundle exec rspec spec
|
|
25
|
+
bundle exec cucumber features
|
data/CHANGELOG.md
CHANGED
data/lib/attractor/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: attractor
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Julian Rubisch
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2019-
|
|
11
|
+
date: 2019-12-14 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: churn
|
|
@@ -318,6 +318,7 @@ extra_rdoc_files: []
|
|
|
318
318
|
files:
|
|
319
319
|
- ".babelrc"
|
|
320
320
|
- ".eslintrc.json"
|
|
321
|
+
- ".github/workflows/ruby.yml"
|
|
321
322
|
- ".gitignore"
|
|
322
323
|
- ".rspec"
|
|
323
324
|
- ".rubocop.yml"
|