active_metrics 0.0.1 → 0.0.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Dockerfile +1 -13
- data/Gemfile.lock +3 -3
- data/README.md +1 -0
- data/lib/active_metrics.rb +1 -1
- data/lib/active_metrics/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ed871e0e83c8596105035040c042429bd82c5bda
|
4
|
+
data.tar.gz: 70995861fe6609f79956ac11e963e4d06d817458
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 27826772e0c375c204c5fb1953d3a957e4da1d54906d8a052b731c72f3b0d0f97f0830e23eed56c098c9e82361b981a7ec1619b41afe7d7598820096602170bf
|
7
|
+
data.tar.gz: abcacab121e00c301faa79c4fd8afcdff125b8d587fd2f3ec88b8bcc4b62f0ba4f226922084f6d0e4b3bbcf6a3e257ae7f5474e5378f3833d4d1fba854930de6
|
data/Dockerfile
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
FROM ruby:2.
|
1
|
+
FROM ruby:2.5.0
|
2
2
|
|
3
3
|
# Bundler options
|
4
4
|
#
|
@@ -16,18 +16,6 @@ ARG BUNDLER_OPTS="--jobs=3 \
|
|
16
16
|
# otherwise things might not work as expected.
|
17
17
|
ENV APP_DIR="/opt/active_metrics"
|
18
18
|
|
19
|
-
# Install required packages
|
20
|
-
RUN apt-get update -y \
|
21
|
-
&& apt-get install -y --no-install-recommends \
|
22
|
-
git-core \
|
23
|
-
build-essential \
|
24
|
-
libffi-dev \
|
25
|
-
libxml2-dev \
|
26
|
-
libssl-dev \
|
27
|
-
libcurl4-gnutls-dev \
|
28
|
-
apt-utils \
|
29
|
-
&& rm -rf /var/lib/apt/lists/*
|
30
|
-
|
31
19
|
# Create a non-root user
|
32
20
|
RUN groupadd -r travis \
|
33
21
|
&& useradd -m -r -g travis travis
|
data/Gemfile.lock
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
active_metrics (0.0.
|
4
|
+
active_metrics (0.0.2)
|
5
5
|
activesupport (>= 3.0.0)
|
6
6
|
|
7
7
|
GEM
|
8
8
|
remote: https://rubygems.org/
|
9
9
|
specs:
|
10
|
-
activesupport (5.1.
|
10
|
+
activesupport (5.1.5)
|
11
11
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
12
12
|
i18n (~> 0.7)
|
13
13
|
minitest (~> 5.1)
|
@@ -15,7 +15,7 @@ GEM
|
|
15
15
|
coderay (1.1.2)
|
16
16
|
concurrent-ruby (1.0.5)
|
17
17
|
docile (1.1.5)
|
18
|
-
i18n (0.9.
|
18
|
+
i18n (0.9.5)
|
19
19
|
concurrent-ruby (~> 1.0)
|
20
20
|
json (2.1.0)
|
21
21
|
method_source (0.9.0)
|
data/README.md
CHANGED
@@ -1,5 +1,6 @@
|
|
1
1
|
# ActiveMetrics
|
2
2
|
|
3
|
+
[![Gem Version](https://badge.fury.io/rb/active_metrics.svg)](https://badge.fury.io/rb/active_metrics)
|
3
4
|
[![Build Status](https://travis-ci.org/andreimaxim/active_metrics.svg?branch=master)](https://travis-ci.org/andreimaxim/active_metrics)
|
4
5
|
[![Maintainability](https://api.codeclimate.com/v1/badges/50e30f3b65985e299e9e/maintainability)](https://codeclimate.com/github/andreimaxim/active_metrics/maintainability)
|
5
6
|
[![Test Coverage](https://api.codeclimate.com/v1/badges/50e30f3b65985e299e9e/test_coverage)](https://codeclimate.com/github/andreimaxim/active_metrics/test_coverage)
|
data/lib/active_metrics.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: active_metrics
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Andrei Maxim
|
@@ -9,7 +9,7 @@ autorequire:
|
|
9
9
|
bindir: exe
|
10
10
|
cert_chain:
|
11
11
|
- certs/andreimaxim.pem
|
12
|
-
date: 2018-02-
|
12
|
+
date: 2018-02-16 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: bundler
|