countless 1.2.0 → 1.3.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/release.yml +11 -4
- data/.github/workflows/test.yml +5 -27
- data/.gitignore +1 -0
- data/.rubocop.yml +1 -1
- data/Appraisals +4 -10
- data/CHANGELOG.md +9 -0
- data/Dockerfile +3 -3
- data/Gemfile +14 -0
- data/Makefile +13 -1
- data/README.md +1 -1
- data/config/docker/.bashrc +3 -1
- data/countless.gemspec +1 -14
- data/gemfiles/rails_5.2.gemfile +12 -0
- data/gemfiles/rails_6.1.gemfile +12 -0
- data/gemfiles/rails_7.1.gemfile +21 -0
- data/lib/countless/annotations.rb +5 -5
- data/lib/countless/rake_tasks.rake +4 -4
- data/lib/countless/statistics.rb +3 -3
- data/lib/countless/version.rb +1 -1
- metadata +4 -174
- data/.github/workflows/documentation.yml +0 -39
- data/gemfiles/rails_6.0.gemfile +0 -9
- data/gemfiles/rails_7.0.gemfile +0 -9
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6cfa26e2d1174178f5226207a70d9b1bb34f35fffd1aebc1c199f15cd151d0df
|
|
4
|
+
data.tar.gz: 9cf6b667b28acc545588bf60ab716400b254d8441e56afa5a9cff22420b773b0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ffceeb9f2c74b06b2ed1f13c73154f67cfe5bc85b1cb562cc8aea08f1ee87ebf93b2bc3b3a7faf6914d06faa7d931cd46eb063be98ff815ec8d39cf83c5ef3a5
|
|
7
|
+
data.tar.gz: 8d33ac515d211a59dceed90ef25b45ca58538a715f0bd27c774e71396278657d6cd91d81837dccf84ae45d308f29ec647b5146618833bf49aa1c4949f1da8647
|
|
@@ -18,19 +18,20 @@ jobs:
|
|
|
18
18
|
runs-on: ubuntu-22.04
|
|
19
19
|
timeout-minutes: 5
|
|
20
20
|
steps:
|
|
21
|
-
- uses: actions/checkout@
|
|
21
|
+
- uses: actions/checkout@v4
|
|
22
22
|
|
|
23
|
-
- name: Install Ruby 2.
|
|
23
|
+
- name: Install Ruby 2.7
|
|
24
24
|
uses: ruby/setup-ruby@v1
|
|
25
25
|
with:
|
|
26
|
-
ruby-version: 2.
|
|
26
|
+
ruby-version: 2.7
|
|
27
27
|
bundler-cache: true
|
|
28
|
-
rubygems: '3.
|
|
28
|
+
rubygems: '3.4.22'
|
|
29
29
|
|
|
30
30
|
- name: Prepare the virtual environment
|
|
31
31
|
uses: hausgold/actions/ci@master
|
|
32
32
|
with:
|
|
33
33
|
clone_token: '${{ secrets.CLONE_TOKEN }}'
|
|
34
|
+
settings_secret_key: '${{ secrets.SETTINGS_SECRET_KEY }}'
|
|
34
35
|
settings: '${{ github.repository }}'
|
|
35
36
|
target: ci/gem-test
|
|
36
37
|
|
|
@@ -45,3 +46,9 @@ jobs:
|
|
|
45
46
|
|
|
46
47
|
- name: Push the release Git commit/tag and package to the registry
|
|
47
48
|
run: make release
|
|
49
|
+
|
|
50
|
+
- name: Build and upload application documentation
|
|
51
|
+
run: api-docs && coverage --docs-only
|
|
52
|
+
env:
|
|
53
|
+
WORKFLOW_DISPATCH_TOKEN: '${{ secrets.WORKFLOW_DISPATCH_TOKEN }}'
|
|
54
|
+
GITHUB_TAG: 'v${{ github.event.inputs.VERSION }}'
|
data/.github/workflows/test.yml
CHANGED
|
@@ -18,30 +18,25 @@ jobs:
|
|
|
18
18
|
strategy:
|
|
19
19
|
fail-fast: false
|
|
20
20
|
matrix:
|
|
21
|
-
ruby: ['2.
|
|
22
|
-
rails: ['5.2', '6.
|
|
23
|
-
exclude:
|
|
24
|
-
# Rails 7.0 requires Ruby >=2.7
|
|
25
|
-
- ruby: '2.5'
|
|
26
|
-
rails: '7.0'
|
|
27
|
-
- ruby: '2.6'
|
|
28
|
-
rails: '7.0'
|
|
21
|
+
ruby: ['2.7', '3.0', '3.1']
|
|
22
|
+
rails: ['5.2', '6.1', '7.1']
|
|
29
23
|
env:
|
|
30
24
|
BUNDLE_GEMFILE: 'gemfiles/rails_${{ matrix.rails }}.gemfile'
|
|
31
25
|
steps:
|
|
32
|
-
- uses: actions/checkout@
|
|
26
|
+
- uses: actions/checkout@v4
|
|
33
27
|
|
|
34
28
|
- name: Install the correct Ruby version
|
|
35
29
|
uses: ruby/setup-ruby@v1
|
|
36
30
|
with:
|
|
37
31
|
ruby-version: ${{ matrix.ruby }}
|
|
38
32
|
bundler-cache: true
|
|
39
|
-
rubygems: '3.
|
|
33
|
+
rubygems: '3.4.22'
|
|
40
34
|
|
|
41
35
|
- name: Prepare the virtual environment
|
|
42
36
|
uses: hausgold/actions/ci@master
|
|
43
37
|
with:
|
|
44
38
|
clone_token: '${{ secrets.CLONE_TOKEN }}'
|
|
39
|
+
settings_secret_key: '${{ secrets.SETTINGS_SECRET_KEY }}'
|
|
45
40
|
settings: '${{ github.repository }}'
|
|
46
41
|
target: ci/gem-test
|
|
47
42
|
|
|
@@ -50,20 +45,3 @@ jobs:
|
|
|
50
45
|
|
|
51
46
|
- name: Upload the code coverage report
|
|
52
47
|
run: coverage
|
|
53
|
-
|
|
54
|
-
trigger-docs:
|
|
55
|
-
name: Trigger the documentation upload
|
|
56
|
-
runs-on: ubuntu-22.04
|
|
57
|
-
timeout-minutes: 2
|
|
58
|
-
needs: test
|
|
59
|
-
if: github.ref == 'refs/heads/master'
|
|
60
|
-
steps:
|
|
61
|
-
- name: Prepare the virtual environment
|
|
62
|
-
uses: hausgold/actions/ci@master
|
|
63
|
-
with:
|
|
64
|
-
clone_token: '${{ secrets.CLONE_TOKEN }}'
|
|
65
|
-
settings: '${{ github.repository }}'
|
|
66
|
-
target: ci/noop
|
|
67
|
-
|
|
68
|
-
- name: Trigger the documentation upload
|
|
69
|
-
run: workflow documentation
|
data/.gitignore
CHANGED
data/.rubocop.yml
CHANGED
data/Appraisals
CHANGED
|
@@ -6,20 +6,14 @@ appraise 'rails-5.2' do
|
|
|
6
6
|
gem 'activesupport', '~> 5.2.0'
|
|
7
7
|
end
|
|
8
8
|
|
|
9
|
-
appraise 'rails-6.0' do
|
|
10
|
-
gem 'activejob', '~> 6.0.0'
|
|
11
|
-
gem 'activerecord', '~> 6.0.0'
|
|
12
|
-
gem 'activesupport', '~> 6.0.0'
|
|
13
|
-
end
|
|
14
|
-
|
|
15
9
|
appraise 'rails-6.1' do
|
|
16
10
|
gem 'activejob', '~> 6.1.0'
|
|
17
11
|
gem 'activerecord', '~> 6.1.0'
|
|
18
12
|
gem 'activesupport', '~> 6.1.0'
|
|
19
13
|
end
|
|
20
14
|
|
|
21
|
-
appraise 'rails-7.
|
|
22
|
-
gem 'activejob', '~> 7.
|
|
23
|
-
gem 'activerecord', '~> 7.
|
|
24
|
-
gem 'activesupport', '~> 7.
|
|
15
|
+
appraise 'rails-7.1' do
|
|
16
|
+
gem 'activejob', '~> 7.1.0'
|
|
17
|
+
gem 'activerecord', '~> 7.1.0'
|
|
18
|
+
gem 'activesupport', '~> 7.1.0'
|
|
25
19
|
end
|
data/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,15 @@
|
|
|
2
2
|
|
|
3
3
|
* TODO: Replace this bullet point with an actual description of a change.
|
|
4
4
|
|
|
5
|
+
### 1.3.1
|
|
6
|
+
|
|
7
|
+
* Added API docs building to continuous integration (#4)
|
|
8
|
+
|
|
9
|
+
### 1.3.0
|
|
10
|
+
|
|
11
|
+
* Moved the development dependencies from the gemspec to the Gemfile (#2)
|
|
12
|
+
* Dropped support for Ruby <2.7 (#3)
|
|
13
|
+
|
|
5
14
|
### 1.2.0
|
|
6
15
|
|
|
7
16
|
* Added support for Gem release automation
|
data/Dockerfile
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
FROM hausgold/ruby:2.
|
|
1
|
+
FROM hausgold/ruby:2.7
|
|
2
2
|
MAINTAINER Hermann Mayer <hermann.mayer@hausgold.de>
|
|
3
3
|
|
|
4
4
|
# Update system gem
|
|
5
|
-
RUN gem update --system '3.
|
|
5
|
+
RUN gem update --system '3.4.22'
|
|
6
6
|
|
|
7
7
|
# Install system packages and the latest bundler
|
|
8
8
|
RUN apt-get update -yqqq && \
|
|
@@ -11,7 +11,7 @@ RUN apt-get update -yqqq && \
|
|
|
11
11
|
ca-certificates \
|
|
12
12
|
bash-completion inotify-tools && \
|
|
13
13
|
echo 'en_US.UTF-8 UTF-8' >> /etc/locale.gen && /usr/sbin/locale-gen && \
|
|
14
|
-
gem install bundler -v '~> 2.
|
|
14
|
+
gem install bundler -v '~> 2.4.22' --no-document --no-prerelease
|
|
15
15
|
|
|
16
16
|
# Add new web user
|
|
17
17
|
RUN mkdir /app && \
|
data/Gemfile
CHANGED
|
@@ -6,3 +6,17 @@ git_source(:github) { |repo_name| "https://github.com/#{repo_name}" }
|
|
|
6
6
|
|
|
7
7
|
# Specify your gem's dependencies in countless.gemspec
|
|
8
8
|
gemspec
|
|
9
|
+
|
|
10
|
+
# Development dependencies
|
|
11
|
+
gem 'appraisal', '~> 2.4'
|
|
12
|
+
gem 'benchmark-ips', '~> 2.10'
|
|
13
|
+
gem 'bundler', '~> 2.3'
|
|
14
|
+
gem 'guard-rspec', '~> 4.7'
|
|
15
|
+
gem 'irb', '~> 1.2'
|
|
16
|
+
gem 'rspec', '~> 3.12'
|
|
17
|
+
gem 'rubocop', '~> 1.28'
|
|
18
|
+
gem 'rubocop-rails', '~> 2.14'
|
|
19
|
+
gem 'rubocop-rspec', '~> 2.10'
|
|
20
|
+
gem 'simplecov', '>= 0.22'
|
|
21
|
+
gem 'yard', '>= 0.9.28'
|
|
22
|
+
gem 'yard-activesupport-concern', '>= 0.0.1'
|
data/Makefile
CHANGED
|
@@ -20,13 +20,23 @@ GEMFILES_DIR ?= gemfiles
|
|
|
20
20
|
BIN_DIR ?= bin
|
|
21
21
|
|
|
22
22
|
# Host binaries
|
|
23
|
+
AWK ?= awk
|
|
23
24
|
BASH ?= bash
|
|
24
25
|
CHMOD ?= chmod
|
|
25
26
|
COMPOSE ?= docker-compose
|
|
27
|
+
CP ?= cp
|
|
26
28
|
CURL ?= curl
|
|
29
|
+
DOCKER ?= docker
|
|
30
|
+
EXPORT ?= export
|
|
31
|
+
FIND ?= find
|
|
32
|
+
GREP ?= grep
|
|
33
|
+
HEAD ?= head
|
|
27
34
|
ID ?= id
|
|
28
35
|
MKDIR ?= mkdir
|
|
29
36
|
RM ?= rm
|
|
37
|
+
SORT ?= sort
|
|
38
|
+
TEST ?= test
|
|
39
|
+
XARGS ?= xargs
|
|
30
40
|
|
|
31
41
|
# Container binaries
|
|
32
42
|
APPRAISAL ?= appraisal
|
|
@@ -36,6 +46,7 @@ RAKE ?= rake
|
|
|
36
46
|
RSPEC ?= rspec
|
|
37
47
|
RUBOCOP ?= rubocop
|
|
38
48
|
YARD ?= yard
|
|
49
|
+
RUBY_VERSION := ruby-version
|
|
39
50
|
|
|
40
51
|
# Files
|
|
41
52
|
GEMFILES ?= $(subst _,-,$(patsubst $(GEMFILES_DIR)/%.gemfile,%,\
|
|
@@ -122,7 +133,8 @@ test-style: \
|
|
|
122
133
|
|
|
123
134
|
test-style-ruby:
|
|
124
135
|
# Run the static code analyzer (rubocop)
|
|
125
|
-
@$(call run-shell,$(BUNDLE) exec $(RUBOCOP) -a
|
|
136
|
+
@$(call run-shell,$(BUNDLE) exec $(RUBOCOP) -a \
|
|
137
|
+
|| ($(TEST) $$($(RUBY_VERSION)) != '2.7' && true))
|
|
126
138
|
|
|
127
139
|
clean:
|
|
128
140
|
# Clean the dependencies
|
data/README.md
CHANGED
|
@@ -43,7 +43,7 @@ $ bundle
|
|
|
43
43
|
|
|
44
44
|
## Requirements
|
|
45
45
|
|
|
46
|
-
* [Ruby](https://www.ruby-lang.org/) (>=2.
|
|
46
|
+
* [Ruby](https://www.ruby-lang.org/) (>=2.7, tested on CRuby/MRI only, may work
|
|
47
47
|
with other implementations as well)
|
|
48
48
|
* [Perl](https://www.perl.org/) (>= 5.10, for the
|
|
49
49
|
[cloc](https://github.com/AlDanial/cloc) utility)
|
data/config/docker/.bashrc
CHANGED
|
@@ -16,7 +16,9 @@ sudo sed -i 's/autostart=.*/autostart=false/g' /etc/supervisor/conf.d/*
|
|
|
16
16
|
sudo supervisord >/dev/null 2>&1 &
|
|
17
17
|
|
|
18
18
|
# Wait for supervisord
|
|
19
|
-
while ! supervisorctl status >/dev/null 2>&1; do
|
|
19
|
+
while ! (sudo supervisorctl status | grep avahi) >/dev/null 2>&1; do
|
|
20
|
+
sleep 1
|
|
21
|
+
done
|
|
20
22
|
|
|
21
23
|
# Boot the mDNS stack
|
|
22
24
|
echo '# Start the mDNS stack'
|
data/countless.gemspec
CHANGED
|
@@ -32,21 +32,8 @@ Gem::Specification.new do |spec|
|
|
|
32
32
|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
|
33
33
|
spec.require_paths = ['lib']
|
|
34
34
|
|
|
35
|
-
spec.required_ruby_version = '>= 2.
|
|
35
|
+
spec.required_ruby_version = '>= 2.7'
|
|
36
36
|
|
|
37
37
|
spec.add_runtime_dependency 'activesupport', '>= 5.2'
|
|
38
38
|
spec.add_runtime_dependency 'zeitwerk', '~> 2.6'
|
|
39
|
-
|
|
40
|
-
spec.add_development_dependency 'appraisal', '~> 2.4'
|
|
41
|
-
spec.add_development_dependency 'benchmark-ips', '~> 2.10'
|
|
42
|
-
spec.add_development_dependency 'bundler', '~> 2.3'
|
|
43
|
-
spec.add_development_dependency 'guard-rspec', '~> 4.7'
|
|
44
|
-
spec.add_development_dependency 'irb', '~> 1.2'
|
|
45
|
-
spec.add_development_dependency 'rspec', '~> 3.12'
|
|
46
|
-
spec.add_development_dependency 'rubocop', '~> 1.28'
|
|
47
|
-
spec.add_development_dependency 'rubocop-rails', '~> 2.14'
|
|
48
|
-
spec.add_development_dependency 'rubocop-rspec', '~> 2.10'
|
|
49
|
-
spec.add_development_dependency 'simplecov', '>= 0.22'
|
|
50
|
-
spec.add_development_dependency 'yard', '>= 0.9.28'
|
|
51
|
-
spec.add_development_dependency 'yard-activesupport-concern', '>= 0.0.1'
|
|
52
39
|
end
|
data/gemfiles/rails_5.2.gemfile
CHANGED
|
@@ -2,6 +2,18 @@
|
|
|
2
2
|
|
|
3
3
|
source "https://rubygems.org"
|
|
4
4
|
|
|
5
|
+
gem "appraisal", "~> 2.4"
|
|
6
|
+
gem "benchmark-ips", "~> 2.10"
|
|
7
|
+
gem "bundler", "~> 2.3"
|
|
8
|
+
gem "guard-rspec", "~> 4.7"
|
|
9
|
+
gem "irb", "~> 1.2"
|
|
10
|
+
gem "rspec", "~> 3.12"
|
|
11
|
+
gem "rubocop", "~> 1.28"
|
|
12
|
+
gem "rubocop-rails", "~> 2.14"
|
|
13
|
+
gem "rubocop-rspec", "~> 2.10"
|
|
14
|
+
gem "simplecov", ">= 0.22"
|
|
15
|
+
gem "yard", ">= 0.9.28"
|
|
16
|
+
gem "yard-activesupport-concern", ">= 0.0.1"
|
|
5
17
|
gem "activejob", "~> 5.2.0"
|
|
6
18
|
gem "activerecord", "~> 5.2.0"
|
|
7
19
|
gem "activesupport", "~> 5.2.0"
|
data/gemfiles/rails_6.1.gemfile
CHANGED
|
@@ -2,6 +2,18 @@
|
|
|
2
2
|
|
|
3
3
|
source "https://rubygems.org"
|
|
4
4
|
|
|
5
|
+
gem "appraisal", "~> 2.4"
|
|
6
|
+
gem "benchmark-ips", "~> 2.10"
|
|
7
|
+
gem "bundler", "~> 2.3"
|
|
8
|
+
gem "guard-rspec", "~> 4.7"
|
|
9
|
+
gem "irb", "~> 1.2"
|
|
10
|
+
gem "rspec", "~> 3.12"
|
|
11
|
+
gem "rubocop", "~> 1.28"
|
|
12
|
+
gem "rubocop-rails", "~> 2.14"
|
|
13
|
+
gem "rubocop-rspec", "~> 2.10"
|
|
14
|
+
gem "simplecov", ">= 0.22"
|
|
15
|
+
gem "yard", ">= 0.9.28"
|
|
16
|
+
gem "yard-activesupport-concern", ">= 0.0.1"
|
|
5
17
|
gem "activejob", "~> 6.1.0"
|
|
6
18
|
gem "activerecord", "~> 6.1.0"
|
|
7
19
|
gem "activesupport", "~> 6.1.0"
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
# This file was generated by Appraisal
|
|
2
|
+
|
|
3
|
+
source "https://rubygems.org"
|
|
4
|
+
|
|
5
|
+
gem "appraisal", "~> 2.4"
|
|
6
|
+
gem "benchmark-ips", "~> 2.10"
|
|
7
|
+
gem "bundler", "~> 2.3"
|
|
8
|
+
gem "guard-rspec", "~> 4.7"
|
|
9
|
+
gem "irb", "~> 1.2"
|
|
10
|
+
gem "rspec", "~> 3.12"
|
|
11
|
+
gem "rubocop", "~> 1.28"
|
|
12
|
+
gem "rubocop-rails", "~> 2.14"
|
|
13
|
+
gem "rubocop-rspec", "~> 2.10"
|
|
14
|
+
gem "simplecov", ">= 0.22"
|
|
15
|
+
gem "yard", ">= 0.9.28"
|
|
16
|
+
gem "yard-activesupport-concern", ">= 0.0.1"
|
|
17
|
+
gem "activejob", "~> 7.1.0"
|
|
18
|
+
gem "activerecord", "~> 7.1.0"
|
|
19
|
+
gem "activesupport", "~> 7.1.0"
|
|
20
|
+
|
|
21
|
+
gemspec path: "../"
|
|
@@ -87,7 +87,7 @@ module Countless
|
|
|
87
87
|
results = {}
|
|
88
88
|
|
|
89
89
|
Dir.glob(file) do |item|
|
|
90
|
-
extension =
|
|
90
|
+
extension =
|
|
91
91
|
Annotation.extensions.detect { |regexp, _block| regexp.match(item) }
|
|
92
92
|
|
|
93
93
|
if extension
|
|
@@ -145,7 +145,7 @@ module Countless
|
|
|
145
145
|
#
|
|
146
146
|
# @return [Array<String>] the configured files
|
|
147
147
|
def self.files
|
|
148
|
-
@files ||=
|
|
148
|
+
@files ||=
|
|
149
149
|
Countless.configuration.annotations_files.deep_dup
|
|
150
150
|
end
|
|
151
151
|
|
|
@@ -160,7 +160,7 @@ module Countless
|
|
|
160
160
|
#
|
|
161
161
|
# @return [Array<String>] the configured directories
|
|
162
162
|
def self.directories
|
|
163
|
-
@directories ||=
|
|
163
|
+
@directories ||=
|
|
164
164
|
Countless.configuration.annotations_directories.deep_dup
|
|
165
165
|
end
|
|
166
166
|
|
|
@@ -193,12 +193,12 @@ module Countless
|
|
|
193
193
|
def self.extensions
|
|
194
194
|
@extensions ||= begin
|
|
195
195
|
patterns = Countless.configuration.annotation_patterns.values
|
|
196
|
-
patterns.
|
|
196
|
+
patterns.to_h do |conf|
|
|
197
197
|
[
|
|
198
198
|
extensions_regexp(conf[:extensions], conf[:files] || []),
|
|
199
199
|
conf[:regex]
|
|
200
200
|
]
|
|
201
|
-
end
|
|
201
|
+
end
|
|
202
202
|
end
|
|
203
203
|
end
|
|
204
204
|
|
|
@@ -4,24 +4,24 @@ require 'rspec/core/rake_task'
|
|
|
4
4
|
|
|
5
5
|
desc 'Report code statistics (KLOCs, etc)'
|
|
6
6
|
task :stats do
|
|
7
|
-
puts Countless::Statistics.new
|
|
7
|
+
puts Countless::Statistics.new
|
|
8
8
|
end
|
|
9
9
|
|
|
10
10
|
desc 'Enumerate all annotations'
|
|
11
11
|
task :notes do
|
|
12
|
-
puts Countless::Annotations.new
|
|
12
|
+
puts Countless::Annotations.new
|
|
13
13
|
end
|
|
14
14
|
|
|
15
15
|
namespace :notes do
|
|
16
16
|
Countless.configuration.annotation_tags.each do |annotation|
|
|
17
17
|
task annotation.downcase.to_sym do
|
|
18
|
-
puts Countless::Annotations.new("@?#{annotation}")
|
|
18
|
+
puts Countless::Annotations.new("@?#{annotation}")
|
|
19
19
|
end
|
|
20
20
|
end
|
|
21
21
|
|
|
22
22
|
task :custom do
|
|
23
23
|
annotation = ENV.fetch('ANNOTATION')
|
|
24
|
-
puts Countless::Annotations.new("@?#{annotation}")
|
|
24
|
+
puts Countless::Annotations.new("@?#{annotation}")
|
|
25
25
|
rescue KeyError
|
|
26
26
|
puts 'No annotation was specified.'
|
|
27
27
|
puts "Usage: ANNOTATION='FIXME' rake notes:custom"
|
data/lib/countless/statistics.rb
CHANGED
|
@@ -27,7 +27,7 @@ module Countless
|
|
|
27
27
|
base_path = Countless.configuration.base_path
|
|
28
28
|
|
|
29
29
|
# Resolve the given directory configurations to actual files
|
|
30
|
-
dirs =
|
|
30
|
+
dirs = dirs.presence || Countless.statistic_directories
|
|
31
31
|
@dirs = dirs.each_with_object([]) do |cur, memo|
|
|
32
32
|
copy = cur.deep_dup
|
|
33
33
|
copy[:files] = Array(copy[:files])
|
|
@@ -69,13 +69,13 @@ module Countless
|
|
|
69
69
|
# @return [Hash{String => Hash{Symbol => Mixed}}] the statistics
|
|
70
70
|
# per configuration
|
|
71
71
|
def calculate_statistics
|
|
72
|
-
@dirs.
|
|
72
|
+
@dirs.to_h do |conf|
|
|
73
73
|
[
|
|
74
74
|
conf[:name],
|
|
75
75
|
conf.merge(stats: calculate_file_statistics(conf[:name],
|
|
76
76
|
conf[:files]))
|
|
77
77
|
]
|
|
78
|
-
end
|
|
78
|
+
end
|
|
79
79
|
end
|
|
80
80
|
|
|
81
81
|
# Setup a new +Calculator+ for the given directory/pattern in order to
|
data/lib/countless/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: countless
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.3.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Hermann Mayer
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2024-08-09 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: activesupport
|
|
@@ -38,174 +38,6 @@ dependencies:
|
|
|
38
38
|
- - "~>"
|
|
39
39
|
- !ruby/object:Gem::Version
|
|
40
40
|
version: '2.6'
|
|
41
|
-
- !ruby/object:Gem::Dependency
|
|
42
|
-
name: appraisal
|
|
43
|
-
requirement: !ruby/object:Gem::Requirement
|
|
44
|
-
requirements:
|
|
45
|
-
- - "~>"
|
|
46
|
-
- !ruby/object:Gem::Version
|
|
47
|
-
version: '2.4'
|
|
48
|
-
type: :development
|
|
49
|
-
prerelease: false
|
|
50
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
51
|
-
requirements:
|
|
52
|
-
- - "~>"
|
|
53
|
-
- !ruby/object:Gem::Version
|
|
54
|
-
version: '2.4'
|
|
55
|
-
- !ruby/object:Gem::Dependency
|
|
56
|
-
name: benchmark-ips
|
|
57
|
-
requirement: !ruby/object:Gem::Requirement
|
|
58
|
-
requirements:
|
|
59
|
-
- - "~>"
|
|
60
|
-
- !ruby/object:Gem::Version
|
|
61
|
-
version: '2.10'
|
|
62
|
-
type: :development
|
|
63
|
-
prerelease: false
|
|
64
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
65
|
-
requirements:
|
|
66
|
-
- - "~>"
|
|
67
|
-
- !ruby/object:Gem::Version
|
|
68
|
-
version: '2.10'
|
|
69
|
-
- !ruby/object:Gem::Dependency
|
|
70
|
-
name: bundler
|
|
71
|
-
requirement: !ruby/object:Gem::Requirement
|
|
72
|
-
requirements:
|
|
73
|
-
- - "~>"
|
|
74
|
-
- !ruby/object:Gem::Version
|
|
75
|
-
version: '2.3'
|
|
76
|
-
type: :development
|
|
77
|
-
prerelease: false
|
|
78
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
79
|
-
requirements:
|
|
80
|
-
- - "~>"
|
|
81
|
-
- !ruby/object:Gem::Version
|
|
82
|
-
version: '2.3'
|
|
83
|
-
- !ruby/object:Gem::Dependency
|
|
84
|
-
name: guard-rspec
|
|
85
|
-
requirement: !ruby/object:Gem::Requirement
|
|
86
|
-
requirements:
|
|
87
|
-
- - "~>"
|
|
88
|
-
- !ruby/object:Gem::Version
|
|
89
|
-
version: '4.7'
|
|
90
|
-
type: :development
|
|
91
|
-
prerelease: false
|
|
92
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
93
|
-
requirements:
|
|
94
|
-
- - "~>"
|
|
95
|
-
- !ruby/object:Gem::Version
|
|
96
|
-
version: '4.7'
|
|
97
|
-
- !ruby/object:Gem::Dependency
|
|
98
|
-
name: irb
|
|
99
|
-
requirement: !ruby/object:Gem::Requirement
|
|
100
|
-
requirements:
|
|
101
|
-
- - "~>"
|
|
102
|
-
- !ruby/object:Gem::Version
|
|
103
|
-
version: '1.2'
|
|
104
|
-
type: :development
|
|
105
|
-
prerelease: false
|
|
106
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
107
|
-
requirements:
|
|
108
|
-
- - "~>"
|
|
109
|
-
- !ruby/object:Gem::Version
|
|
110
|
-
version: '1.2'
|
|
111
|
-
- !ruby/object:Gem::Dependency
|
|
112
|
-
name: rspec
|
|
113
|
-
requirement: !ruby/object:Gem::Requirement
|
|
114
|
-
requirements:
|
|
115
|
-
- - "~>"
|
|
116
|
-
- !ruby/object:Gem::Version
|
|
117
|
-
version: '3.12'
|
|
118
|
-
type: :development
|
|
119
|
-
prerelease: false
|
|
120
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
121
|
-
requirements:
|
|
122
|
-
- - "~>"
|
|
123
|
-
- !ruby/object:Gem::Version
|
|
124
|
-
version: '3.12'
|
|
125
|
-
- !ruby/object:Gem::Dependency
|
|
126
|
-
name: rubocop
|
|
127
|
-
requirement: !ruby/object:Gem::Requirement
|
|
128
|
-
requirements:
|
|
129
|
-
- - "~>"
|
|
130
|
-
- !ruby/object:Gem::Version
|
|
131
|
-
version: '1.28'
|
|
132
|
-
type: :development
|
|
133
|
-
prerelease: false
|
|
134
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
135
|
-
requirements:
|
|
136
|
-
- - "~>"
|
|
137
|
-
- !ruby/object:Gem::Version
|
|
138
|
-
version: '1.28'
|
|
139
|
-
- !ruby/object:Gem::Dependency
|
|
140
|
-
name: rubocop-rails
|
|
141
|
-
requirement: !ruby/object:Gem::Requirement
|
|
142
|
-
requirements:
|
|
143
|
-
- - "~>"
|
|
144
|
-
- !ruby/object:Gem::Version
|
|
145
|
-
version: '2.14'
|
|
146
|
-
type: :development
|
|
147
|
-
prerelease: false
|
|
148
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
149
|
-
requirements:
|
|
150
|
-
- - "~>"
|
|
151
|
-
- !ruby/object:Gem::Version
|
|
152
|
-
version: '2.14'
|
|
153
|
-
- !ruby/object:Gem::Dependency
|
|
154
|
-
name: rubocop-rspec
|
|
155
|
-
requirement: !ruby/object:Gem::Requirement
|
|
156
|
-
requirements:
|
|
157
|
-
- - "~>"
|
|
158
|
-
- !ruby/object:Gem::Version
|
|
159
|
-
version: '2.10'
|
|
160
|
-
type: :development
|
|
161
|
-
prerelease: false
|
|
162
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
163
|
-
requirements:
|
|
164
|
-
- - "~>"
|
|
165
|
-
- !ruby/object:Gem::Version
|
|
166
|
-
version: '2.10'
|
|
167
|
-
- !ruby/object:Gem::Dependency
|
|
168
|
-
name: simplecov
|
|
169
|
-
requirement: !ruby/object:Gem::Requirement
|
|
170
|
-
requirements:
|
|
171
|
-
- - ">="
|
|
172
|
-
- !ruby/object:Gem::Version
|
|
173
|
-
version: '0.22'
|
|
174
|
-
type: :development
|
|
175
|
-
prerelease: false
|
|
176
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
177
|
-
requirements:
|
|
178
|
-
- - ">="
|
|
179
|
-
- !ruby/object:Gem::Version
|
|
180
|
-
version: '0.22'
|
|
181
|
-
- !ruby/object:Gem::Dependency
|
|
182
|
-
name: yard
|
|
183
|
-
requirement: !ruby/object:Gem::Requirement
|
|
184
|
-
requirements:
|
|
185
|
-
- - ">="
|
|
186
|
-
- !ruby/object:Gem::Version
|
|
187
|
-
version: 0.9.28
|
|
188
|
-
type: :development
|
|
189
|
-
prerelease: false
|
|
190
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
191
|
-
requirements:
|
|
192
|
-
- - ">="
|
|
193
|
-
- !ruby/object:Gem::Version
|
|
194
|
-
version: 0.9.28
|
|
195
|
-
- !ruby/object:Gem::Dependency
|
|
196
|
-
name: yard-activesupport-concern
|
|
197
|
-
requirement: !ruby/object:Gem::Requirement
|
|
198
|
-
requirements:
|
|
199
|
-
- - ">="
|
|
200
|
-
- !ruby/object:Gem::Version
|
|
201
|
-
version: 0.0.1
|
|
202
|
-
type: :development
|
|
203
|
-
prerelease: false
|
|
204
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
205
|
-
requirements:
|
|
206
|
-
- - ">="
|
|
207
|
-
- !ruby/object:Gem::Version
|
|
208
|
-
version: 0.0.1
|
|
209
41
|
description: This gem includes reusable code statistics / annotations helpers / Rake
|
|
210
42
|
tasks.
|
|
211
43
|
email:
|
|
@@ -215,7 +47,6 @@ extensions: []
|
|
|
215
47
|
extra_rdoc_files: []
|
|
216
48
|
files:
|
|
217
49
|
- ".editorconfig"
|
|
218
|
-
- ".github/workflows/documentation.yml"
|
|
219
50
|
- ".github/workflows/release.yml"
|
|
220
51
|
- ".github/workflows/test.yml"
|
|
221
52
|
- ".gitignore"
|
|
@@ -244,9 +75,8 @@ files:
|
|
|
244
75
|
- doc/assets/project.svg
|
|
245
76
|
- docker-compose.yml
|
|
246
77
|
- gemfiles/rails_5.2.gemfile
|
|
247
|
-
- gemfiles/rails_6.0.gemfile
|
|
248
78
|
- gemfiles/rails_6.1.gemfile
|
|
249
|
-
- gemfiles/rails_7.
|
|
79
|
+
- gemfiles/rails_7.1.gemfile
|
|
250
80
|
- lib/countless.rb
|
|
251
81
|
- lib/countless/annotations.rb
|
|
252
82
|
- lib/countless/cloc.rb
|
|
@@ -273,7 +103,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
273
103
|
requirements:
|
|
274
104
|
- - ">="
|
|
275
105
|
- !ruby/object:Gem::Version
|
|
276
|
-
version: '2.
|
|
106
|
+
version: '2.7'
|
|
277
107
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
278
108
|
requirements:
|
|
279
109
|
- - ">="
|
|
@@ -1,39 +0,0 @@
|
|
|
1
|
-
name: Build Documentation
|
|
2
|
-
on:
|
|
3
|
-
repository_dispatch:
|
|
4
|
-
types: [documentation]
|
|
5
|
-
|
|
6
|
-
concurrency:
|
|
7
|
-
group: 'docs'
|
|
8
|
-
|
|
9
|
-
jobs:
|
|
10
|
-
docs:
|
|
11
|
-
name: Build gem documentation
|
|
12
|
-
runs-on: ubuntu-22.04
|
|
13
|
-
timeout-minutes: 5
|
|
14
|
-
steps:
|
|
15
|
-
- uses: actions/checkout@v3
|
|
16
|
-
|
|
17
|
-
- name: Install the correct Ruby version
|
|
18
|
-
uses: ruby/setup-ruby@v1
|
|
19
|
-
with:
|
|
20
|
-
ruby-version: 2.5
|
|
21
|
-
bundler-cache: true
|
|
22
|
-
rubygems: '3.3.26'
|
|
23
|
-
|
|
24
|
-
- name: Prepare the virtual environment
|
|
25
|
-
uses: hausgold/actions/ci@master
|
|
26
|
-
with:
|
|
27
|
-
clone_token: '${{ secrets.CLONE_TOKEN }}'
|
|
28
|
-
settings: '${{ github.repository }}'
|
|
29
|
-
target: ci/gem-test
|
|
30
|
-
|
|
31
|
-
- name: Build gem documentation
|
|
32
|
-
run: make docs
|
|
33
|
-
|
|
34
|
-
- name: Upload the code coverage report
|
|
35
|
-
run: coverage
|
|
36
|
-
|
|
37
|
-
- name: Add this job to the commit status
|
|
38
|
-
run: commit-status '${{ job.status }}'
|
|
39
|
-
if: always()
|
data/gemfiles/rails_6.0.gemfile
DELETED