midas-edge 0.1.0 → 0.1.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: bb70cc5f659dce8abb80867585a61d06fc7bcd0f748beaa46b3a70d50753bae6
4
- data.tar.gz: 076cfd4b87e2bf36536c03cc0adf0233761243ca305d2c3e78ef1da67aed0d40
3
+ metadata.gz: 51024d37d243a503b528b846e60e46b36b52e4b77a70b14d71feb262a00372d7
4
+ data.tar.gz: e2fce29bba281e179123bb558a8deeba5808f9e27dbb2d24cf2ee4423c3632c9
5
5
  SHA512:
6
- metadata.gz: ac16e0d2dc986dc75982cacef948189f032aa9cc660e4f23d0ec2bd9adad1fa1e2aba201df81c9e70efec8e8d6e55715abc5b7cfd55518b46eaf0abdaaa05c32
7
- data.tar.gz: d205b4f2ad95d95eb0333967297b686efd6c55cd32e3f5b1f7a89c1dc5f074f555cdda6b55c7734899f317ae32b51444611613b4229b101115cee0d2ebbdcc49
6
+ metadata.gz: 39ee7a3b1228fb63838a121c180b9b9edd2f9a207da18810dbdb24a4335879872c6d265c2706154fa40dcb7414b3cb49b7b6a98efeb34ed0dde0379206a4d131
7
+ data.tar.gz: 68c43621d46cc1a4fc6ccdad3f4d24a95428a68da59837f55377556d9a60f20f878a8db83a7e74c6ec35ac869e49aa19810c791db8a4b09c2ed18039dc2d00bd
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ ## 0.1.1 (2020-02-19)
2
+
3
+ - Fixed installation on Linux
4
+
1
5
  ## 0.1.0 (2020-02-17)
2
6
 
3
7
  - First release
data/README.md CHANGED
@@ -2,9 +2,11 @@
2
2
 
3
3
  [MIDAS](https://github.com/bhatiasiddharth/MIDAS) - edge stream anomaly detection - for Ruby
4
4
 
5
+ [![Build Status](https://travis-ci.org/ankane/midas.svg?branch=master)](https://travis-ci.org/ankane/midas)
6
+
5
7
  ## Installation
6
8
 
7
- Add this line to your application’s Gemfile:
9
+ Add these lines to your application’s Gemfile:
8
10
 
9
11
  ```ruby
10
12
  gem 'midas-edge'
@@ -89,7 +91,7 @@ Everyone is encouraged to help improve this project. Here are a few ways you can
89
91
  To get started with development:
90
92
 
91
93
  ```sh
92
- git clone https://github.com/ankane/midas.git
94
+ git clone --recursive https://github.com/ankane/midas.git
93
95
  cd midas
94
96
  bundle install
95
97
  bundle exec rake compile
data/ext/midas/extconf.rb CHANGED
@@ -1,11 +1,9 @@
1
1
  require "mkmf-rice"
2
2
 
3
- abort "Missing stdc++" unless have_library("stdc++")
4
-
5
3
  $CXXFLAGS << " -std=c++17"
6
4
 
7
5
  ext = File.expand_path(".", __dir__)
8
- midas = File.expand_path("../../vendor/midas", __dir__)
6
+ midas = File.expand_path("../../vendor/MIDAS", __dir__)
9
7
 
10
8
  $srcs = Dir["{#{ext},#{midas}}/*.{cc,cpp}"]
11
9
  $INCFLAGS << " -I#{midas}"
data/lib/midas/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Midas
2
- VERSION = "0.1.0"
2
+ VERSION = "0.1.1"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: midas-edge
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrew Kane
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-02-18 00:00:00.000000000 Z
11
+ date: 2020-02-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rice
@@ -109,7 +109,6 @@ files:
109
109
  - ext/midas/extconf.rb
110
110
  - lib/midas-edge.rb
111
111
  - lib/midas/detector.rb
112
- - lib/midas/ext.bundle
113
112
  - lib/midas/version.rb
114
113
  - vendor/MIDAS/LICENSE
115
114
  - vendor/MIDAS/README.md
data/lib/midas/ext.bundle DELETED
Binary file