trifle-stats 0.4.0 → 0.4.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 +16 -17
- data/Gemfile.lock +1 -1
- data/lib/trifle/stats/version.rb +1 -1
- data/trifle-stats.gemspec +2 -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: 532f2b7afd34d3f6a1d634578157b4a12396d5e6b2d5ab679a792dc7245928be
|
|
4
|
+
data.tar.gz: 482944111799367469b5c831f2703a0f80f50b252301f03a60401d08752ae0ae
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 16805ed32667f648efd688bb8be1ea03fa6f04abe837bd0f483bb53fb9d730563932fd4036bfa36e93d1a35a01a802557303beec0835dbe3d17de486d75b396f
|
|
7
|
+
data.tar.gz: 13044b35325c973667c73827fce1b3146a51846ac186f9b8e6e8a5631653afe2f07e7ae461068729d19c8be81c311c44a5a1e10119534c093c723c438956309e
|
data/.github/workflows/ruby.yml
CHANGED
|
@@ -9,29 +9,28 @@ name: Ruby
|
|
|
9
9
|
|
|
10
10
|
on:
|
|
11
11
|
push:
|
|
12
|
-
branches: [
|
|
12
|
+
branches: [main]
|
|
13
13
|
pull_request:
|
|
14
|
-
branches: [
|
|
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: [
|
|
21
|
+
ruby-version: ["3.0"]
|
|
23
22
|
|
|
24
23
|
steps:
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
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
data/lib/trifle/stats/version.rb
CHANGED
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 =
|
|
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.
|
|
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
|