trifle-stats 0.4.0 → 0.4.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6a3916f479d04bbffdab357ec6562c37134f114bb74eb8274b8c8285256ace45
4
- data.tar.gz: 30df5c2bf81b14fef07ad6fd5a31e130bec6183e589fbc6dd9b9e1a23e2f94bf
3
+ metadata.gz: 532f2b7afd34d3f6a1d634578157b4a12396d5e6b2d5ab679a792dc7245928be
4
+ data.tar.gz: 482944111799367469b5c831f2703a0f80f50b252301f03a60401d08752ae0ae
5
5
  SHA512:
6
- metadata.gz: f1427bd400037791d86dd1890bd8dde7f91e5482dd65119f4223cc0f235cee7563af9675b4bbc8f15243fb4313dfea9a5d70d4e986f3c5ff91a58900430d60c4
7
- data.tar.gz: 637dcd3e31689fa0b62ea583d8343fbc93943afbb285daaa8203f0e25eb87b43f3f4ed78217923be01316c2eeefeb6650988588ac14b6dd40d5caac47980250b
6
+ metadata.gz: 16805ed32667f648efd688bb8be1ea03fa6f04abe837bd0f483bb53fb9d730563932fd4036bfa36e93d1a35a01a802557303beec0835dbe3d17de486d75b396f
7
+ data.tar.gz: 13044b35325c973667c73827fce1b3146a51846ac186f9b8e6e8a5631653afe2f07e7ae461068729d19c8be81c311c44a5a1e10119534c093c723c438956309e
@@ -9,29 +9,28 @@ name: Ruby
9
9
 
10
10
  on:
11
11
  push:
12
- branches: [ main ]
12
+ branches: [main]
13
13
  pull_request:
14
- branches: [ main ]
14
+ branches: [main]
15
15
 
16
16
  jobs:
17
17
  test:
18
-
19
18
  runs-on: ubuntu-latest
20
19
  strategy:
21
20
  matrix:
22
- ruby-version: ['2.6', '2.7', '3.0']
21
+ ruby-version: ["3.0"]
23
22
 
24
23
  steps:
25
- - uses: actions/checkout@v2
26
- - name: Set up Ruby
27
- # To automatically get bug fixes and new Ruby versions for ruby/setup-ruby,
28
- # change this to (see https://github.com/ruby/setup-ruby#versioning):
29
- # uses: ruby/setup-ruby@v1
30
- uses: ruby/setup-ruby@473e4d8fe5dd94ee328fdfca9f8c9c7afc9dae5e
31
- with:
32
- ruby-version: ${{ matrix.ruby-version }}
33
- bundler-cache: true # runs 'bundle install' and caches installed gems automatically
34
- - name: Rspec
35
- run: bundle exec rspec
36
- - name: Rubocop
37
- run: bundle exec rubocop
24
+ - uses: actions/checkout@v2
25
+ - name: Set up Ruby
26
+ # To automatically get bug fixes and new Ruby versions for ruby/setup-ruby,
27
+ # change this to (see https://github.com/ruby/setup-ruby#versioning):
28
+ # uses: ruby/setup-ruby@v1
29
+ uses: ruby/setup-ruby@473e4d8fe5dd94ee328fdfca9f8c9c7afc9dae5e
30
+ with:
31
+ ruby-version: ${{ matrix.ruby-version }}
32
+ bundler-cache: true # runs 'bundle install' and caches installed gems automatically
33
+ - name: Rspec
34
+ run: bundle exec rspec
35
+ - name: Rubocop
36
+ run: bundle exec rubocop
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- trifle-stats (0.4.0)
4
+ trifle-stats (0.4.1)
5
5
  mongo (>= 2.14.0)
6
6
  pg (>= 1.2)
7
7
  redis (>= 4.2)
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Trifle
4
4
  module Stats
5
- VERSION = '0.4.0'
5
+ VERSION = '0.4.1'
6
6
  end
7
7
  end
data/trifle-stats.gemspec CHANGED
@@ -12,7 +12,8 @@ Gem::Specification.new do |spec|
12
12
  'that helps you track custom metrics. Automatically '\
13
13
  'increments counters for each enabled range. '\
14
14
  'It supports timezones and different week beginning.'
15
- spec.homepage = "https://trifle.io"
15
+ spec.homepage = 'https://trifle.io'
16
+ spec.licenses = ['MIT']
16
17
  spec.required_ruby_version = Gem::Requirement.new('>= 2.6')
17
18
 
18
19
  spec.metadata['homepage_uri'] = spec.homepage
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: trifle-stats
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.0
4
+ version: 0.4.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jozef Vaclavik
@@ -190,7 +190,8 @@ files:
190
190
  - lib/trifle/stats/version.rb
191
191
  - trifle-stats.gemspec
192
192
  homepage: https://trifle.io
193
- licenses: []
193
+ licenses:
194
+ - MIT
194
195
  metadata:
195
196
  homepage_uri: https://trifle.io
196
197
  source_code_uri: https://github.com/trifle-io/trifle-stats