active_metrics 0.0.1 → 0.0.2

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
  SHA1:
3
- metadata.gz: 6ed1297fe6d975516ee3607c0adb3d4bb2f26fe8
4
- data.tar.gz: 86f76bc841aa9eddf53f2e6c13f393dc218987f3
3
+ metadata.gz: ed871e0e83c8596105035040c042429bd82c5bda
4
+ data.tar.gz: 70995861fe6609f79956ac11e963e4d06d817458
5
5
  SHA512:
6
- metadata.gz: 91489920993ab225dda277c72c6b0d43a97dade84122c4e15085cef3c53c506bdc6029b44c8a7869bab34beaa6328f41e7cfc7b09172782a5f745ebe9966c094
7
- data.tar.gz: 63dbabc8ddba27fa7be55eace95a920fa8590c9e7882fcb3831484449d25b778953b8825f5abecf33e31d2aa287ddca5a06e0c5cc7cc9dd8694e7cdf5683c754
6
+ metadata.gz: 27826772e0c375c204c5fb1953d3a957e4da1d54906d8a052b731c72f3b0d0f97f0830e23eed56c098c9e82361b981a7ec1619b41afe7d7598820096602170bf
7
+ data.tar.gz: abcacab121e00c301faa79c4fd8afcdff125b8d587fd2f3ec88b8bcc4b62f0ba4f226922084f6d0e4b3bbcf6a3e257ae7f5474e5378f3833d4d1fba854930de6
data/Dockerfile CHANGED
@@ -1,4 +1,4 @@
1
- FROM ruby:2.4.2-slim
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.1)
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.4)
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.3)
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)
@@ -1,4 +1,4 @@
1
- require 'active_support'
1
+ require 'active_support/notifications'
2
2
 
3
3
  require 'active_metrics/version'
4
4
 
@@ -1,3 +1,3 @@
1
1
  module ActiveMetrics
2
- VERSION = '0.0.1'.freeze
2
+ VERSION = '0.0.2'.freeze
3
3
  end
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.1
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-08 00:00:00.000000000 Z
12
+ date: 2018-02-16 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: bundler